:root {
    /* 
     * Premium Fintech Landing Page Color Palette 
     * Definition: landing_page_palette.md
     */

    /* --- Backgounds & Surfaces --- */
    --lp-bg-main: #0B0E14;       /* Deep Void - Primary Page Background */
    --lp-bg-card: #161B22;       /* Gunmetal - Cards, Sections */
    --lp-bg-surface: #21262d;    /* Slate - Elevated elements, inputs */

    /* --- Typography --- */
    --lp-text-primary: #FFFFFF;  /* White - Headings, Hero Text */
    --lp-text-secondary: #8B949E; /* Silver - Subtext, Descriptions */
    --lp-text-muted: #30363D;     /* Steel - Disabled, Subtle labels */

    /* --- Borders & Dividers --- */
    --lp-border-main: #30363D;   /* Steel - Standard Borders */
    --lp-border-highlight: #21262d; /* Slate - Lighter borders */

    /* --- Brand & Actions --- */
    --lp-primary: #2F81F7;       /* Electric Blue - Primary CTA */
    --lp-primary-hover: #58A6FF; /* Bright Blue - Hover State */
    --lp-accent: #E0B400;        /* Gold - Premium/Pro features */

    /* --- Data Visualization / Trading Signals --- */
    --lp-bullish: #00C076;       /* Signal Green - Success/Up */
    --lp-bearish: #F23645;       /* Signal Red - Danger/Down */
    --lp-cyan: #1CF4FF;          /* Neon Cyan - Tech accents */

    /* --- Typography --- */
    --lp-font-main: 'Google Sans', sans-serif;
}

body {
    font-family: var(--lp-font-main) !important;
    background-color: var(--lp-bg-main) !important;
    color: var(--lp-text-primary) !important;
}


/* Utility Classes for Quick Usage */
.lp-bg-main { background-color: var(--lp-bg-main); }
.lp-bg-card { background-color: var(--lp-bg-card); }

.lp-text-primary { color: var(--lp-text-primary); }
.lp-text-secondary { color: var(--lp-text-secondary); }

.lp-border { border: 1px solid var(--lp-border-main); }

.lp-btn-primary {
    background-color: var(--lp-primary);
    color: var(--lp-text-primary);
    border: none;
    transition: background-color 0.2s ease;
}

.lp-btn-primary:hover {
    background-color: var(--lp-primary-hover);
}

/* --- Header & Navigation --- */
.lp-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000; /* Pitch black as per image */
    border-bottom: 1px solid #1c2128;
    padding: 0 10px;
}

.lp-top-bar {
    background-color: #0d1117;
    border-bottom: 1px solid #21262d;
    font-size: 13px;
    padding: 6px 0;
}

/* Nav Links - Match the grey-to-white look */
.lp-nav-link {
    color: #8b949e !important; /* Silver/Grey by default */
    font-weight: 500;
    font-size: 13px; /* Smaller font to fit all items */
    padding: 20px 8px; /* Reduced padding */
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap; /* Prevent text wrapping */
}

.lp-nav-link:hover, .lp-nav-link.active {
    color: #ffffff !important; /* Pure white on hover */
}

/* Special "Plans" highlighting if needed, or just bold */
.lp-nav-link-highlight {
    color: #fff !important;
    font-weight: 700;
}

/* Dropdown Menu */
.dropdown-menu.lp-glass-card {
    background-color: #161b22;
    border: 1px solid #30363d;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    margin-top: 0;
    min-width: 200px;
}

.dropdown-item {
    color: #c9d1d9;
    padding: 8px 16px;
    font-size: 14px;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: #1f6feb; /* Blue accent hover */
}

/* --- Actions Area --- */

/* Notification Bell - Outlined Box Style */
.lp-btn-icon-outline {
    background: transparent;
    border: 1px solid #30363d;
    color: #c9d1d9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Squared with radius */
    transition: all 0.2s;
}

.lp-btn-icon-outline:hover, .dropdown.show .lp-btn-icon-outline {
    border-color: #8b949e;
    color: #ffffff;
    background: #21262d;
}

/* Primary Button (Logout) - Distinctive Blue */
.lp-btn-primary {
    background-color: #1f6feb; /* GitHub/Reference Blue */
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 6px; /* Slightly tighter radius */
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}

.lp-btn-primary:hover {
    background-color: #388bfd; /* Lighter blue */
    color: #ffffff;
}

/* --- HOME PAGE HERO DASHBOARD REPLICA --- */

/* Scoped Wrapper to prevent Global Leakage */
.oc-replica-wrapper {
    /* Root Variables from option-chain-dark.css & trading-pages.css */
    --oc-bg-dark: #0B0E11;
    --oc-bg-card: #11151C;
    --oc-table-hover: #151A22;
    --oc-header-bg: #11151C;
    --oc-border: #1F2633;
    --oc-active-border: #2F81F7;
    --oc-text-main: #E6EDF3;
    --oc-text-sec: #9BA3B4;
    --oc-text-muted: #6B7280;
    --oc-signal-bull-bg: #0E3B2C;
    --oc-signal-bull-text: #00C076;
    --oc-signal-bear-bg: #3B1519;
    --oc-signal-bear-text: #F23645;
    --oc-signal-neutral-bg: #1A1F2B;
    --oc-signal-neutral-text: #9BA3B4;
    --oc-accent-green: #00C076;
    --oc-accent-red: #F23645;
    --oc-strike-blue: #2F81F7;
    
    font-family: 'Google Sans', sans-serif !important;
    font-size: 12.5px;
    color: var(--oc-text-main);
    background-color: var(--oc-bg-dark);
    line-height: 1.4;
}

/* --- OPTION CHAIN DARK CSS (Scoped) --- */
.oc-replica-wrapper .table {
    background-color: var(--oc-bg-dark);
    color: var(--oc-text-main);
    border-color: var(--oc-border);
    width: 100%;
    border-collapse: separate; /* Changed for better border handling if needed */
    border-spacing: 0;
    font-weight: 600;
    font-family: 'Google Sans', sans-serif !important;
}
.oc-replica-wrapper .table-bordered { border: none; }

.oc-replica-wrapper .table thead th {
    background-color: var(--oc-header-bg);
    color: var(--oc-text-sec);
    border-bottom: 1px solid var(--oc-border);
    border-right: 1px solid var(--oc-border);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    padding: 12px 6px; /* Increased Padding */
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap; /* Prevent Wrap */
}

.oc-replica-wrapper .stats-header {
    background-color: var(--oc-bg-card);
    color: var(--oc-text-main);
    padding: 14px 10px;
    border: 1px solid var(--oc-border);
    font-family: 'Google Sans', sans-serif !important;
}
.oc-replica-wrapper .stats-header h6 { 
    color: var(--oc-text-main); 
    font-size: 11px; 
    margin:0; 
    font-weight:700; 
    font-family: 'Google Sans', sans-serif !important; 
}
.oc-replica-wrapper .stats-header p, .oc-replica-wrapper .stats-header .small { 
    color: var(--oc-text-sec); 
    font-size: 10px; 
    margin:0; 
    font-family: 'Google Sans', sans-serif !important; 
}

.oc-replica-wrapper .call-header { border-top: 2px solid var(--oc-accent-red); }
.oc-replica-wrapper .put-header { border-top: 2px solid var(--oc-accent-green); }

.oc-replica-wrapper .spot-price-header {
    background-color: var(--oc-bg-card);
    border: 1px solid var(--oc-border);
    border-top: 2px solid var(--oc-strike-blue);
    min-width: 120px;
    font-family: 'Google Sans', sans-serif !important;
}
.oc-replica-wrapper .spot-price-header div {
    font-family: 'Google Sans', sans-serif !important;
}

.oc-replica-wrapper .table tbody td {
    background-color: var(--oc-bg-dark);
    border: 1px solid var(--oc-border);
    color: var(--oc-text-main);
    font-weight: 500;
    font-size: 13px; /* Larger Font */
    padding: 10px 8px; /* Comfortable Padding */
    text-align: center;
    white-space: nowrap;
    font-family: 'Google Sans', sans-serif !important;
}

.oc-replica-wrapper .table tbody td.strike-col {
    background-color: var(--oc-bg-card);
    font-weight: 700;
    color: var(--oc-strike-blue);
    font-size: 14px;
    min-width: 80px;
}

.oc-replica-wrapper .text-danger { color: var(--oc-accent-red); }
.oc-replica-wrapper .text-success { color: var(--oc-accent-green); }
.oc-replica-wrapper .text-muted { color: var(--oc-text-sec); }
.oc-replica-wrapper .font-bold { font-weight: 700; }

.oc-replica-wrapper .bg-success-subtle { background-color: rgba(0, 192, 118, 0.08); color: var(--oc-text-main); }
.oc-replica-wrapper .bg-danger-subtle { background-color: rgba(242, 54, 69, 0.08); color: var(--oc-text-main); }

.oc-replica-wrapper .hover\:bg-\[\#151A22\]:hover td { background-color: #151A22; }

/* --- TRADING HEADER CSS (Scoped) --- */
.oc-replica-wrapper .trading-header-replica {
    background-color: #0f1217;
    border-bottom: 1px solid #1e2329;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.oc-replica-wrapper .nav-link-dark {
    color: #848e9c;
    background: transparent;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif !important;
}
.oc-replica-wrapper .nav-link-dark.active {
    color: #f0b90b;
    background-color: rgba(240, 185, 11, 0.1);
    border-radius: 4px;
}
.oc-replica-wrapper .nav-select-dark {
    background-color: #1e2329;
    color: #eaecef;
    border: 1px solid #2b3139;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Google Sans', sans-serif !important;
}

/* --- TRADING PAGES CSS (Buttons) --- */
.oc-replica-wrapper .btn-dark {
    background-color: #21262d;
    border-color: #30363d;
    color: var(--oc-text-main);
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    font-family: 'Google Sans', sans-serif !important;
}

/* --- 3D Perspective Utility --- */
.perspective-2000 {
    perspective: 2000px;
}

.oc-replica-wrapper .highlight-row {
    border-top: 2px solid var(--oc-accent-red);
    border-bottom: 2px solid var(--oc-accent-green);
}

/* --- COUNTER AREA --- */
.counter-header-wrapper {
    padding: 10px 20px;
}
.last-updated-text {
    color: #ffffff;
    margin-left: 10px;
}

/* --- HERO & TABLET SPECIFIC --- */
.hero-section-bg {
    background-color: #000000;
}
.tablet-frame-bg {
    background-color: #050505;
}
.tablet-screen-bg {
    background-color: #0B0E11;
}
.tablet-cam-bg {
    background-color: #1a1a1a;
}
.text-strike-blue {
    color: #2F81F7;
}
.bg-strike-cell {
    background-color: #21262d;
}
.table-row-hover:hover {
    background-color: #151A22;
}
.text-info-muted {
    color: #9BA3B4;
}

/* --- HERO GLOW ELEMENTS --- */
.hero-glow-primary {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 800px;
    background-color: rgba(0, 192, 118, 0.15); /* lp-bullish/15 */
    filter: blur(120px);
    border-radius: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.hero-glow-secondary {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 500px;
    background-color: rgba(0, 192, 118, 0.1); /* lp-bullish/10 */
    filter: blur(100px);
    border-radius: 100%;
    pointer-events: none;
    z-index: 0;
}

/* --- TABLET FRAME COMPONENT --- */
.tablet-device-frame {
    position: relative;
    background-color: #050505; /* tablet-frame-bg */
    padding: 10px;
    
    /* Borders & Shadows */
    border: 1px solid #111827; /* gray-900 */
    border-radius: 30px;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.08);

    /* Transforms & Transitions */
    transform-origin: center;
    box-sizing: content-box;
    width: 100%;
    max-width: 800px;
    transition: all 1s;

    /* Mobile State */
    transform: rotateY(-10deg) rotateX(5deg) scale(0.85) translateX(15%);
}

@media (min-width: 640px) { /* sm */
    .tablet-device-frame {
        padding: 14px;
        border-radius: 36px;
    }
}

@media (min-width: 1024px) { /* lg */
    .tablet-device-frame {
        /* Desktop State */
        transform: rotateY(-10deg) rotateX(5deg) scale(1) translateX(25%);
    }
}

/* Hover Interaction */
.tablet-device-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(0.85) translateX(15%);
}

@media (min-width: 1024px) {
    .tablet-device-frame:hover {
        transform: rotateY(0deg) rotateX(0deg) scale(1) translateX(25%);
    }
}

/* --- TABLET INTERNALS --- */
.tablet-camera-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #1a1a1a;
    border-radius: 9999px;
    opacity: 0.5;
    display: none;
}
@media (min-width: 640px) {
    .tablet-camera-notch { display: block; }
}

.tablet-screen-container {
    position: relative;
    background-color: #0B0E11; /* tablet-screen-bg */
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    width: 100%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
@media (min-width: 640px) {
    .tablet-screen-container {
        border-radius: 24px;
        height: 500px;
    }
}

.tablet-reflection-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 30;
    mix-blend-mode: overlay;
    opacity: 0.2;
    background: linear-gradient(to top right, rgba(255,255,255,0.05), transparent);
    border-radius: 30px;
}
@media (min-width: 640px) {
    .tablet-reflection-overlay {
        border-radius: 36px;
    }
}

.tablet-bottom-glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50px;
    background-color: rgba(47, 129, 247, 0.2); /* lp-blue/20 */
    filter: blur(50px);
    border-radius: 100%;
    pointer-events: none;
    z-index: 0;
}

.scale-wrapper {
    transform-origin: top left;
    width: 135%;
    height: 100%;
}
@media (min-width: 640px) {
    .scale-wrapper {
        transform: scale(0.85);
    }
}

/* --- HERO TYPOGRAPHY & ELEMENTS --- */
.hero-heading {
    font-family: var(--lp-font-main);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em; /* tracking-tight */
    color: #ffffff;
    font-size: 3rem; /* text-5xl */
}
@media (min-width: 1024px) {
    .hero-heading {
        font-size: 4.5rem; /* text-7xl */
    }
}

.hero-gradient-text {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #ffffff, #8B949E, #30363D);
}

.hero-description {
    font-size: 1.125rem; /* text-lg */
    color: var(--lp-text-secondary); /* lp-gray */
    max-width: 36rem; /* max-w-xl */
    line-height: 1.625; /* leading-relaxed */
}

/* Badge */
.badge-market-data {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(22, 27, 34, 0.5);
    backdrop-filter: blur(4px);
    color: var(--lp-text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

/* Animated border beam effect */
.badge-market-data::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 9999px;
    padding: 1px;
    background: linear-gradient(90deg, 
        var(--lp-border-main) 0%,
        var(--lp-bullish) 50%,
        var(--lp-border-main) 100%);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderBeam 3s linear infinite;
    pointer-events: none;
}

@keyframes borderBeam {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.badge-pulse-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--lp-bullish); /* trade-green */
    animation: badge-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Trust Stats */
.trust-stats-container {
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3); /* lp-border/30 */
}
.trust-stat-val {
    font-size: 1.5rem; /* 2xl */
    font-weight: 700;
    color: #ffffff;
}
.trust-stat-label {
    font-size: 0.75rem; /* xs */
    color: var(--lp-text-secondary);
    margin-top: 0.25rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Update gradient text for shimmer */
.hero-gradient-text {
    background-image: linear-gradient(to right, #ffffff 0%, #9ca3af 50%, #ffffff 100%);
    background-size: 200% auto;
    animation: textShimmer 3s linear infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes slideRightIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-slide-right {
    animation: slideRightIn 0.8s ease-out forwards;
    opacity: 0;
}

/* --- HERO ACTIONS --- */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.btn-hero-primary {
    background-color: var(--lp-bullish);
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem; /* text-sm */
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    box-shadow: 0 0 25px rgba(0, 192, 118, 0.4);
    transition: transform 0.2s ease, background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-hero-primary:hover {
    transform: scale(1.05);
    background-color: #00DB87;
    color: #000000;
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid var(--lp-border-main);
    background-color: rgba(22, 27, 34, 0.5); /* lp-card/50 */
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    text-decoration: none;
}
.btn-hero-secondary:hover {
    background-color: var(--lp-bg-card);
    color: #ffffff;
}

/* --- SERVICES SECTION --- */
.service-card {
    position: relative;
    padding: 2rem;
    background-color: #050505; /* Exact match to React code */
    border-radius: 1rem;
    border: 1px solid #27272a; /* zinc-800 */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Alternating glow colors on hover - No Purple, No Border Color, No Shadow */
/* Removed specific color glows as per request for simple white top border only */

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #18181b; /* zinc-900 */
    border: 1px solid #27272a; /* zinc-800 */
}

.service-description {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    line-height: 1.625;
    height: 5rem;
}



.service-card-border-top {
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(to right, transparent, #52525b, transparent); /* zinc-700 */
    opacity: 0.5;
    transition: all 0.3s;
}

.service-card:hover .service-card-border-top {
    opacity: 1;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-section {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    background-color: var(--lp-bg-main);
}

.testimonial-bg-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 500px;
    background-color: rgba(49, 46, 129, 0.1); /* indigo-900/10 */
    filter: blur(100px);
    z-index: 0;
    border-radius: 9999px;
    pointer-events: none;
}

.testimonial-container {
    max-width: 80rem; /* 7xl */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-header {
        flex-direction: row;
    }
}

.testimonial-title-wrapper {
    max-width: 42rem; /* 2xl */
}

.testimonial-title {
    font-size: 2.25rem; /* 4xl */
    line-height: 2.5rem;
    font-weight: 700;
    font-family: var(--lp-font-main);
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimonial-subtitle {
    color: #a1a1aa; /* zinc-400 */
}

.testimonial-rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #eab308; /* yellow-500 */
    background-color: rgba(234, 179, 8, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.testimonial-card {
    padding: 1.5rem;
    background-color: #080808;
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 0.75rem; /* xl */
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: #3f3f46; /* zinc-700 */
}

.testimonial-quote-icon {
    color: #6366f1; /* indigo-500 */
    margin-bottom: 1rem;
    opacity: 0.5;
    width: 24px;
    height: 24px;
}

.testimonial-text {
    color: #d4d4d8; /* zinc-300 */
    font-size: 0.875rem; /* sm */
    line-height: 1.625;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(39, 39, 42, 0.5); /* zinc-800/50 */
}

.testimonial-avatar {
    width: 2.5rem; /* 10 */
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid #3f3f46; /* zinc-700 */
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem; /* sm */
}

.testimonial-author-role {
    font-size: 10px;
    color: #71717a; /* zinc-500 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- STATS / COUNTER SECTION --- */
.stats-section {
    padding: 4rem 1rem;
    background-color: #050505; /* Black Background */
    border-top: 1px solid var(--lp-border-main);
    border-bottom: 1px solid var(--lp-border-main);
}

.stats-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(16, 185, 129, 0.1); /* emerald-500/10 */
    color: #10b981; /* emerald-500 */
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.stats-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.stats-update-text {
    color: #71717a; /* zinc-500 */
    font-family: monospace;
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--lp-bg-card); /* Reverted to #161B22 */
    border: 1px solid var(--lp-border-main); /* Reverted */
    border-radius: 1rem;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: #3f3f46;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--lp-font-main);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 6rem 1rem;
    background-color: rgba(24, 24, 27, 0.1); /* bg-zinc-900/10 */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
}

.faq-container {
    max-width: 56rem; /* 4xl */
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 1.875rem; /* 3xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #a1a1aa; /* zinc-400 */
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #050505;
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 0.75rem; /* xl */
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.3); /* emerald-500/30 */
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.05);
}

.faq-item:hover:not(.active) {
    border-color: #3f3f46; /* zinc-700 */
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #a1a1aa; /* zinc-400 */
    transition: color 0.3s;
}

.faq-item.active .faq-trigger {
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.125rem; /* lg */
    font-weight: 600;
}

.faq-icon {
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: #18181b; /* zinc-900 */
    color: #71717a; /* zinc-500 */
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    background-color: rgba(16, 185, 129, 0.2); /* emerald-500/20 */
    color: #34d399; /* emerald-400 */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 2rem;
}

.faq-item.active .faq-content {
    max-height: 20rem; /* Arbitrary large height */
    padding-bottom: 2rem;
}

.faq-content p {
    color: #a1a1aa; /* zinc-400 */
    line-height: 1.625;
    max-width: 42rem;
}

/* --- FAQ CTA --- */
.faq-cta-box {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(6, 78, 59, 0.4), rgba(4, 47, 46, 0.4)); /* emerald-900/40 to teal-900/40 */
    border: 1px solid rgba(16, 185, 129, 0.2); /* emerald-500/20 */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px; /* w-16? no w-64 is 16rem */
    width: 16rem;
    height: 16rem;
    background-color: rgba(16, 185, 129, 0.1);
    filter: blur(50px);
    border-radius: 9999px;
    pointer-events: none;
}

.faq-cta-btn {
    padding: 0.5rem 1.5rem;
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 1.5rem;
}

.faq-cta-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   MOBILE HAMBURGER MENU (Devin.ai Style)
   ======================================== */

/* Hamburger Icon Container */
.hamburger-icon {
    width: 20px;
    height: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hamburger Lines (Two-Line Minimalist Design) */
.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 1s cubic-bezier(0.17, 0.67, 0.1, 0.99);
    transform-origin: center;
}

/* Active State - Morph to X Icon */
.hamburger-icon.active .hamburger-line.top {
    transform: translateY(5px) rotate(45deg);
}

.hamburger-icon.active .hamburger-line.bottom {
    transform: translateY(-5px) rotate(-45deg);
}

/* Mobile Menu Animation Classes */
.menu-item {
    /* Individual menu items with staggered animation */
    transition: all 1s cubic-bezier(0.17, 0.67, 0.1, 0.99);
}

/* ========================================
   END MOBILE HAMBURGER MENU
   ======================================== */

