:root[data-theme="dark"] {
    --bg-main: #030712;
    --bg-surface: #0b1329;
    --bg-card: #0f172a;
    --bg-card-border: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --nav-bg: rgba(11, 19, 41, 0.85);
    --nav-border: rgba(255, 255, 255, 0.12);
    --nav-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 99, 235, 0.15);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    
    /* Gateway Card Accents */
    --border-hindi: #2563eb;
    --border-hinglish: #10b981;
    --border-english: #9333ea;
    --glow-hindi: rgba(37, 99, 235, 0.35);
    --glow-hinglish: rgba(16, 185, 129, 0.35);
    --glow-english: rgba(147, 51, 234, 0.35);
    --ambient-1: rgba(37, 99, 235, 0.12);
    --ambient-2: rgba(147, 51, 234, 0.08);
}

:root[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-border: rgba(37, 99, 235, 0.18);
    --nav-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 0 15px rgba(37, 99, 235, 0.08);
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    
    /* Gateway Card Accents */
    --border-hindi: #2563eb;
    --border-hinglish: #10b981;
    --border-english: #9333ea;
    --glow-hindi: rgba(37, 99, 235, 0.2);
    --glow-hinglish: rgba(16, 185, 129, 0.2);
    --glow-english: rgba(147, 51, 234, 0.2);
    --ambient-1: rgba(37, 99, 235, 0.05);
    --ambient-2: rgba(147, 51, 234, 0.04);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
    color: var(--text-secondary);
    background-color: var(--bg-main);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Keyboard Focus Accessibility */
a:focus-visible,
button:focus-visible,
.lang-card:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 3px;
}

.hindi-text {
    font-family: 'Tiro Devanagari Hindi', 'Plus Jakarta Sans', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    text-transform: uppercase;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    transition: color 0.3s ease;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #2563eb;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Ambient Motion Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    contain: strict;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    will-change: transform;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: var(--ambient-1);
    top: -100px;
    left: -50px;
    animation: floatOrb 18s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--ambient-2);
    bottom: 10%;
    right: -100px;
    animation: floatOrb 22s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-30px, 80px) scale(0.95); }
}

/* ==========================================================================
   3. FIXED FLOATING DEVELOPER NAVBAR
   ========================================================================== */
header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: min(1100px, calc(100% - 32px));
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--nav-border);
    border-radius: 100px;
    box-shadow: var(--nav-shadow);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    will-change: transform;
    isolation: isolate;
}

header:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.2);
}

header.nav-hidden {
    transform: translateX(-50%) translateY(-160%);
    pointer-events: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    width: 100%;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.logo:hover .logo-icon-wrapper::after {
    transform: rotate(45deg) translateY(100%);
}

.logo-text h3 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--text-primary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-text span {
    font-size: 0.68rem;
    color: #3b82f6;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
}

.nav-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.nav-right-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.05);
    border-color: #2563eb;
    color: #2563eb;
}

.theme-toggle-btn:active {
    transform: scale(0.92);
}

/* ==========================================================================
   4. HERO / WELCOME GATEWAY SECTION
   ========================================================================== */
.gateway-hero {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
    background-image: radial-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
}

.welcome-titles h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.welcome-titles h2 span {
    color: #2563eb;
    display: inline-block;
    transition: transform 0.3s ease;
}

.welcome-subtext {
    margin-top: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.language-prompt-box {
    margin: 24px auto 0;
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 8px 24px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.language-prompt-box:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.language-prompt-box p {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2563eb;
}

/* ==========================================================================
   5. LANGUAGE CARDS SECTION (3-CARDS SUPPORT)
   ========================================================================== */
.language-cards-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 60px;
}

.cards-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.lang-card {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lang-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lang-card:hover::before {
    opacity: 1;
}

/* 1. Hindi Card Hover */
.lang-card.hindi-card:hover {
    border-color: var(--border-hindi);
    transform: translateY(-8px);
    box-shadow: 0 16px 35px var(--glow-hindi);
}

/* 2. Hinglish Card Hover */
.lang-card.hinglish-card:hover {
    border-color: var(--border-hinglish);
    transform: translateY(-8px);
    box-shadow: 0 16px 35px var(--glow-hinglish);
}

/* 3. English Card Hover */
.lang-card.english-card:hover {
    border-color: var(--border-english);
    transform: translateY(-8px);
    box-shadow: 0 16px 35px var(--glow-english);
}

.lang-card:active {
    transform: translateY(-2px) scale(0.99);
}

.card-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.lang-card:hover .card-icon-box {
    transform: rotate(360deg) scale(1.08);
}

.hindi-card .card-icon-box {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.hinglish-card .card-icon-box {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 1.8rem;
}

.english-card .card-icon-box {
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #9333ea;
    font-size: 1.8rem;
}

.indian-flag-emblem {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: filter 0.3s ease;
}

.lang-card:hover .indian-flag-emblem {
    filter: drop-shadow(0 0 6px rgba(255, 153, 51, 0.5));
}

.flag-stripe { flex: 1; width: 100%; }
.stripe-saffron { background-color: #FF9933; }
.stripe-white { background-color: #FFFFFF; display: flex; align-items: center; justify-content: center; }
.stripe-green { background-color: #138808; }

.ashoka-wheel {
    width: 10px;
    height: 10px;
    border: 1px solid #000080;
    border-radius: 50%;
}

.card-heading {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.card-subname {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.card-btn {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.card-btn i {
    transition: transform 0.3s ease;
}

.lang-card:hover .card-btn i {
    transform: translateX(4px);
}

.hindi-card .card-btn { background-color: #2563eb; }
.hindi-card:hover .card-btn { background-color: #1d4ed8; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4); }

.hinglish-card .card-btn { background-color: #10b981; }
.hinglish-card:hover .card-btn { background-color: #059669; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4); }

.english-card .card-btn { background-color: #9333ea; }
.english-card:hover .card-btn { background-color: #7e22ce; box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4); }

.or-divider {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8rem;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    animation: softFloat 4s infinite ease-in-out;
}

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.or-divider:hover {
    border-color: #2563eb;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   6. AUTO-RESPONSIVE FEATURES SECTION
   ========================================================================== */
.features-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-color: var(--bg-surface);
    transition: background-color 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.feature-card {
    text-align: center;
    padding: 20px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--bg-card-border);
    background: var(--bg-card);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.f-icon-1 { background: rgba(2, 132, 199, 0.15); color: #0284c7; }
.f-icon-2 { background: rgba(5, 150, 105, 0.15); color: #059669; }
.f-icon-3 { background: rgba(124, 58, 237, 0.15); color: #7c3aed; }
.f-icon-4 { background: rgba(67, 56, 202, 0.15); color: #4338ca; }
.f-icon-5 { background: rgba(3, 105, 161, 0.15); color: #0369a1; }
.f-icon-6 { background: rgba(2, 132, 199, 0.15); color: #0284c7; }

/* ==========================================================================
   7. MY PROCESS SECTION
   ========================================================================== */
.process-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-color: var(--bg-main);
    transition: background-color 0.3s ease;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    text-align: center;
}

.step-item {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.12);
}

.step-1 .step-icon { color: #2563eb; border: 2px solid rgba(37, 99, 235, 0.3); }
.step-2 .step-icon { color: #9333ea; border: 2px solid rgba(147, 51, 234, 0.3); }
.step-3 .step-icon { color: #16a34a; border: 2px solid rgba(22, 163, 74, 0.3); }
.step-4 .step-icon { color: #ea580c; border: 2px solid rgba(234, 88, 12, 0.3); }
.step-5 .step-icon { color: #2563eb; border: 2px solid rgba(37, 99, 235, 0.3); }

.step-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.step-item p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.3;
    padding: 0 4px;
    transition: color 0.3s ease;
}

/* ==========================================================================
   8. PERMANENT BLACK FOOTER SECTION
   ========================================================================== */
footer {
    position: relative;
    z-index: 1;
    background-color: #030712 !important;
    color: #94a3b8 !important;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #1e293b;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 380px;
}

.footer-brand .logo-text h3 {
    color: #ffffff !important;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #94a3b8 !important;
    line-height: 1.5;
}

.social-icons-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons-group a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1 !important;
    font-size: 0.9rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.social-icons-group a:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: #64748b !important;
}

.made-with-love {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8 !important;
}

.made-with-love i {
    color: #ef4444;
    animation: heartBeat 1.8s infinite ease-in-out;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
}

/* ==========================================================================
   9. FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#scrollTopBtn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
    background-color: #2563eb;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop Helpers for Mobile Elements */
.card-text-wrapper {
    display: contents;
}
.desktop-br {
    display: inline;
}
.lang-card-chevron {
    display: none;
}
.card-dots-matrix {
    display: none;
}
.cta-section {
    display: none;
}
.connect-label {
    display: none;
}
.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   10. MEDIA QUERIES (Mobile Redesign - max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .desktop-br {
        display: none !important;
    }

    .cta-section {
        display: block;
    }

    .connect-label {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: #94a3b8;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    /* 1. MOBILE NAVBAR */
    header {
        top: 12px;
        width: calc(100% - 24px);
    }

    nav {
        padding: 6px 16px;
        min-height: 52px;
    }

    .logo-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .logo-text h3 {
        font-size: 0.85rem;
    }

    .logo-text span {
        font-size: 0.62rem;
    }

    .nav-status-badge {
        display: none;
    }

    .theme-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* 2. HERO GATEWAY SECTION */
    .gateway-hero {
        padding-top: 105px;
        padding-bottom: 24px;
    }

    .welcome-titles h2 {
        font-size: 1.65rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .welcome-subtext {
        font-size: 0.85rem;
        margin-top: 8px;
        padding: 0 8px;
    }

.language-prompt-box p {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

    .language-prompt-box p {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    /* 3. THREE PREMIUM HORIZONTAL LANGUAGE CARDS */
    .language-cards-section {
        padding: 10px 0 40px;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .or-divider {
        display: none !important;
    }

    .lang-card {
        width: 100%;
        display: grid !important;
        grid-template-columns: 56px 1fr 20px;
        grid-template-rows: auto auto;
        align-items: center;
        text-align: left;
        padding: 18px 16px;
        gap: 12px 12px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    .card-dots-matrix {
        display: block !important;
        position: absolute;
        left: 8px;
        top: 8px;
        width: 60px;
        height: 60px;
        background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
        background-size: 8px 8px;
        opacity: 0.4;
        pointer-events: none;
    }

    .card-icon-box {
        grid-column: 1;
        grid-row: 1;
        width: 52px;
        height: 52px;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .card-text-wrapper {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        grid-column: 2;
        grid-row: 1;
        padding-right: 4px;
    }

    .card-heading {
        font-size: 1.15rem;
        margin-bottom: 2px;
        line-height: 1.25;
    }

    .card-subname {
        font-size: 0.78rem;
        margin-bottom: 0;
    }

    .lang-card-chevron {
        display: block !important;
        grid-column: 3;
        grid-row: 1;
        color: var(--text-muted);
        font-size: 0.95rem;
        justify-self: end;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .lang-card:hover .lang-card-chevron {
        transform: translateX(3px);
        color: var(--text-primary);
    }

    .card-btn {
        grid-column: 1 / span 3;
        grid-row: 2;
        width: 100%;
        padding: 11px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        margin-top: 2px;
    }

    /* 4. WHY CHOOSE ME (2-COLUMN GRID) */
    .features-section {
        padding: 50px 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .feature-card {
        padding: 16px 10px;
        border-radius: 14px;
        background: var(--bg-card);
        border: 1px solid var(--bg-card-border);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin: 0 auto 10px;
        font-size: 1rem;
    }

    .feature-card h4 {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    /* 5. MY PROCESS (VERTICAL TIMELINE) */
    .process-section {
        padding: 50px 0;
    }

    .process-steps {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        position: relative;
        padding: 10px 0;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 50%;
        width: 2px;
        background: linear-gradient(180deg, #2563eb 0%, #9333ea 35%, #10b981 65%, #ea580c 85%, #2563eb 100%);
        transform: translateX(-50%);
        z-index: 1;
    }

    .step-item {
        position: relative;
        z-index: 2;
        width: calc(50% - 18px);
        display: flex;
        flex-direction: column;
    }

    .step-item:nth-child(odd) {
        align-self: flex-start;
        text-align: right;
        align-items: flex-end;
    }

    .step-item:nth-child(even) {
        align-self: flex-end;
        text-align: left;
        align-items: flex-start;
    }

    .step-item::after {
        content: '';
        position: absolute;
        top: 14px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        z-index: 3;
    }

    .step-item:nth-child(odd)::after {
        right: -25px;
    }

    .step-item:nth-child(even)::after {
        left: -25px;
    }

    .step-1::after { background: #2563eb; box-shadow: 0 0 10px #2563eb; }
    .step-2::after { background: #9333ea; box-shadow: 0 0 10px #9333ea; }
    .step-3::after { background: #10b981; box-shadow: 0 0 10px #10b981; }
    .step-4::after { background: #ea580c; box-shadow: 0 0 10px #ea580c; }
    .step-5::after { background: #2563eb; box-shadow: 0 0 10px #2563eb; }

    .step-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step-item h4 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .step-item p {
        font-size: 0.68rem;
        padding: 0;
        line-height: 1.3;
    }

    /* 6. MOBILE CTA SECTION */
    .cta-section {
        padding: 30px 0 50px;
    }

    .cta-card {
        position: relative;
        background: linear-gradient(135deg, #0b1329 0%, #1e1b4b 100%);
        border: 1px solid rgba(147, 51, 234, 0.4);
        border-radius: 20px;
        padding: 28px 18px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(147, 51, 234, 0.25);
        overflow: hidden;
    }

    .cta-rocket-box {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(147, 51, 234, 0.18);
        border: 1px solid rgba(147, 51, 234, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 1.5rem;
        color: #c084fc;
        box-shadow: 0 0 20px rgba(192, 132, 252, 0.35);
        animation: rocketFloat 3s infinite ease-in-out;
    }

    @keyframes rocketFloat {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-5px) scale(1.05); }
    }

    .cta-title {
        font-size: 1rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 18px;
        line-height: 1.35;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 12px 20px;
        border-radius: 30px;
        background: linear-gradient(90deg, #2563eb 0%, #9333ea 100%);
        color: #ffffff;
        font-weight: 800;
        font-size: 0.82rem;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(147, 51, 234, 0.6);
    }

    /* 7. MOBILE FOOTER */
    footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-bottom: 24px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        font-size: 0.8rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .social-icons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .social-icons-group {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-icons-group a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 18px;
        font-size: 0.75rem;
    }

    .whatsapp-float {
        padding: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float span {
        display: none;
    }

    #scrollTopBtn {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .ambient-orb { display: none; }
    .or-divider { animation: none; }
}