﻿:root {
    --primary: #50afb0;
    --primary-dark: #3a9293;
    --primary-light: #e8f7f7;
    --black: #111111;
    --light-gray: #f5f6f8;
    --yellow: #fbc259;
    --coral: #f6948c;
    --purple: #b16299;
    --red: #e35c4f;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* ── Brand utilities ── */
.bg-primary-brand {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-lp-dark {
    background-color: var(--black) !important;
}

.bg-lp-gray {
    background-color: var(--light-gray) !important;
}

.text-primary-brand {
    color: var(--primary) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.border-primary-brand {
    border-color: var(--primary) !important;
}

.btn-brand {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

    .btn-brand:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(80,175,176,0.35);
    }

/* ── Animations ── */
.lp-float {
    animation: lpFloat 3.5s ease-in-out infinite alternate;
}

@@keyframes lpFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.lp-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: lpPulse 2s infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes lpPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* ── Section tag pill ── */
.lp-section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ── Hero ── */
.lp-hero-bg {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, #f0fafa 100%);
}

.lp-stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
}

.lp-stat-label {
    font-size: 0.78rem;
    color: #777;
}

/* ── Mockup shared ── */
.lp-email-field {
    padding: 5px 0;
    border-bottom: 1px solid #f2f2f2;
    font-size: 0.72rem;
    color: #333;
}

.lp-sig-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-banner-price {
    font-family: 'Outfit',sans-serif;
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--primary);
    line-height: 1;
}

.lp-banner-tagline {
    font-size: 0.54rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.lp-banner-bullet {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.72);
}

/* ── Features showcase tabs ── */
.lp-showcase-tab {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    background: white;
    cursor: pointer;
    transition: all 0.22s;
}

    .lp-showcase-tab:hover,
    .lp-showcase-tab.active {
        border-color: var(--primary);
        background: var(--primary-light);
        box-shadow: 0 4px 16px rgba(80,175,176,0.13);
    }

.lp-stab-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
}

.lp-showcase-tab.active .lp-stab-icon {
    background: rgba(80,175,176,0.15);
}

.lp-stab-title {
    font-family: 'Outfit',sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    color: #111;
}

.lp-showcase-tab.active .lp-stab-title {
    color: var(--primary-dark);
}

.lp-stab-sub {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.3;
    margin-top: 2px;
}

.lp-stab-arrow {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.15s;
    margin-left: auto;
}

.lp-showcase-tab.active .lp-stab-arrow,
.lp-showcase-tab:hover .lp-stab-arrow {
    opacity: 1;
}

.lp-showcase-panel {
    display: none;
}

    .lp-showcase-panel.active {
        display: block;
        animation: lpFadePanel 0.28s ease;
    }

@@keyframes lpFadePanel {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-panel-caption {
    text-align: center;
    font-size: 0.83rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}

/* ── Admin portal mockup ── */
.lp-ap-sidebar {
    width: 128px;
    background: #0f172a;
    padding: 13px 9px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.lp-ap-logo {
    font-family: 'Outfit',sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 13px;
    padding: 0 5px;
}

    .lp-ap-logo span {
        color: var(--primary);
    }

.lp-ap-nav {
    padding: 6px 7px;
    border-radius: 6px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .lp-ap-nav.active {
        background: rgba(80,175,176,0.18);
        color: var(--primary);
    }

.lp-ap-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #eee;
    margin-bottom: 6px;
}

    .lp-ap-rule.on {
        border-color: rgba(80,175,176,0.3);
        background: #f0fafa;
    }

.lp-ap-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

    .lp-ap-dot.on {
        background: var(--primary);
        box-shadow: 0 0 0 3px rgba(80,175,176,0.2);
    }

.lp-ap-badge {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

    .lp-ap-badge.green {
        background: rgba(80,175,176,0.12);
        color: var(--primary-dark);
    }

    .lp-ap-badge.gray {
        background: #f0f0f0;
        color: #888;
    }

/* ── Steps ── */
.lp-step-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Outfit',sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(80,175,176,0.35);
    position: relative;
    z-index: 1;
}

/* ── Platforms ── */
.lp-platform-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}

    .lp-platform-card:hover {
        background: rgba(80,175,176,0.15);
        border-color: var(--primary);
        transform: translateY(-4px);
    }

/* ── Security cards ── */
.lp-security-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light-gray);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #ebebeb;
    transition: all 0.3s;
    height: 100%;
}

    .lp-security-card:hover {
        border-color: var(--primary);
        background: var(--primary-light);
    }

.lp-sec-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Pricing calculator ── */
.lp-calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) var(--pct, 5%), #e0e0e0 var(--pct, 5%), #e0e0e0 100%);
}

    .lp-calc-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(80,175,176,0.4);
        border: 3px solid white;
    }

    .lp-calc-slider::-moz-range-thumb {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(80,175,176,0.4);
        border: 3px solid white;
    }

/* ── Demo form ── */
.lp-form-group {
    margin-bottom: 15px;
}

    .lp-form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
    }

    .lp-form-group input {
        width: 100%;
        padding: 11px 13px;
        border: 1.5px solid #e0e0e0;
        border-radius: 9px;
        font-family: 'DM Sans',sans-serif;
        font-size: 0.9rem;
        background: white;
        outline: none;
        transition: border-color 0.2s;
    }

        .lp-form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(80,175,176,0.12);
        }

/* ── Reveal animation ── */
.lp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .lp-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ══════════════════════════════════════════
   AUDIENCE SECTION – dark theme
        ══════════════════════════════════════════ */
.audience-section {
    background: #111111;
    padding: 90px 5%;
}

    .audience-section .section-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .audience-section .section-tag {
        display: inline-block;
        background: rgba(80,175,176,0.18);
        color: #50afb0;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .audience-section .section-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .audience-section .section-sub {
        color: rgba(255,255,255,0.5);
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 48px;
    }

/* Tabs row */
.aud-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .aud-tabs::-webkit-scrollbar {
        display: none;
    }

.aud-tab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px 14px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    transition: all 0.25s;
    position: relative;
    bottom: -1px;
    background: transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

    .aud-tab:hover {
        background: rgba(255,255,255,0.04);
    }

    .aud-tab.active {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.1);
        border-bottom-color: #111111;
    }

.aud-tab-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.25s;
    white-space: nowrap;
}

.aud-tab:hover .aud-tab-label {
    color: rgba(255,255,255,0.7);
}

.aud-tab.active .aud-tab-label {
    color: white;
}

.aud-tab-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Panels wrapper */
.aud-panels {
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}

/* Individual panel */
.aud-panel {
    display: none;
}

    .aud-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        animation: lpAudFade 0.3s ease;
    }

@keyframes lpAudFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left content */
.aud-left {
    padding: 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.aud-role-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.aud-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.aud-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.aud-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aud-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.aud-benefit-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.aud-benefit-text {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

    .aud-benefit-text strong {
        color: #ffffff;
    }

/* Right visual */
.aud-visual {
    padding: 36px;
}

.aud-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.aud-card-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.aud-metric-row {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.aud-metric {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}

.aud-metric-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 6px;
}

.aud-metric-lbl {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

.aud-scenario {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 16px;
}

.aud-scenario-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
}

.aud-scenario-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .aud-scenario-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.aud-step-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.aud-step-txt {
    flex: 1;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.65);
}

.aud-step-tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.lp-trustedBy {
    background: var(--light-gray);
    text-align: center;
    padding: 48px 0;
}

.lp-trustedBy-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 28px;
}

.lp-tb-outer {
    position: relative;
    overflow: hidden;
    height: 80px;
}

    .lp-tb-outer::before, .lp-tb-outer::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }

    .lp-tb-outer::before {
        left: 0;
        background: linear-gradient(to right, var(--light-gray), transparent);
    }

    .lp-tb-outer::after {
        right: 0;
        background: linear-gradient(to left, var(--light-gray), transparent);
    }

.lp-tb-track {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.lp-tb-item {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 80px;
}

    .lp-tb-item img {
        max-height: 40px;
        max-width: 130px;
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: .45;
        filter: grayscale(1);
        transition: opacity .3s, filter .3s;
    }

        .lp-tb-item img:hover {
            opacity: 1;
            filter: grayscale(0);
        }
@media (max-width: 767px) {
    .navbar {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

        .navbar .btn {
            font-size: 0.75rem !important;
            padding: 6px 10px !important;
        }

    .lp-hero-bg {
        padding: 90px 4% 50px !important;
        min-height: auto !important;
    }

        .lp-hero-bg h1 {
            font-size: clamp(1.9rem, 7vw, 2.8rem) !important;
        }

        .lp-hero-bg .d-flex.flex-wrap.gap-3 {
            flex-direction: column;
        }

            .lp-hero-bg .d-flex.flex-wrap.gap-3 .btn {
                width: 100%;
                text-align: center;
            }

        .lp-hero-bg .d-flex.flex-wrap.gap-4 {
            gap: 1.5rem !important;
        }

    .lp-stat-num {
        font-size: 1.5rem;
    }

    .audience-section {
        padding: 60px 4%;
    }

        .audience-section .section-sub {
            margin-bottom: 28px;
        }

    .aud-tab {
        padding: 10px 14px 12px;
        gap: 7px;
    }

    .aud-tab-label {
        font-size: 0.78rem;
    }

    .aud-tab-icon {
        width: 24px;
        height: 24px;
    }

    .aud-panel.active {
        grid-template-columns: 1fr;
    }

    .aud-left {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .aud-visual {
        padding: 20px;
    }

    .aud-heading {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    }

    .aud-metric-val {
        font-size: 1.2rem;
    }

    .aud-metric-row {
        gap: 8px;
    }

    .aud-metric {
        padding: 10px 8px;
    }

    #features-section {
        padding: 60px 4% !important;
    }

    /* Convert sidebar tabs into horizontal scroll on mobile */
    .lp-showcase-tabs-scroll {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 8px;
        margin-bottom: 16px;
    }

        .lp-showcase-tabs-scroll::-webkit-scrollbar {
            display: none;
        }

    .lp-showcase-tab {
        flex-shrink: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
        min-width: 130px;
    }

    .lp-stab-sub {
        display: none;
    }

    .lp-stab-arrow {
        display: none;
    }

    /* Admin portal sidebar shrinks */
    .lp-ap-sidebar {
        width: 90px;
        padding: 10px 6px;
    }

    .lp-ap-logo {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .lp-ap-nav {
        font-size: 0.6rem;
        padding: 5px 5px;
    }

    .bg-white.py-5 {
        padding: 60px 4% !important;
    }

    .bg-lp-dark.py-5 {
        padding: 60px 4% !important;
    }

    .col-lg-2d4 {
        width: 50% !important;
    }

    .lp-security-card {
        padding: 16px;
        gap: 12px;
    }

    .lp-sec-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    #pricing-section {
        padding: 60px 4% !important;
    }

        #pricing-section .rounded-3.p-4 {
            flex-direction: column !important;
            text-align: center;
        }

        #pricing-section .text-end {
            text-align: center !important;
        }

    #demo-section {
        padding: 60px 4% !important;
    }

        #demo-section .bg-white.rounded-4 {
            padding: 1.5rem !important;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lp-hero-bg {
        padding: 100px 5% 60px !important;
    }

    .aud-panel.active {
        grid-template-columns: 1fr;
    }

    .aud-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 28px 24px;
    }

    .aud-visual {
        padding: 28px 24px;
    }

    #features-section .col-lg-4 {
        width: 100%;
        margin-bottom: 12px;
    }

    .lp-showcase-tabs-scroll {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .lp-showcase-tab {
        flex-shrink: 0;
    }

    .lp-ap-sidebar {
        width: 100px;
    }
}

@media (min-width: 992px) {
    .col-lg-2d4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-lg-2d4 {
        width: 33.333% !important;
    }
}


#contact-us-banner {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease, padding 0.5s ease;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

    #contact-us-banner.show {
        opacity: 1;
        max-height: 100px; /* Adjust as needed */
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

/* Accordion layout like the screenshot */
#faq-section {
    background: transparent;
}

.faq-accordion {
    display: grid;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(80,175,176,0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(80,175,176,0.08);
    transition: all 0.25s ease;
}

    .faq-item:hover {
        border-color: rgba(80,175,176,0.4);
        box-shadow: 0 4px 16px rgba(80,175,176,0.12);
    }

.faq-header {
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: linear-gradient(180deg, #ffffff, #fafbfc);
    border-bottom: 1px solid rgba(80,175,176,0.1);
    transition: all 0.2s ease;
}

.faq-item.open .faq-header {
    border-bottom: 1px solid rgba(80,175,176,0.15);
    background: linear-gradient(180deg, #fafbfc, #f5f9fa);
}

.faq-header:hover {
    background: linear-gradient(180deg, #ffffff, #f0fafa);
}

.faq-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.98rem;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(80,175,176,0.12);
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    background: rgba(80,175,176,0.2);
    transform: rotate(180deg);
}

.faq-icon svg {
    stroke: var(--primary);
    stroke-width: 2.5;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0;
    background: #fff;
}

.faq-item.open .faq-body {
    padding: 0;
    max-height: 500px;
}

.faq-content {
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.7;
    padding: 1rem 1.2rem;
    background: rgba(80,175,176,0.03);
}

    .faq-content p {
        margin: 0 0 0.75rem 0;
        color: #64748b;
    }

        .faq-content p:last-child {
            margin-bottom: 0;
        }

    .faq-content a {
        color: var(--primary);
        text-decoration: underline;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .faq-content a:hover {
            color: var(--primary-dark);
        }

@media (max-width: 768px) {
    .faq-accordion {
        padding: 0;
    }

    .faq-item {
        border-radius: 8px;
    }

    .faq-header {
        padding: 0.9rem 1rem;
    }

    .faq-title {
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-content {
        padding: 1rem;
    }
}