/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    /* === Aura Brand Design System === */
    --bg-color: #06030F;
    --surface-color: #120B21;
    --primary-purple: #6A3FCC;
    --accent-teal: #5CE1E6;
    --accent-teal-hover: #4BCDD2;
    --accent-lavender: #C4A6FF;
    --accent-mint: #00C49A;
    --text-main: #FFFFFF;
    --text-muted: #8B87A8;
    --border-color: rgba(255, 255, 255, 0.06);
    --gradient-text: linear-gradient(135deg, #5CE1E6 0%, #C4A6FF 100%);

    /* Backwards-compat aliases so existing pricing/security selectors still resolve */
    --mint-green: var(--accent-teal);
    --mint-green-hover: var(--accent-teal-hover);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* =========================================
   ANIMATED BACKGROUND BLOBS
========================================= */
.blob-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(120px);
    animation: blob-anim 9s infinite ease-in-out;
}
.blob-1 {
    width: 500px; height: 500px;
    top: -10%; left: -10%;
    background: #6A3FCC;
    opacity: 0.22;
}
.blob-2 {
    width: 400px; height: 400px;
    top: 20%; right: -10%;
    background: #5CE1E6;
    opacity: 0.13;
    animation-delay: 3s;
}
.blob-3 {
    width: 600px; height: 600px;
    bottom: -20%; left: 20%;
    background: #C4A6FF;
    opacity: 0.13;
    animation-delay: 6s;
}
@keyframes blob-anim {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -50px) scale(1.1); }
    66%  { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* All direct body children sit above the fixed blobs */
body > *:not(.blob-bg) { position: relative; z-index: 1; }

/* =========================================
   GRADIENT TEXT UTILITY
========================================= */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   SCROLL REVEAL
   NOTE: opacity/transform are intentionally NOT set here.
   The homepage (index.html) defines its own .reveal animation
   via an inline <style> block, scoping animation to marketing
   feature sections only. All other pages (legal, security,
   pricing) remain fully visible with no JS dependency.
========================================= */
.reveal {
    /* No opacity:0 — non-homepage pages must load with full visible text */
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVIGATION (GLOBAL)
========================================= */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 5%; background: rgba(6, 3, 15, 0.80); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.nav-left { display: flex; align-items: center; gap: 12px; text-decoration: none; }
/* Logo — used as <img class="logo-img"> */
.logo-img { width: 44px; height: 44px; object-fit: contain; }
/* Legacy .logo-icon kept for any remaining CSS-only uses */
.logo-icon { width: 44px; height: 44px; background-image: url('images/logo_aura.png'); background-size: contain; background-position: center; background-repeat: no-repeat; }
.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 50%, #5CE1E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-right > a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.nav-right > a:hover { color: var(--mint-green); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-divider { width: 1px; height: 24px; background-color: var(--border-color); }

/* ── Hamburger (secondary pages) ── */
.nav-hamburger {
    display: none;
    background: none; border: none;
    color: var(--text-muted); cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.nav-hamburger:hover { color: var(--accent-teal); }

.nav-mobile-overlay {
    display: none;
    position: fixed !important; inset: 0; z-index: 9999 !important;
    background: rgba(18, 9, 36, 0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-inner {
    display: flex; flex-direction: column; align-items: center; gap: 32px;
    position: relative;
}
.nav-mobile-close {
    position: fixed; top: 22px; right: 22px;
    background: rgba(255,255,255,0.06); border: none; border-radius: 50%;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-mobile-overlay a {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px;
    color: rgba(255,255,255,0.85); text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-mobile-overlay a:hover { color: var(--accent-teal); }
/* Footer links row: wraps when items don't fit (e.g. long Romanian strings) */
.nav-mobile-inner > div {
    flex-wrap: wrap !important;
    justify-content: center !important;
    max-width: 90vw;
}
/* Footer links use small muted style, not the large nav link style */
.nav-mobile-inner > div a {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.35) !important;
}
.nav-mobile-lang {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 8px 16px;
    color: #fff; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; outline: none;
}

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-back-home { display: none !important; }
}
.login-btn { color: var(--text-main); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.login-btn:hover { color: var(--mint-green); }

.btn-primary { padding: 16px 32px; border-radius: 12px; border: none; background-color: var(--mint-green); color: #000; font-weight: 600; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 20px rgba(0, 229, 143, 0.3); text-decoration: none; }
.btn-primary:hover { background-color: var(--mint-green-hover); transform: translateY(-2px); }

/* =========================================
   LANDING PAGE (.hero, .features)
========================================= */
.hero { text-align: center; padding: 100px 5% 60px; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.hero h1 span { color: var(--mint-green); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }

.waitlist-form { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; }
input[type="email"] { padding: 16px 20px; border-radius: 12px; border: 1px solid var(--border-color); background-color: var(--surface-color); color: var(--text-main); width: 300px; outline: none; }
input[type="email"]:focus { border-color: var(--mint-green); }

.feature-split { display: flex; align-items: center; justify-content: space-between; padding: 80px 5%; max-width: 1200px; margin: 0 auto; gap: 60px; }
.feature-split.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.feature-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 24px; }
.feature-image { flex: 1; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 24px; height: 500px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   FOOTERS
========================================= */
.footer-main { padding: 60px 5%; border-top: 1px solid rgba(255, 255, 255, 0.06); margin-top: 60px; display: flex; justify-content: space-between; max-width: 1200px; margin: 60px auto 0; }
.footer-links { display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--text-main); margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--mint-green); }

.footer-simple {
    text-align: center;
    padding: 48px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* =========================================
   LEGAL / POLICY PAGES
========================================= */
.policy-container { max-width: 800px; margin: 60px auto 100px; padding: 0 5%; }
.policy-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -2px;
    line-height: 1.1;
}
.last-updated {
    display: inline-block;
    background: rgba(92, 225, 230, 0.08);
    border: 1px solid rgba(92, 225, 230, 0.2);
    color: var(--accent-teal);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 44px;
}
.policy-container h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
    padding-left: 14px;
    border-left: 2px solid var(--accent-teal);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Body text on legal pages uses high-contrast color to meet WCAG AA (≥ 4.5:1) */
.policy-container p { color: #D8D5E8; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }
.policy-container ul { margin-left: 20px; margin-bottom: 24px; color: #D8D5E8; font-size: 0.95rem; }
.policy-container li { margin-bottom: 12px; line-height: 1.7; color: #D8D5E8; }
.policy-container strong { color: var(--text-main); }
.highlight-box {
    background: rgba(106, 63, 204, 0.08);
    border-left: 3px solid var(--accent-teal);
    padding: 20px 20px 20px 24px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
}
.highlight-box p { margin-bottom: 0; color: var(--text-main); }

/* =========================================
   SECURITY PAGE
========================================= */
.header { text-align: center; padding: 80px 20px 40px; max-width: 800px; margin: 0 auto; }
.header h1 { font-size: 3rem; margin-bottom: 16px; letter-spacing: -1px; }
.header p { color: var(--text-muted); font-size: 1.1rem; }
.content-container { max-width: 1000px; margin: 0 auto 100px; padding: 0 5%; }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.security-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.security-card:hover {
    border-color: rgba(92, 225, 230, 0.25);
    box-shadow: 0 8px 40px rgba(92, 225, 230, 0.08);
}
.security-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 225, 230, 0.08);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--accent-teal);
    flex-shrink: 0;
}
.security-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.security-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* =========================================
   PRICING PAGE
========================================= */
.pricing-header { text-align: center; padding: 40px 20px 40px; }
.pricing-header h1 { font-size: 3rem; margin-bottom: 16px; letter-spacing: -1px; }
.pricing-header p { color: var(--text-muted); font-size: 1.2rem; }
.carousel-wrapper { position: relative; max-width: 1200px; margin: 0 auto 100px; padding: 0 5%; display: flex; align-items: center; }
.carousel-btn { background: var(--surface-color); border: 1px solid var(--border-color); color: var(--text-main); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: 0.3s; position: absolute; font-size: 1.2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.carousel-btn:hover { border-color: var(--mint-green); color: var(--mint-green); transform: scale(1.05); }
#btn-left { left: 0; }
#btn-right { right: 0; }
.pricing-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 20px 0 40px; width: 100%; scrollbar-width: none; -ms-overflow-style: none; }
.pricing-carousel::-webkit-scrollbar { display: none; }
.tier-card { 
    background: var(--surface-color); 
    border: 1px solid var(--border-color); 
    border-radius: 20px; 
    padding: 30px 24px; /* Reduced from 40px 30px */
    display: flex; 
    flex-direction: column; 
    position: relative; 
    flex: 0 0 320px; 
    scroll-snap-align: center; 
    transition: transform 0.3s, border-color 0.3s; 
}
.tier-card.highlight {
    border-color: rgba(92, 225, 230, 0.4);
    box-shadow: 0 0 50px rgba(92, 225, 230, 0.12), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    background: rgba(106, 63, 204, 0.12);
}
.badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-text);
    color: #0D0922;
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.tier-name { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.tier-price { font-size: 3rem; font-weight: 800; margin-bottom: 8px; }
.tier-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.tier-desc { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-bottom: 20px; /* Reduced from 30px */
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 20px; /* Reduced from 30px */
}
.feature-list { list-style: none; margin-bottom: 30px; flex: 1; }
.feature-list li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 12px; /* Reduced from 16px */
    font-size: 0.9rem; /* Slightly smaller text */
    color: var(--text-main); 
    line-height: 1.3;
}
.feature-list li.disabled { color: var(--text-muted); opacity: 0.5; }
.icon-check { color: var(--mint-green); font-weight: bold; }
.icon-cross { color: #FF4D4D; font-weight: bold; }
.btn-subscribe { 
    width: 100%; 
    padding: 14px 8px; /* Reduced padding */
    border-radius: 12px; 
    border: 1px solid var(--mint-green); 
    background: transparent; 
    color: var(--mint-green); 
    font-weight: 600; 
    font-size: 0.9rem; /* Reduced font size to fit Romanian text */
    cursor: pointer; 
    transition: 0.3s; 
    text-align: center; 
    text-decoration: none; 
    white-space: nowrap; /* Forces 1 line */
    overflow: hidden;
    text-overflow: ellipsis;
}
.tier-card.highlight .btn-subscribe { background: var(--accent-teal); color: #0D0922; }
.btn-subscribe:hover { background: var(--accent-teal); color: #0D0922; }

/* =========================================
   COOKIE BANNER
========================================= */
.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background-color:var(--surface-color);border-top:1px solid #3A3555;padding:20px 5%;display:flex;justify-content:space-between;align-items:center;z-index:9999;transform:translateY(100%);transition:transform .4s;box-shadow:0 -10px 40px rgba(0,0,0,.5);}.cookie-banner.show{transform:translateY(0);}.cookie-content p{font-size:.9rem;color:var(--text-muted);max-width:800px;}.cookie-content a{color:var(--mint-green);text-decoration:none;}.cookie-buttons{display:flex;gap:12px;margin-left:20px;}.btn-reject{background-color:transparent;border:1px solid #3A3555;color:var(--text-main);padding:12px 24px;border-radius:8px;cursor:pointer;}.btn-accept{background-color:var(--mint-green);border:none;color:#000;font-weight:600;padding:12px 24px;border-radius:8px;cursor:pointer;}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .nav-links, .nav-right { gap: 24px; }
    .carousel-btn { display: none; }
    .pricing-carousel { padding-left: 5%; padding-right: 5%; }
    .tier-card { flex: 0 0 85%; max-width: 350px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-divider { display: none; } /* Replaced by hamburger menu on mobile */
    .feature-split, .feature-split.reverse { flex-direction: column; text-align: center; }
    .footer-main { flex-direction: column; text-align: center; gap: 40px; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .logo-left { justify-content: center; }
}

@media (max-width: 480px) {
    .pricing-header h1 { font-size: 2.2rem; }
    .tier-card { flex: 0 0 90%; }
    .waitlist-form { flex-direction: column; align-items: center; }
    input[type="email"] { width: 100%; }
}

/* =========================================
   COOKIE BANNER PREFERENCES (Add to bottom)
========================================= */
.btn-manage { background-color: transparent; border: 1px solid var(--mint-green); color: var(--mint-green); padding: 12px 24px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.btn-manage:hover { background-color: rgba(0, 229, 143, 0.1); }

.cookie-preferences { margin-top: 16px; border-top: 1px solid var(--border-color); padding-top: 16px; display: flex; flex-direction: column; gap: 16px; }
.cookie-option label { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text-main); cursor: pointer; }
.cookie-option p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; margin-left: 26px; line-height: 1.4; }
.cookie-option input[type="checkbox"] { accent-color: var(--mint-green); width: 16px; height: 16px; cursor: pointer; }
.cookie-option input[type="checkbox"]:disabled { filter: grayscale(100%); opacity: 0.5; cursor: not-allowed; }

/* =========================================
   LANGUAGE SWITCHER
========================================= */
.lang-switch {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.lang-switch:hover, .lang-switch:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 2px rgba(92, 225, 230, 0.12);
}

.lang-switch option {
    background-color: var(--surface-color);
    color: var(--text-main);
}

/* =========================================
   STORE BADGES & RATING
========================================= */
.store-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
    margin: 32px 0 16px; 
    flex-wrap: wrap; 
}

.store-badge { 
    display: inline-block; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    /* Adds a subtle shadow behind the SVG */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); 
}

.store-badge:hover { 
    transform: translateY(-3px); 
}

.store-badge img { 
    height: 60px; /* Standard height for Apple/Google compliance */
    width: auto; 
    display: block; 
}

.rating-section { 
    text-align: center; 
    margin-bottom: 60px; 
}

/* =========================================
   DYNAMIC RATING STARS
========================================= */
.rating-section { text-align: center; margin-bottom: 60px; }

.stars-outer {
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--border-color); /* The empty star color */
}

.stars-outer::before {
    content: "★★★★★";
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #00E58F; /* The filled Aura mint green color */
    transition: width 0.4s ease-in-out;
}

.stars-inner::before {
    content: "★★★★★";
}

/* =========================================
   HERO IMAGE RE-POSITIONING
========================================= */
.hero-image-container { max-width: 800px; margin: 40px auto 0; padding: 0 5%; }
.hero-image-container img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 1px solid var(--border-color); }

/* =========================================
   MOBILE HAMBURGER MENU OVERLAY
========================================= */
.mobile-menu-btn { 
    display: none; 
    background: transparent; 
    border: 1px solid var(--mint-green); 
    color: var(--mint-green); 
    padding: 8px 16px; 
    border-radius: 8px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.2s; 
}

.mobile-menu-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: var(--bg-color); /* Solid background for cleaner look */
    z-index: 9999; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; /* Align to top like Spendee */
    padding-top: 120px; /* Push down past the navbar area */
    gap: 32px; /* Tighter spacing */
    transform: translateY(-100%); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    opacity: 0; 
    pointer-events: none; 
}

.mobile-menu-overlay.open { 
    transform: translateY(0); 
    opacity: 1; 
    pointer-events: all; 
}

.mobile-menu-overlay a { 
    color: var(--text-main); 
    text-decoration: none; 
    font-size: 1.1rem; /* Much smaller, refined font size */
    font-weight: 500; 
    transition: color 0.2s; 
}

.mobile-menu-overlay a:hover { 
    color: var(--mint-green); 
}

/* Make the close button look exactly like the open button */
.mobile-menu-close { 
    position: absolute; 
    top: 24px; 
    right: 5%; 
    background: transparent; 
    border: 1px solid var(--mint-green); 
    color: var(--mint-green); 
    padding: 8px 16px; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 0.9rem;
    cursor: pointer; 
}

/* Style the login link as a solid button */
.mobile-login-btn {
    margin-top: 20px;
    background-color: var(--mint-green);
    color: #000 !important;
    padding: 12px 40px;
    border-radius: 24px;
    font-weight: 600 !important;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 229, 143, 0.2);
}

/* =========================================
   RESPONSIVE DESIGN & MOBILE FIXES
========================================= */

@media (max-width: 1024px) {
    /* Tablet */
    .nav-links, .nav-divider { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-right { gap: 16px; }
    .carousel-btn { display: none; }
    .pricing-carousel { padding-left: 5%; padding-right: 5%; }
    .tier-card { flex: 0 0 85%; max-width: 350px; }
}

@media (max-width: 768px) {
    /* Standard Mobile */
    
    /* Force hide desktop buttons in navbar */
    .nav-right .login-btn, 
    .nav-right .btn-primary, 
    .nav-right select { 
        display: none !important; 
    }

    /* Typography Scaling */
    .hero { padding: 40px 5%; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; word-break: break-word; line-height: 1.1; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
    .pricing-header h1, .header h1, .policy-container h1 { font-size: 2.2rem; word-break: break-word; line-height: 1.2; }
    
    /* Feature Sections */
    .feature-split, .feature-split.reverse { flex-direction: column; text-align: center; gap: 40px; padding: 60px 5%; }
    .feature-text h2 { font-size: 2rem; }
    
    /* Feature Images Container Fix */
    .feature-image { 
        height: auto; 
        width: 100%; 
        padding: 40px 20px; 
        aspect-ratio: 1 / 1; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }
    
    /* Forms & Footers */
    .waitlist-form { flex-direction: column; width: 100%; }
    .waitlist-form input[type="email"], .waitlist-form button { width: 100%; }
    
    .footer-main { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 40px; 
    }
    
    .footer-links { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 40px; 
        width: 100%; 
    }
    
    .footer-col { 
        align-items: center; 
        width: 100%; 
    }
    
    .logo-left { 
        justify-content: center; 
    }
}

@media (max-width: 480px) {
    /* Small Mobile (iPhone SE, etc.) */
    
    .logo-text { font-size: 1.4rem; }
    .logo-icon { width: 36px; height: 36px; }
    
    .hero h1 { font-size: 2rem; }
    .pricing-header h1, .policy-container h1, .header h1 { font-size: 1.8rem; }
    
    .tier-card { padding: 30px 20px; flex: 0 0 90%; }
    .tier-price { font-size: 2.5rem; }

    /* =========================================
       COOKIE BANNER MOBILE FIXES
    ========================================= */
    .cookie-banner { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 24px 5%; 
    }
    
    .cookie-content { 
        width: 100%; 
        margin-bottom: 20px; 
    }
    
    .cookie-option { 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        margin-bottom: 12px; 
    }
    
    .cookie-option label { margin-bottom: 4px; }
    .cookie-option p { margin-left: 26px; margin-top: 0; line-height: 1.4; } 
    
    #cookieActionButtons, #cookieSaveButtons { 
        width: 100%; 
        flex-direction: column; 
        margin-left: 0; 
        gap: 10px; 
    }
    
    #cookieActionButtons button, #cookieSaveButtons button { 
        width: 100%; 
        margin: 0; 
    }
    
    /* Store Badges Stacking */
    .store-buttons { 
        flex-direction: column; 
        width: 100%; 
        align-items: center; 
        gap: 16px; 
    }
    
    .store-badge { 
        width: auto; 
    }
    
    .store-badge img {
        width: 200px; /* Keeps them beautifully large on mobile */
    }
}

/* =========================================
   LANGUAGE TOGGLE — GLOBE + CHEVRON WRAPPER
========================================= */
.lang-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.lang-globe-icon {
    position: absolute;
    left: 10px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}
.lang-chevron-icon {
    position: absolute;
    right: 10px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.lang-wrapper .lang-switch {
    padding-left: 30px;
    padding-right: 28px;
}
.lang-wrapper .lang-switch:hover,
.lang-wrapper .lang-switch:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 2px rgba(92, 225, 230, 0.12);
}

/* =========================================
   ENTER AURA CTA — SECONDARY PAGE NAVBARS
========================================= */
.btn-enter-aura {
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff;
    color: #000 !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    white-space: nowrap;
}
.btn-enter-aura:hover {
    background: var(--accent-teal);
    box-shadow: 0 0 20px rgba(92, 225, 230, 0.4);
    transform: translateY(-1px);
}
.mobile-cta-btn {
    padding: 12px 40px;
    background: var(--accent-teal);
    color: #0D0922 !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none;
    transition: opacity 0.2s;
}
.mobile-cta-btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
    .btn-enter-aura { display: none; }
    .lang-wrapper { display: none; }
}

/* =========================================
   FULL FOOTER — SECONDARY PAGES
========================================= */
.footer-full {
    padding: 60px 5% 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.footer-full-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    max-width: 1200px;
}
.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
}
.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 240px;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    display: block;
}
.footer-full .footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-full .footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s;
    width: fit-content;
}
.footer-full .footer-col a:hover { color: #fff; }
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    max-width: 1200px;
}
@media (max-width: 768px) {
    .footer-full-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-copy {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =========================================
   SECURITY PAGE CTA SECTION
========================================= */
.security-cta {
    text-align: center;
    max-width: 600px;
    margin: 80px auto 40px;
    padding: 60px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.security-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.security-cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.6;
}
.security-cta-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   FAQ ACCORDION — PRICING PAGE
========================================= */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 5%;
}
.faq-section > h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 40px;
    line-height: 1.2;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    gap: 16px;
    transition: color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-question:hover { color: var(--accent-teal); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 20px;
}

/* =========================================
   LEGAL TABLE OF CONTENTS
========================================= */
.toc-box {
    background: rgba(106, 63, 204, 0.06);
    border: 1px solid rgba(92, 225, 230, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 48px;
}
.toc-box h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-teal);
    margin-bottom: 14px;
}
.toc-box ol {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toc-box ol li { list-style: decimal; }
.toc-box a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.toc-box a:hover { color: var(--accent-teal); }

/* =========================================
   LEGAL CROSS-LINKS
========================================= */
.legal-crosslinks {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 32px;
}
.legal-crosslinks h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.legal-crosslinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.legal-crosslinks li { margin: 0; }
.legal-crosslinks a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}
.legal-crosslinks a:hover {
    border-color: rgba(92, 225, 230, 0.3);
    color: var(--accent-teal);
}

/* =========================================
   PRINT STYLES (LEGAL PAGES)
========================================= */
@media print {
    body { background: #fff !important; color: #000 !important; }
    .navbar, .nav-mobile-overlay, .blob-bg, .blob,
    .btn-enter-aura, .security-cta, .toc-box .toc-box,
    .legal-crosslinks { display: none !important; }
    .footer-full { border-top: 1px solid #ccc !important; background: transparent !important; }
    .footer-full .footer-brand-tagline,
    .footer-full .footer-col a,
    .footer-copy { color: #555 !important; }
    .policy-container h1,
    .policy-container h2,
    .policy-container p,
    .policy-container li,
    .policy-container strong { color: #000 !important; -webkit-text-fill-color: #000 !important; }
    .text-gradient,
    .policy-container h2 {
        -webkit-text-fill-color: #000 !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
    }
    .logo-text { -webkit-text-fill-color: #000 !important; background: none !important; }
    .policy-container { margin: 0 !important; padding: 20px !important; max-width: 100% !important; }
    .last-updated { background: none !important; border: 1px solid #999 !important; color: #444 !important; }
    .highlight-box { background: #f5f5f5 !important; border-left-color: #333 !important; }
    .toc-box { background: #f9f9f9 !important; border-color: #ccc !important; }
    .toc-box h3, .toc-box a { color: #333 !important; }
}