/* ==========================================================================
   Valoro AI Landing Page Stylesheet
   Theme: High-tech dark obsidian, cyan-to-purple gradients, glassmorphism
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    --bg-dark: #020203;
    --bg-card: rgba(10, 15, 12, 0.75);
    --border-color: rgba(0, 255, 136, 0.08);
    --border-hover: rgba(0, 255, 136, 0.35);
    
    /* Brand Gradients (Electric Green to Emerald to Teal) */
    --primary-cyan: #00ff88;
    --primary-purple: #00b0ff;
    --primary-pink: #00e676;
    --accent-green: #00ff88;
    --accent-red: #ff3366;
    
    /* Glares & Glows */
    --cyan-glow: rgba(0, 255, 136, 0.15);
    --purple-glow: rgba(0, 176, 255, 0.15);
    --green-glow: rgba(0, 255, 136, 0.18);
    --pink-glow: rgba(0, 230, 118, 0.15);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #a8bba2;
    --text-muted: #5e725a;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset & General --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Background Ambient Glow Spheres --- */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.glow-1 {
    top: 5%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
}
.glow-2 {
    top: 35%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
}
.glow-3 {
    bottom: 10%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
}

/* --- Helper Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight-cyan {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }
.text-purple { color: #c084fc; }

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
.glass-card:hover {
    border-color: var(--border-hover);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- Buttons & Inputs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    color: #000000;
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}
.btn-block {
    width: 100%;
}
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}
.btn-glow:hover::after {
    transform: scale(1);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 38px; /* Offset by the 38px top forex ticker bar */
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(2, 2, 3, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: top var(--transition-fast), background var(--transition-fast);
}
.header.scrolled {
    background: rgba(2, 2, 3, 0.95);
    height: 70px;
}
.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

/* Custom transparent Logo adjustments */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.25));
    transition: transform var(--transition-fast), filter var(--transition-fast);
}
.logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.45));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}
.nav-link:hover {
    color: var(--primary-cyan);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width var(--transition-fast);
}
.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language selector */
.lang-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    gap: 4px;
}
.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 2px 4px;
}
.lang-btn.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
.lang-divider {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition-fast);
}

/* Mobile Overlay Menu */
.mobile-menu {
    position: fixed;
    top: 118px; /* Offset by the 38px top forex ticker bar + 80px header */
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(2, 2, 3, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    overflow: hidden;
    transition: height var(--transition-smooth);
}
.mobile-menu.active {
    height: calc(100vh - 118px);
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
    gap: 1.8rem;
}
.mobile-nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}
.mobile-nav-link:hover {
    color: var(--primary-cyan);
}
.mobile-lang-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}
.mobile-lang-selector .lang-btn {
    font-size: 0.9rem;
    padding: 4px 8px;
}
.mobile-cta {
    margin-top: 1rem;
    width: 80%;
}

/* --- Hero Section --- */
.hero-section {
    padding: 216px 0 100px 0; /* Pushed down slightly to prevent overlapping with top forex bar and header */
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.badge-container {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.glow-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #a3ffcb;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}
.glow-badge.trusted-badge {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: #ffe082;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.15);
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Quick Lead Capture */
.quick-capture-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin-bottom: 3rem;
}
.quick-email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.quick-email-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* --- Hero Terminal mockup --- */
.terminal-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.terminal-header {
    background: rgba(10, 10, 15, 0.9);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}
.terminal-dots {
    display: flex;
    gap: 6px;
}
.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27c93f; }

.terminal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
}
.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 1.5s infinite;
}
.status-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
}
.terminal-body {
    padding: 1.25rem;
}

/* Live Analytics Chart styling */
.terminal-chart-container {
    position: relative;
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.chart-overlay-info {
    position: absolute;
    top: 12px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.chart-pair {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}
.chart-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
}
.chart-change {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}
.chart-change.positive { color: var(--accent-green); }
.chart-change.negative { color: var(--accent-red); }

canvas#live-chart {
    display: block;
    width: 100%;
    height: auto;
}

/* Real-Time Signal Alert List styling */
.signal-ticker-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.signal-feed-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 340px; /* Fixed height to perfectly fit exactly 3 active cards without ever expanding */
    overflow-y: hidden;
    position: relative;
}
.signal-item {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}
.signal-item.buy {
    border-left: 3px solid var(--accent-green);
}
.signal-item.sell {
    border-left: 3px solid var(--accent-red);
}
.sig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sig-action {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.signal-item.buy .sig-action {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}
.signal-item.sell .sig-action {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-red);
}
.sig-pair {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}
.sig-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.sig-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
}
.sig-details strong {
    color: var(--text-white);
}
.sig-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.4rem;
    font-size: 0.75rem;
}
.sig-confidence {
    color: var(--text-gray);
}

/* --- Infinite Scrolling Ticker --- */
.scrolling-ticker-bar {
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    border-y: 1px solid var(--border-color);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ticker-wrapper {
    display: inline-flex;
    animation: ticker-slide 30s linear infinite;
    gap: 3rem;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}
.ticker-sym { color: var(--text-white); }
.ticker-price { color: var(--text-gray); }
.ticker-pct { font-weight: 700; }
.ticker-pct.positive { color: var(--accent-green); }
.ticker-pct.negative { color: var(--accent-red); }
/* --- Top Forex Scrolling Ticker Bar --- */
.top-forex-ticker-bar {
    width: 100%;
    height: 38px;
    background: rgba(2, 2, 3, 0.9);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001; /* Layered above standard navigation */
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.top-forex-ticker-bar .ticker-wrapper {
    display: inline-flex;
    animation: ticker-slide 25s linear infinite; /* Slightly faster than the bottom market ticker */
    gap: 3rem;
}
.top-forex-ticker-bar .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}
.top-forex-ticker-bar .ticker-item .ticker-sym {
    color: var(--text-white);
}
.top-forex-ticker-bar .ticker-item .ticker-price {
    color: var(--text-gray);
}
.top-forex-ticker-bar .ticker-item .ticker-pct {
    font-weight: 700;
}
.top-forex-ticker-bar .ticker-item .ticker-pct.positive {
    color: var(--accent-green);
}
.top-forex-ticker-bar .ticker-item .ticker-pct.negative {
    color: var(--accent-red);
}

/* --- Features Section --- */
.features-section {
    padding: 120px 0 60px 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: inline-block;
}
.section-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.feature-icon-wrapper.cyan-glow {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-cyan);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}
.feature-icon-wrapper.purple-glow {
    background: rgba(0, 176, 255, 0.1);
    color: #80d8ff;
    border-color: rgba(0, 176, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 176, 255, 0.15);
}
.feature-icon-wrapper.green-glow {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}
.feature-icon-wrapper.pink-glow {
    background: rgba(0, 230, 118, 0.1);
    color: #69f0ae;
    border-color: rgba(0, 230, 118, 0.2);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}
.feature-title {
    font-size: 1.35rem;
}
.feature-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Community Section --- */
.community-section {
    padding: 80px 0;
    position: relative;
}
.community-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.community-info {
    display: flex;
    flex-direction: column;
}
.community-info .section-desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}
.community-perks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.perk-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.perk-icon {
    color: var(--primary-cyan);
    margin-top: 2px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.4));
}
.perk-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}
.perk-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Discord visual mockup */
.discord-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.discord-header {
    background: #111214;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.discord-header-dots {
    display: flex;
    gap: 5px;
}
.d-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #313338;
}
.channel-group {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.discord-body {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #1e1f22;
    min-height: 200px;
}
.discord-channels {
    background: #2b2d31;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.03);
}
.discord-channel {
    font-size: 0.75rem;
    font-weight: 600;
    color: #949ba4;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    cursor: default;
}
.discord-channel.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
}
.discord-chat {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: flex-end;
    background: #313338;
}
.discord-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.d-user {
    font-size: 0.7rem;
    font-weight: 700;
}
.d-text {
    font-size: 0.75rem;
    color: #dbdee1;
    line-height: 1.4;
}

/* --- ROI Calculator Section --- */
.calculator-section {
    padding: 80px 0;
}
.calculator-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.calc-info {
    display: flex;
    flex-direction: column;
}
.calc-info .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.calc-info .section-desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}
.calc-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.calc-glow-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 0.5rem;
}
.calc-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Calculator Sliders and inputs */
.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
}
.slider-val {
    color: var(--primary-cyan);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.neon-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
    transition: background var(--transition-fast);
}
.neon-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-cyan);
    cursor: pointer;
    box-shadow: 0 0 12px var(--primary-cyan);
    transition: transform 0.1s ease;
}
.neon-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.neon-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--primary-cyan);
    cursor: pointer;
    box-shadow: 0 0 12px var(--primary-cyan);
    transition: transform 0.1s ease;
}
.neon-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}
.slider-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.calc-sub-results {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}
.sub-result {
    display: flex;
    flex-direction: column;
}
.sub-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}
.sub-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

/* --- Testimonials / Reviews Section --- */
.reviews-section {
    padding: 80px 0;
    position: relative;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Fluid responsive wrapping for the 6 cards */
    gap: 2rem;
    margin-top: 2rem;
}
.review-card {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review-user {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}
.user-avatar {
    width: 48px; /* Slightly larger, premium avatar size */
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow: hidden; /* CRITICAL: Crop the avatar image to circle! */
    position: relative;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scaled down and centered perfectly */
    border-radius: 50%;
    display: block;
}
.user-avatar.text-cyan-glow {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.user-avatar.text-purple-glow {
    background: rgba(0, 176, 255, 0.1);
    border: 1px solid rgba(0, 176, 255, 0.3);
    color: #80d8ff;
    box-shadow: 0 0 10px rgba(0, 176, 255, 0.3);
}
.user-avatar.text-green-glow {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}
.user-market {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.verified-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.review-rating {
    color: #fbbf24;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
}
.review-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

/* --- Signup / Lead Capture Section --- */
.signup-section {
    padding: 120px 0;
    position: relative;
}
.signup-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.signup-info {
    display: flex;
    flex-direction: column;
}
.signup-info .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.signup-info .section-desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}
.signup-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.check-icon {
    color: var(--primary-cyan);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.4));
}
.signup-benefits li span {
    font-size: 0.95rem;
    color: var(--text-white);
}

/* Core Registration Form details */
.signup-form-wrapper {
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.main-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}
.country-code-select {
    width: 110px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.85rem 0.5rem !important;
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.country-code-select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.form-agreement {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.form-agreement input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--primary-cyan);
}
.form-agreement label {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.4;
    cursor: pointer;
}

/* Success Card details */
.success-card {
    text-align: center;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: scale-up 0.4s ease-out;
}
.success-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.success-title {
    font-size: 1.75rem;
    color: var(--text-white);
}
.success-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 320px;
}
.success-token-box {
    width: 100%;
    background: rgba(0, 255, 136, 0.05);
    border: 1px dashed rgba(0, 255, 136, 0.3);
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.token-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}
.token-value {
    font-weight: 700;
    color: var(--primary-cyan);
    letter-spacing: 0.05em;
}
.btn-copy {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}
.btn-copy:hover {
    color: var(--primary-cyan);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0 140px 0;
}
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-fast);
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-cyan);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}
.faq-content p {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Footer --- */
.footer-wrapper {
    background: #010102;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand {
    max-width: 320px;
}
.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.footer-links-group {
    display: flex;
    gap: 5rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-column h4 {
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.footer-column a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}
.footer-column a:hover {
    color: var(--primary-cyan);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.disclaimer {
    font-size: 0.7rem;
    color: #4b5563;
    line-height: 1.5;
}

/* --- Interactive Chatbot Widget Styles --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}
.chatbot-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6);
}
.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-green);
    border: 2.5px solid var(--bg-dark);
}
.notification-dot.pulse {
    animation: glow-pulse 2s infinite;
}

/* Chat Window structure */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.chat-header {
    background: rgba(10, 10, 15, 0.85);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}
.chat-avatar-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 1.5px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-avatar-icon {
    filter: drop-shadow(0 0 4px var(--primary-cyan));
}
.active-pulse {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-green);
    border: 1.5px solid var(--bg-dark);
}
.chat-header-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}
.chat-header-info span {
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Chat Messages Area */
.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-msg {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
}
.chat-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    align-self: flex-start;
    border-top-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-msg.user {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 176, 255, 0.1) 100%);
    align-self: flex-end;
    border-top-right-radius: 2px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.25rem 0.5rem;
    align-items: center;
}
.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-gray);
    animation: typing-bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* Chat Quick Response Action buttons */
.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 5, 8, 0.3);
}
.quick-reply-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    color: var(--text-gray);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.quick-reply-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    background: rgba(0, 255, 136, 0.03);
}

/* Chat Input Footer */
.chat-footer {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.85);
}
.chat-footer form {
    display: flex;
    gap: 0.5rem;
}
.chat-footer input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}
.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}
.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.chat-send-btn:hover {
    color: var(--primary-cyan);
    background: rgba(0, 255, 136, 0.1);
}

/* --- Custom Keyframes & Animations --- */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

@keyframes scale-up {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .badge-container {
        justify-content: center; /* Center double badge stack horizontally on mobile */
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .quick-capture-form {
        width: 100%;
        margin: 0 auto 2rem auto;
    }
    .hero-stats {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .stat-item {
        align-items: center;
        text-align: center;
    }
    .hero-visual {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
    .community-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .community-info {
        text-align: center;
        align-items: center;
    }
    .perk-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .community-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .calc-info {
        text-align: center;
        align-items: center;
    }
    .calc-sliders {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .signup-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .signup-info {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .signup-info .section-title {
        font-size: clamp(1.65rem, 6vw, 2.15rem) !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .signup-benefits {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 auto 2rem auto;
    }
    .signup-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }
    .signup-benefits li .check-icon {
        margin-top: 3px;
    }
    .signup-form-wrapper {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
        padding: 1.5rem 1.25rem;
        box-sizing: border-box;
    }
    .phone-input-wrapper input[type="tel"] {
        flex: 1;
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta, .header-right {
        display: none !important;
    }
    .lang-selector {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 1.25rem;
        padding: 0.25rem 0.5rem;
        gap: 2px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }
    .lang-selector .lang-btn {
        padding: 1px 3px;
        font-size: 0.7rem;
    }
    .lang-selector .lang-divider {
        font-size: 0.7rem;
    }
    .glow-sphere {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-title {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    .section-title {
        font-size: clamp(1.65rem, 5vw, 2rem);
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }
    .logo-img {
        height: 38px; /* Shrink logo slightly on mobile headers */
    }
    .review-card {
        align-items: center;
        text-align: center;
    }
    .review-header {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        width: 100%;
    }
    .review-user {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
        margin: 0 auto;
    }
    .footer-brand .logo {
        justify-content: center;
    }
    .footer-links-group {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .footer-column {
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        text-align: center;
    }
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    .chat-window {
        width: calc(100vw - 40px);
        height: 480px;
    }
    /* Constrain legal cards paddings on mobile to maximize viewport widths */
    .privacy-card, .audit-card, .terms-card {
        padding: 1.5rem !important;
    }
    .privacy-body, .audit-body, .terms-body {
        padding-top: 140px !important;
    }

    /* Subpage Header overrides for mobile visibility */
    .header-subpage .nav-links-subpage {
        display: flex !important;
        gap: 0.5rem;
        align-items: center;
    }
    .header-subpage .nav-links-subpage .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        color: var(--text-white);
        white-space: nowrap;
    }
    .header-subpage .nav-links-subpage .nav-link:hover {
        color: var(--primary-cyan);
        border-color: var(--primary-cyan);
    }
}

@media (max-width: 576px) {
    .quick-capture-form {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 2rem auto;
        gap: 0.85rem;
    }
    .quick-email-input, .quick-capture-form .btn {
        width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .calc-sub-results {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
}
