/* Landing Page Specific Styles */
* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.landing-page {
    --lp-primary: #4a6cf7;
    --lp-secondary: #0f172a;
    --lp-text: #334155;
    --lp-bg: #ffffff;
    --lp-gradient: linear-gradient(135deg, #4a6cf7 0%, #2563eb 100%);
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.landing-page * {
    box-sizing: border-box;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Top Bar */
.lp-top-bar {
    background: #000000;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-text {
    font-weight: 500;
}

.top-bar-divider {
    color: #4a6cf7;
    font-weight: bold;
}

.top-bar-phone {
    color: #fbbf24;
    /* Golden yellow for phone */
    text-decoration: none;
    font-weight: 700;
}

.top-bar-or {
    color: #94a3b8;
}

.top-bar-btn {
    background: white;
    color: #000000;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 13px;
}

.top-bar-btn i {
    width: 14px;
    height: 14px;
}

.top-bar-btn:hover {
    background: #4a6cf7;
    color: white;
}

/* Navigation */
.lp-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    width: 100%;
}

.lp-nav .lp-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.lp-logo {
    flex-shrink: 0;
}

.lp-logo h2 {
    color: #0f172a;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

.lp-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.lp-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.lp-menu a:hover {
    color: var(--lp-primary);
}

.lp-nav-btn {
    background: #000000;
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-nav-btn:hover {
    background: #4a6cf7;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
    color: #0f172a;
}

/* Hero Section */
.lp-hero {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: visible;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero Grid Layout */
.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 20;
}

.hero-content h1 {
    font-size: 72px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--lp-secondary);
    margin-bottom: 24px;
    letter-spacing: -2px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-content h1 #typed-text {
    display: inline-block;
    min-width: 300px;
    text-align: left;
    height: 1.1em;
    vertical-align: bottom;
    position: relative;
}

.hero-content h1 #typed-text::after {
    content: '|';
    margin-left: 2px;
    animation: blink 0.7s infinite;
    color: var(--lp-primary);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Dashboard Section (Integrated into Hero) */
.lp-dashboard {
    display: none;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.dashboard-preview {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Features Section */
.lp-features {
    padding: 50px 0;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}



.dashboard-image {
    width: 145%;
    max-width: 145%;
    height: auto;
    display: block;
    position: relative;
    z-index: 101;
    margin-right: -10%;
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 108, 247, 0.08);
    color: var(--lp-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-secondary);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.lp-pricing {
    padding: 50px 0;
    background: #f8fafc;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-secondary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.pricing-price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-old {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-new {
    font-size: 32px;
    font-weight: 400;
    color: var(--lp-secondary);
    font-family: 'Outfit', sans-serif;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #64748b;
}

.pricing-features li i {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
    color: var(--lp-secondary);
    background: white;
}

.pricing-btn-outline {
    border: 2px solid #e2e8f0;
    color: var(--lp-secondary);
    background: white;
}

.pricing-btn-outline:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.pricing-btn-primary {
    background: #0f172a;
    color: white;
    border: 2px solid #0f172a;
}

.pricing-btn-primary:hover {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(74, 108, 247, 0.3);
}

.pricing-card-popular {
    border: 2px solid var(--lp-primary);
    box-shadow: 0 20px 25px -5px rgba(74, 108, 247, 0.15), 0 10px 10px -5px rgba(74, 108, 247, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

.popular-badge i {
    width: 14px;
    height: 14px;
    fill: white;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-pricing {
        padding: 60px 0;
    }
}

.hero-content.centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 0 40px;
    color: #64748b;
    text-align: left;
}

.hero-btns.centered,
.hero-btns {
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-no-card {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.hero-no-card i {
    width: 14px;
    height: 14px;
    color: #10b981;
    flex-shrink: 0;
}

.hero-no-card span {
    color: #64748b;
}

/* Typing Cursor */
.typed-cursor {
    opacity: 1;
    color: var(--lp-primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Trust Section */
.hero-trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    background: #e2e8f0;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.trust-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.trust-info .stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    align-items: center;
}

.trust-info .stars svg {
    width: 24px;
    height: 24px;
    fill: #fbbf24;
    flex-shrink: 0;
}

.trust-info .stars svg polygon {
    fill: #fbbf24;
}

.trust-info span {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

/* Buttons */
.text-gradient {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-btn-primary {
    background: var(--lp-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(74, 108, 247, 0.2);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(74, 108, 247, 0.3);
}

.lp-btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--lp-secondary);
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.lp-btn-outline:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.lp-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Designs Section - Carousel */
.lp-designs {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--lp-secondary);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.section-header p {
    font-size: 18px;
    color: var(--lp-text);
    margin: 0;
    font-weight: 400;
}

.lp-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    z-index: 5;
    padding: 0px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.lp-carousel-wrapper .owl-carousel {
    position: relative;
}

.lp-carousel-wrapper .owl-stage-outer {
    padding: 20px 0;
    overflow: hidden;
}

.lp-design-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    opacity: 0.7;
    background: #e2e8f0;
    margin: 0 auto;
}

.design-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    /* 1000/700 aspect ratio */
    background: #e2e8f0;
    position: relative;
}

.design-placeholder span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    font-weight: 300;
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.owl-item .lp-design-card {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Owl Carousel Navigation */
.lp-carousel-wrapper .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 100;
}

.lp-carousel-wrapper .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--lp-primary);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
}



.lp-carousel-wrapper .owl-nav button:hover {
    background: var(--lp-primary);
    color: white;
    transform: scale(1.1);
}

.lp-carousel-wrapper .owl-nav button.owl-prev i,
.lp-carousel-wrapper .owl-nav button.owl-next i {
    width: 24px;
    height: 24px;
}

.lp-carousel-wrapper .owl-nav button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Hide dots */
.lp-carousel-wrapper .owl-dots {
    display: none;
}

.nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--lp-secondary);
    transition: all 0.3s;
    pointer-events: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--lp-primary);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .lp-design-card {
        min-width: 280px;
        width: 280px;
    }

    .lp-design-card.active {
        min-width: 350px;
        width: 350px;
    }

    .lp-hero {
        padding: 80px 0 60px;
        min-height: 500px;
    }

    .lp-hero h1 {
        font-size: 40px;
        min-height: 100px;
    }

    .lp-hero h1 #typed-text {
        min-width: 200px;
    }

    .lp-menu {
        gap: 20px;
    }

    .lp-menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .lp-design-card {
        min-width: 240px;
        width: 240px;
    }

    .lp-design-card.active {
        min-width: 300px;
        width: 300px;
    }

    .lp-carousel-container {
        padding: 40px 0;
    }

    .design-placeholder span {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .lp-design-card.active .design-placeholder span {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .lp-nav .lp-container {
        flex-wrap: wrap;
    }

    .lp-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .lp-nav-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .top-bar-content {
        font-size: 12px;
        gap: 10px;
        padding: 0 10px;
    }

    .top-bar-text {
        display: none;
    }

    .lp-nav .lp-container {
        flex-wrap: wrap;
    }

    .lp-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .lp-nav-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .top-bar-content {
        font-size: 12px;
        gap: 10px;
        padding: 0 10px;
    }

    .top-bar-text {
        display: none;
    }
}

/* Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(74, 108, 247, 0.15);
    border-radius: 50%;
    overflow: hidden;
}

.shape-2 {
    bottom: -50px;
    left: 100px;
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

/* FAQ Section */
.lp-faq {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.faq-header {
    margin-bottom: 80px;
    text-align: center;
}

.faq-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(74, 108, 247, 0.1);
    color: var(--lp-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.faq-badge i {
    width: 18px;
    height: 18px;
}

.faq-header-content h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--lp-secondary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.faq-header-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 70px;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 108, 247, 0.2);
    transform: translateY(-2px);
}

.faq-item.active,
.faq-item[class*="active"] {
    border-color: var(--lp-primary);
    box-shadow: 0 12px 32px rgba(74, 108, 247, 0.15);
}

/* Ensure only ONE item can be active at a time */
.faq-item:not(.active) {
    border-color: rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    min-height: 70px;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    flex: 1;
    text-align: left;
}

.faq-item.active .faq-question-text {
    color: var(--lp-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--lp-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: none !important;
    padding: 0 24px;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.faq-item.active .faq-answer {
    max-height: none;
    padding: 20px 24px;
    display: block;
    transition: none !important;
}

.faq-answer-content {
    padding-left: 0;
    margin-left: 0;
}

.faq-answer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    font-family: 'Inter', sans-serif;
}


@media (max-width: 992px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lp-faq {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 50px;
        padding: 0 16px;
    }

    .faq-header-content h2 {
        font-size: 32px;
    }

    .faq-header-content p {
        font-size: 16px;
    }

    .faq-list {
        margin: 0 auto;
        padding: 0 16px;
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .faq-item-header {
        gap: 16px;
    }

    .faq-item-number {
        min-width: 50px;
        height: 50px;
        font-size: 18px;
        margin-left: 16px;
    }

    .faq-question {
        padding: 20px 16px;
        min-height: 60px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 16px;
    }

    .faq-answer-content {
        padding-left: 0;
    }

    .faq-answer-content p {
        font-size: 15px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/* Footer */
.lp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--lp-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social a i {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--lp-primary);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
}

.contact-item i {
    width: 18px;
    height: 18px;
    color: var(--lp-primary);
    flex-shrink: 0;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--lp-primary);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--lp-primary);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .lp-nav .lp-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .lp-menu {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        background: white;
        padding: 20px 0;
        gap: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .lp-menu.active {
        display: flex;
    }

    .lp-footer {
        padding: 60px 0 0;
    }

    .faq-list {
        flex-direction: column;
    }

    .hero-grid-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1,
    .hero-content p,
    .hero-content h1 #typed-text {
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        align-items: center;
        width: 100%;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-container {
        justify-content: center;
    }

    .dashboard-image {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}