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

/* --- CSS Variables & Design System --- */
:root {
    --bg-dark: linear-gradient(135deg, #4daa7e 0%, #3172e2 100%); /* Full page background gradient */
    --bg-card: rgba(255, 255, 255, 0.12); /* Frosted glass white on gradient */
    --border-color: rgba(255, 255, 255, 0.15); /* White border for glass effect */
    --border-hover: rgba(255, 255, 255, 0.4);
    
    /* Brand Gradients (Green #4daa7e to Blue #3172e2) */
    --primary-cyan: #ffffff; /* White text/accents on gradient background */
    --primary-purple: #ffffff; 
    --primary-pink: #ffffff; 
    --accent-green: #ffffff;
    --accent-red: #ff3366;
    
    /* Glares & Glows */
    --cyan-glow: rgba(255, 255, 255, 0.05);
    --purple-glow: rgba(255, 255, 255, 0.05);
    --green-glow: rgba(255, 255, 255, 0.08);
    --pink-glow: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-white: #ffffff; /* Pure white for primary text */
    --text-gray: rgba(255, 255, 255, 0.85); /* Slightly translucent white for body copy */
    --text-muted: rgba(255, 255, 255, 0.6); /* Translucent white for captions/metadata */
    
    /* 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: var(--bg-dark) fixed;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    background: var(--bg-dark) fixed;
    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.15;
    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(90deg, var(--primary-cyan) 0%, var(--primary-purple) 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: #ffffff;
    color: #3172e2; /* Deep blue text */
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}
.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(255, 255, 255, 0.05);
    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(255, 255, 255, 0.15);
    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);
    margin-right: 3rem; /* Spacing between logo and menu links */
}

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

.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;
    margin-left: auto; /* Push menu to left, align selector/CTA to right */
    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: var(--border-color);
}

.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(49, 114, 226, 0.95);
    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%;
}

/* --- Urgent FOMO Banner --- */
.urgency-banner {
    width: 100%;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.85) 0%, rgba(245, 158, 11, 0.8) 50%, rgba(239, 68, 68, 0.85) 100%);
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.85rem 0;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    animation: fomo-pulse 3s infinite alternate;
}
@keyframes fomo-pulse {
    0% {
        border-color: rgba(255, 255, 255, 0.25);
        background: rgba(239, 68, 68, 0.85);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(245, 158, 11, 0.9);
    }
}
.urgency-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.urgency-content {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.4;
}
.urgency-fire-icon {
    font-size: 1.25rem;
    animation: fire-bounce 0.8s infinite alternate;
    display: inline-block;
}
@keyframes fire-bounce {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.25) translateY(-2px); filter: drop-shadow(0 0 6px #ef4444); }
}
.urgency-cta {
    background: #ffffff;
    border: none;
    color: #ef4444;
    padding: 0.55rem 1.5rem;
    border-radius: 9999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.urgency-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f8fafc;
    color: #f59e0b;
}

@media (max-width: 768px) {
    .urgency-banner {
        padding: 1rem 0;
        margin-bottom: 2.5rem;
    }
    .urgency-container {
        flex-direction: column;
        gap: 0.85rem;
        text-align: center;
        justify-content: center;
    }
    .urgency-content {
        font-size: 0.85rem;
        justify-content: center;
    }
    .urgency-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.65rem 1.5rem;
    }
}

/* --- Hero Section --- */
.hero-section {
    padding: 118px 0 100px 0; /* Clears fixed top bar (38px) + header (80px), allowing urgency banner to sit flush */
    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-proposition {
    max-width: 520px;
    margin-bottom: 2.5rem;
    text-align: left;
}
.hero-intro {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}
.bullet-icon {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.4));
}
.hero-outro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
    line-height: 1.5;
}

/* 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(255, 255, 255, 0.1);
    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(255, 255, 255, 0.08);
    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;
}

/* --- Consulting Section --- */
.consulting-section {
    padding: 80px 0;
    position: relative;
}
.consulting-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);
}
.consulting-info {
    display: flex;
    flex-direction: column;
}
.consulting-info .section-desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}
.consulting-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);
}

/* Consultant personal chat card */
.consultant-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(10, 15, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.consultant-card:hover {
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 20px 45px rgba(0, 255, 136, 0.08);
}
.consultant-header {
    background: rgba(2, 2, 3, 0.6);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.consultant-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.consultant-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.consultant-active-pulse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-cyan);
    border: 2px solid #0b0f0c;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: active-pulse-anim 2s infinite;
}
@keyframes active-pulse-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}
.consultant-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.consultant-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}
.consultant-status {
    font-size: 0.75rem;
    color: var(--primary-cyan);
    font-weight: 600;
    opacity: 0.9;
}
.consultant-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.consultant-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.c-msg {
    display: flex;
    max-width: 85%;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    line-height: 1.45;
    font-size: 0.85rem;
    position: relative;
}
.c-msg-left {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border-bottom-left-radius: 2px;
}
.c-msg-right {
    align-self: flex-end;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    color: var(--text-white);
    border-bottom-right-radius: 2px;
}
.c-text {
    word-break: break-word;
}
.consultant-bonus-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px dashed #fbbf24;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.consultant-bonus-badge:hover {
    transform: translateY(-2px);
    border-color: #f59e0b;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.15);
}
.consultant-bonus-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.bonus-badge-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
}
.bonus-badge-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}


/* --- 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-carousel {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    position: relative;
    padding: 0 1rem;
}
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews-carousel .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}
.carousel-dots {
    display: flex;
    gap: 0.5rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background: var(--primary-cyan);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--primary-cyan);
}
.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,
.valoro-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.08);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
}
.form-group select option {
    background: #1e293b;
    color: #ffffff;
}
.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.08);
    border: 1px solid var(--border-color);
    padding: 0.85rem 0.5rem !important;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.country-code-select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
}
.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: rgba(15, 23, 42, 0.15);
    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: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3172e2;
    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, 0, 0, 0.25);
}
.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(255, 255, 255, 0.12);
    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.08);
    align-self: flex-start;
    border-top-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-msg.user {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    align-self: flex-end;
    border-top-right-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* 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(255, 255, 255, 0.05);
}
.quick-reply-btn {
    background: rgba(255, 255, 255, 0.08);
    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(255, 255, 255, 0.12);
}
.chat-footer form {
    display: flex;
    gap: 0.5rem;
}
.chat-footer input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    color: #ffffff;
    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-proposition {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hero-bullets {
        align-items: flex-start;
        display: inline-flex;
        margin: 0 auto 1.25rem auto;
        text-align: left;
    }
    .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;
    }
    .consulting-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    .consulting-info {
        text-align: center;
        align-items: center;
    }
    .perk-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .consulting-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: 991px) {
    .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-intro {
        font-size: 0.95rem;
    }
    .hero-outro {
        font-size: 0.9rem;
    }
    .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;
        margin-right: 0;
    }
    .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;
    }
}

/* ==========================================================================
   Opportunity Section Styles (Veltrix Design Replicated)
   ========================================================================== */
.opportunity-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 1px solid var(--border-color);
}

.opportunity-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.opportunity-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.opp-info-title {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opp-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.opp-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.opp-feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-white);
}

.opp-feature-icon-wrapper.green-glow {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}

.opp-feature-icon-wrapper.cyan-glow {
    border-color: rgba(0, 176, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 176, 255, 0.15);
    color: var(--primary-cyan);
}

.opp-perk-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.4rem;
}

/* Comparison Grid Styling */
.opp-comparison-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.opp-card {
    flex: 1;
    background: rgba(13, 13, 13, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    transition: all 0.3s ease;
}

.opp-card-today {
    border-color: rgba(255, 255, 255, 0.1);
}

.opp-card-future {
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.02);
}

.opp-card-future.pulse-green-border {
    animation: greenPulseBorder 3s infinite ease-in-out;
}

@keyframes greenPulseBorder {
    0%, 100% { border-color: rgba(0, 255, 136, 0.25); box-shadow: 0 0 15px rgba(0, 255, 136, 0.05); }
    50% { border-color: rgba(0, 255, 136, 0.65); box-shadow: 0 0 30px rgba(0, 255, 136, 0.2); }
}

.opp-card-tag {
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.4rem;
    width: 100%;
}

.opp-card-tag.highlight-green {
    color: var(--accent-green);
    border-bottom-color: rgba(0, 255, 136, 0.1);
}

.opp-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.opp-card-value {
    font-size: 2.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.opp-card-value.text-green {
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Banknotes Stack Illustration CSS */
.banknotes-container {
    width: 120px;
    height: 60px;
    position: relative;
    margin-top: 10px;
}

.banknote {
    width: 90px;
    height: 46px;
    border-radius: 4px;
    position: absolute;
    bottom: 5px;
    left: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Beautiful pure CSS styling of the bank bills */
.bill-200 {
    /* €200 Note has yellow/brown tint */
    background: linear-gradient(135deg, #dfc66d 0%, #a88e36 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 5px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 222, 110, 0.3);
}

.bill-500 {
    /* €500 Note has premium purple tint */
    background: linear-gradient(135deg, #cfb7e6 0%, #684a8c 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 5px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(214, 185, 242, 0.3);
}

/* Custom decoration lines on banknotes to look realistic */
.banknote::before {
    content: '€';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.banknote::after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    pointer-events: none;
}

/* Stacking 3D positioning */
.bill-stack-1 { transform: rotate(-5deg) translateZ(0); }
.bill-stack-2 { transform: rotate(8deg) translate(5px, -6px) translateZ(1px); }
.bill-stack-3 { transform: rotate(-3deg) translate(-3px, -12px) translateZ(2px); }
.bill-stack-4 { transform: rotate(12deg) translate(8px, -18px) translateZ(3px); }
.bill-stack-5 { transform: rotate(-1deg) translate(1px, -24px) translateZ(4px); }

/* Comparison Arrow */
.opp-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    animation: oppArrowPulse 2s infinite ease-in-out;
}

@keyframes oppArrowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6)); }
}

@keyframes oppArrowPulseMobile {
    0%, 100% { transform: scale(1) rotate(90deg); opacity: 0.7; }
    50% { transform: scale(1.15) rotate(90deg); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6)); }
}

.opp-cta-container {
    text-align: center;
    margin-top: 3.5rem;
}

.opp-cta-btn {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 1.4rem 4.5rem;
    border-radius: 12px;
    background: #ffffff;
    background-size: 200% auto;
    color: #3172e2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulseButton 2s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate3d(0, 0, 0);
    text-transform: uppercase;
}

.opp-cta-btn:hover {
    transform: translateY(-4px) scale(1.04) !important;
    background-position: right center;
    color: #3172e2;
    background: #f8fafc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.opp-cta-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

@keyframes oppCtaGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3), 0 0 30px rgba(0, 240, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.6), 0 0 50px rgba(0, 240, 255, 0.3), 0 0 70px rgba(138, 43, 226, 0.3);
    }
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}


/* Responsive Overrides */
@media (max-width: 991px) {
    .opportunity-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .opportunity-visual {
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .opportunity-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .opp-info-title {
        font-size: 1.65rem;
    }
    
    .opp-comparison-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .opp-arrow-wrapper {
        animation: oppArrowPulseMobile 2s infinite ease-in-out;
    }
    
    .opp-arrow-icon {
        transform: none;
        transform-origin: center;
        transform-box: fill-box;
    }
    
    .opp-card {
        width: 100%;
        min-height: 250px;
    }
    
    .opp-cta-btn {
        width: 100%;
        padding: 1.3rem 1.5rem;
        font-size: 1.1rem;
        white-space: normal;
        line-height: 1.4;
    }
}

/* Custom Multi-Form Layout Upgrades */
.hero-signup-wrapper {
    max-width: 500px;
    padding: 2rem !important;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.mid-signup-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 15, 30, 0.4) 100%);
    overflow: hidden;
}

.mid-signup-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.mid-signup-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.mid-signup-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mid-signup-title {
    font-size: 2.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.mid-signup-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.mid-signup-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.mid-signup-bullets .bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.mid-signup-bullets .bullet-icon {
    color: var(--primary-cyan);
}

@media (max-width: 991px) {
    .mid-signup-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px 25px;
    }
}

/* ==========================================================================
   10. Registration Modal Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.35); /* soft slate backdrop overlay */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}
.modal-close:hover {
    color: var(--primary-cyan);
}

