/* ============================================
   US MedConnect - Creative Premium Design
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --white: #ffffff;
    --gold: #f59e0b;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe57;
    --rose-500: #f43f5e;

    /* Gradients — clean, warm navy tones */
    --gradient-primary: linear-gradient(135deg, #0e7490, #0369a1);
    --gradient-hero: linear-gradient(160deg, #020617 0%, #0c1a2e 40%, #0f2b3f 100%);
    --gradient-text: linear-gradient(135deg, #67e8f9, #38bdf8);
    --gradient-glow: linear-gradient(135deg, #0891b2, #0284c7);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    --gradient-cta: linear-gradient(160deg, #0c1a2e 0%, #0e3348 50%, #0f2b3f 100%);

    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-gap: clamp(5rem, 10vw, 8rem);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --r-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --shadow-glow-blue: 0 0 40px rgba(14,116,144,0.3);
    --shadow-glow-cyan: 0 0 40px rgba(6,182,212,0.3);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }


/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,116,144,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (max-width: 768px) { .cursor-glow { display: none; } }


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-left"].visible { transform: translateX(0); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-right"].visible { transform: translateX(0); }
[data-animate="scale-in"] { transform: scale(0.92); }
[data-animate="scale-in"].visible { transform: scale(1); }


/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0891b2;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.section-eyebrow-light { color: #67e8f9; }
.section-eyebrow-light::before { background: var(--cyan-400); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-light {
    background: linear-gradient(135deg, var(--white), #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--slate-500);
    max-width: 580px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-desc { margin: 0 auto; }


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: all 0.4s var(--ease);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-image {
    height: 100px;
    width: auto;
    transition: transform 0.3s var(--ease), filter 0.4s var(--ease);
    /* Make logo white on dark hero background */
    filter: brightness(0) invert(1);
}
.header.scrolled .logo-image {
    /* Restore original dark logo on white scrolled header */
    filter: none;
}
.logo:hover .logo-image { transform: scale(1.03); }

/* Nav non-scrolled state: white text on dark hero */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}
.header.scrolled .nav a {
    color: var(--slate-600);
}
.nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}
.nav a:hover { color: var(--white); }
.header.scrolled .nav a:hover { color: #0e7490; }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--white); }
.header.scrolled .nav a.active { color: #0e7490; }

.nav-cta {
    background: var(--whatsapp);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.8125rem !important;
    transition: all 0.3s var(--ease) !important;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--whatsapp-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.header.scrolled .mobile-toggle span {
    background: var(--slate-800);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
    background: var(--gradient-hero);
}
.hero > .container {
    width: 100%;
}

/* Floating organic shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,116,144,0.3), transparent 70%);
    top: -200px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}
.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float2 15s ease-in-out infinite;
}
.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,116,144,0.2), transparent 70%);
    top: 50%;
    left: 40%;
    animation: float3 18s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -40px); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, -30px); } }

/* Grid pattern overlay */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Hero Content — left side, text over the dark hero */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 50%;
    padding-right: 2rem;
}

.hero-badge-row { margin-bottom: 1.5rem; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--r-full);
    letter-spacing: 0.02em;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.hero-title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}
.hero-trust strong { color: var(--white); }
.hero-trust-avatars {
    display: flex;
}
.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--slate-900);
    margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }

/* Hero Image — pinned to the right edge of the viewport */
.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.hero-image-glow {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 70%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(14,116,144,0.2), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.hero-doctor-img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: 88%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    /* Seamless blend: fade top, left, and bottom edges into the dark hero */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
                        linear-gradient(to right, transparent 0%, black 25%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
                linear-gradient(to right, transparent 0%, black 25%, black 100%);
    mask-composite: intersect;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}
.btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-glow {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(14,116,144,0.35);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(14,116,144,0.45);
}
.btn-glow:hover::before { opacity: 1; }

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: #0e7490;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-full { width: 100%; justify-content: center; }


/* ============================================
   STATS MARQUEE
   ============================================ */
.stats-marquee {
    background: var(--slate-100);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}
.stats-marquee::before,
.stats-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.stats-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--slate-100), transparent);
}
.stats-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--slate-100), transparent);
}

.marquee-track { overflow: hidden; }
.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.marquee-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 3ch;
    text-align: right;
}
.marquee-plus {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #0891b2;
    flex-shrink: 0;
}
.marquee-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.marquee-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--slate-300);
    flex-shrink: 0;
}


/* ============================================
   ABOUT / FOUNDER SECTION
   ============================================ */
.about-section {
    background: var(--white);
}
.about-layout {
    max-width: 800px;
    margin: 0 auto;
}
.about-bio {
    margin-bottom: 2rem;
}
.about-bio p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--slate-600);
    margin-bottom: 1rem;
}
.about-bio p:last-child { margin-bottom: 0; }

.about-affiliations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.affiliation-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14,116,144,0.06);
    border: 1px solid rgba(14,116,144,0.12);
    border-radius: var(--r-full);
    color: #0e7490;
    font-size: 0.8125rem;
    font-weight: 600;
}



/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    background: var(--white);
}

/* Program Tabs */
.program-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 0.375rem;
    background: var(--white);
    border-radius: var(--r-full);
    border: 1px solid var(--slate-200);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.program-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--r-full);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.program-tab:hover {
    color: var(--slate-700);
    background: var(--slate-50);
}
.program-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(14,116,144,0.3);
}
.program-tab svg {
    width: 18px;
    height: 18px;
}

/* Program Panels */
.program-panels { position: relative; }
.program-panel {
    display: none;
    animation: panelFadeIn 0.4s var(--ease-out);
}
.program-panel.active { display: block; }
@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 2.5rem;
    background: var(--white);
    border-radius: var(--r-2xl);
    border: 1px solid var(--slate-200);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.panel-badge-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.panel-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: var(--r-full);
    background: rgba(14,116,144,0.06);
    color: #0e7490;
}
.panel-badge-specialty {
    background: rgba(243, 63, 94, 0.08);
    color: var(--rose-500);
}
.panel-badge-remote {
    background: rgba(20, 184, 166, 0.08);
    color: var(--teal-500);
}
.panel-badge-location {
    background: var(--slate-100);
    color: var(--slate-500);
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.panel-desc {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Activities Grid */
.panel-activities { margin-bottom: 1.5rem; }
.panel-activities h4 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 1rem;
}
.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: var(--slate-50);
    border-radius: var(--r-md);
    font-size: 0.875rem;
    color: var(--slate-700);
    transition: all 0.2s var(--ease);
}
.activity-item:hover {
    background: rgba(14,116,144,0.06);
}
.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: rgba(14,116,144,0.06);
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.activity-icon-heart {
    background: rgba(244, 63, 94, 0.08);
    color: var(--rose-500);
}
.activity-icon-remote {
    background: rgba(20, 184, 166, 0.08);
    color: var(--teal-500);
}

.panel-conditions {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: var(--slate-50);
    border-radius: var(--r-md);
    border-left: 3px solid var(--cyan-400);
}
.panel-conditions p {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.panel-note {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.7;
    font-style: italic;
}
.panel-note svg {
    flex-shrink: 0;
    color: var(--slate-400);
    margin-top: 2px;
}

/* Sidebar Card */
.sidebar-card {
    background: var(--slate-50);
    border-radius: var(--r-xl);
    padding: 2rem;
    border: 1px solid var(--slate-200);
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-price {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--slate-200);
}
.price-currency {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-400);
    vertical-align: top;
    line-height: 1.4;
}
.price-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.03em;
    line-height: 1;
}
.price-duration {
    font-size: 0.875rem;
    color: var(--slate-400);
    font-weight: 500;
}
.price-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-600);
}

.sidebar-schedule h4 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}
.schedule-item:last-child { margin-bottom: 0; }
.schedule-days {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}
.schedule-time {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.sidebar-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-600);
}
.type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.type-dot-onsite {
    background: var(--green-500);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}
.type-dot-remote {
    background: var(--teal-500);
    box-shadow: 0 0 6px rgba(20, 184, 166, 0.4);
}


/* ============================================
   DOCUMENTS & VISA INFO
   ============================================ */
.docs-visa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-2xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}
.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    background: rgba(14,116,144,0.06);
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.docs-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.docs-checklist li {
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.5;
}
.docs-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(14,116,144,0.06);
}
.docs-checklist li::after {
    content: '\2713';
    position: absolute;
    left: 3.5px;
    top: 4px;
    font-size: 0.6rem;
    color: #0891b2;
    font-weight: 700;
}
.docs-checklist li em {
    font-style: normal;
    font-weight: 600;
    color: #0e7490;
}

.docs-footnote {
    background: rgba(14,116,144,0.06);
    border-radius: var(--r-md);
    padding: 1rem;
}
.docs-footnote p {
    font-size: 0.8125rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}
.docs-footnote p:last-child { margin-bottom: 0; }

.visa-intro {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.visa-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.visa-two-col h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.75rem;
}
.visa-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.visa-list li {
    padding-left: 1rem;
    position: relative;
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}
.visa-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan-400);
}
.visa-disclaimer {
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.6;
    font-style: italic;
    padding: 0.75rem 1rem;
    background: var(--slate-50);
    border-radius: var(--r-sm);
    border-left: 3px solid var(--gold);
}


/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section {
    background: var(--slate-100);
}

.process-track {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 32px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}
.process-line-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 2.8s var(--ease-out);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.7s var(--ease);
    position: relative;
}
.step-circle span {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-400);
    transition: color 0.7s var(--ease);
}

.process-step.active .step-circle {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(14,116,144,0.3);
    transform: scale(1.1);
}
.process-step.active .step-circle span { color: var(--white); }

.step-info h3 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.375rem;
}
.step-info p {
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.5;
}


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    background: var(--slate-100);
}

.benefits-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-tile {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-2xl);
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.benefit-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.benefit-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.benefit-tile:hover::before { transform: scaleX(1); }

.benefit-tile-large {
    grid-column: span 2;
}

.benefit-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    background: rgba(14,116,144,0.06);
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--ease);
}
.benefit-tile:hover .benefit-tile-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.benefit-tile h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}
.benefit-tile p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.65;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--slate-100);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-2xl);
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-200);
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-800);
}
.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--slate-400);
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--slate-100);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
    align-items: start;
}

.faq-left { position: sticky; top: 120px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.faq-item:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    text-align: left;
    transition: color 0.3s var(--ease);
    gap: 1rem;
}
.faq-question:hover { color: #0e7490; }

/* Plus/minus icon */
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon span {
    position: absolute;
    background: var(--slate-400);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.faq-icon span:first-child {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon span:last-child {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-question[aria-expanded="true"] .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-question[aria-expanded="true"] .faq-icon span {
    background: #0891b2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 1.5rem;
}
.faq-answer.active {
    max-height: 400px;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
    color: var(--slate-500);
    line-height: 1.8;
    font-size: 0.9375rem;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-cta);
    text-align: center;
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(14, 116, 144, 0.2);
    top: -200px;
    right: -100px;
}
.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.15);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-950);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand { flex: 0 0 280px; }
.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    color: var(--slate-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.3s var(--ease);
}
.social-links a:hover {
    background: #0e7490;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex: 1;
    gap: 3rem;
}
.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.footer-column a {
    color: var(--slate-400);
    font-size: 0.875rem;
    transition: all 0.3s var(--ease);
}
.footer-column a:hover {
    color: var(--cyan-400);
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--slate-500);
    font-size: 0.8125rem;
}

.footer-bottom p {
    margin: 0;
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(14,116,144,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(14,116,144,0.45);
}

.xeid-credit {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.7rem;
    border-radius: var(--r-full);
    background: rgba(2, 6, 23, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: var(--slate-100);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.28);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.xeid-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.36);
    border-color: rgba(103, 232, 249, 0.55);
    color: var(--white);
}
.xeid-credit-logo {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* --- ≤1024px: Hero stacks, grids simplify --- */
@media (max-width: 1024px) {
    /* Hero — hide image, center content */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-image { display: none; }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .hero-badge-row { display: flex; justify-content: center; }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-trust { justify-content: center; flex-wrap: wrap; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-scroll-indicator { display: none; }

    /* Program panels */
    .panel-content {
        grid-template-columns: 1fr;
    }
    .sidebar-card { position: static; }

    .docs-visa-grid { grid-template-columns: 1fr; }

    /* Process — vertical steps */
    .process-line { display: none; }
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .process-step {
        flex-direction: row;
        text-align: left;
        max-width: none;
        gap: 1.25rem;
    }
    .step-circle { flex-shrink: 0; }

    /* Benefits — 2 columns */
    .benefits-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .benefit-tile-large { grid-column: span 1; }

    /* Testimonials — 2 columns */
    .testimonials-slider { grid-template-columns: 1fr 1fr; }

    /* FAQ — single column */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-left { position: static; }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    .footer-brand { flex: none; }
}

/* --- ≤768px: Mobile nav, tighter spacing --- */
@media (max-width: 768px) {
    /* Mobile navigation — polished slide-out panel */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 110px 1.75rem 2rem;
        gap: 0.25rem;
        box-shadow: -12px 0 60px rgba(0,0,0,0.25);
        transition: right 0.4s var(--ease);
        overflow-y: auto;
        z-index: 999;
    }
    .nav.active { right: 0; }
    .nav a {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1.0625rem;
        font-weight: 500;
        color: rgba(255,255,255,0.8) !important;
        border-bottom: none;
        border-radius: var(--r-md);
        transition: all 0.25s var(--ease);
        letter-spacing: 0.01em;
    }
    .nav a:hover {
        color: var(--white) !important;
        background: rgba(255,255,255,0.08);
    }
    .nav a::after { display: none; }
    .nav-cta {
        margin-top: 1.5rem;
        text-align: center;
        border-bottom: none !important;
        width: 100% !important;
        padding: 0.75rem 1.25rem !important;
        border-radius: var(--r-full) !important;
        background: var(--whatsapp) !important;
        color: var(--white) !important;
        font-weight: 600 !important;
        font-size: 0.9375rem !important;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    .nav-cta:hover {
        background: var(--whatsapp-dark) !important;
        transform: none;
    }
    /* hamburger stays white on dark panel */
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span { background: var(--white) !important; }

    /* Hero tighten */
    .hero { padding: 100px 0 0; }
    .hero-title { font-size: 2.25rem; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn { width: 100%; max-width: 320px; }

    .logo-image { height: 70px; }

    /* Program tabs — 2×2 grid */
    .program-tabs {
        width: 100%;
        border-radius: var(--r-lg);
        padding: 0.25rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
    }
    .program-tab {
        justify-content: center;
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
        border-radius: var(--r-md);
        white-space: nowrap;
    }
    .program-tab svg { display: none; }

    .panel-content { padding: 1.5rem; }
    .panel-title { font-size: 1.375rem; }
    .activity-grid { grid-template-columns: 1fr; }

    /* Single column grids */
    .benefits-mosaic { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }

    /* Footer */
    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .xeid-credit {
        font-size: 0.72rem;
        padding: 0.4rem 0.62rem;
    }
    .xeid-credit-logo {
        width: 16px;
        height: 16px;
    }

    /* Reduce section padding */
    .section { padding: clamp(3rem, 8vw, 5rem) 0; }
}

/* --- ≤480px: Small phones --- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero { padding: 90px 0 0; }
    .hero-title { font-size: 1.875rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.375rem 1rem; }

    .marquee-number { font-size: 1.5rem; }
    .marquee-content { gap: 2rem; }

    .panel-content { padding: 1.25rem; }
    .panel-title { font-size: 1.25rem; }
    .sidebar-card { padding: 1.5rem; }

    .info-card { padding: 1.5rem; }
    .visa-two-col { grid-template-columns: 1fr; }

    .step-circle { width: 52px; height: 52px; }
    .step-circle span { font-size: 1rem; }

    .benefit-tile { padding: 1.5rem; }

    .testimonial-card { padding: 1.5rem; }

    .faq-question { padding: 1rem 1.25rem; font-size: 0.9375rem; }
    .faq-answer.active { padding: 0 1.25rem 1rem; }

    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
    .xeid-credit {
        padding: 0.36rem 0.56rem;
    }
    .xeid-credit-logo {
        width: 15px;
        height: 15px;
    }
}

/* Print */
@media print {
    .header, .hero-scroll-indicator, .back-to-top, .mobile-toggle, .cursor-glow, .xeid-credit { display: none !important; }
    .hero { min-height: auto; padding: 2rem 0; }
    .section { padding: 2rem 0; }
    [data-animate] { opacity: 1 !important; transform: none !important; }
}
