/* ═══════════════════════════════════════════
   DESIGN TOKENS — Navy/Teal Professional Palette
   ═══════════════════════════════════════════ */
:root {
    /* Primary – Teal/Cyan */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;

    /* Navy */
    --navy-700: #1e3a5f;
    --navy-800: #152d4a;
    --navy-900: #0f2644;
    --navy-950: #0A1628;

    /* Accent – Teal-Green */
    --accent-400: #2dd4bf;
    --accent-500: #14b8a6;
    --accent-600: #0d9488;

    /* Warm */
    --warm-400: #fbbf24;
    --warm-500: #f59e0b;

    /* Success */
    --success-500: #22c55e;
    --success-600: #16a34a;

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

    /* Surfaces */
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.72);
    --surface-glass-border: rgba(255, 255, 255, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
    --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0f2644 40%, #1e3a5f 100%);
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    --gradient-cta: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #14b8a6 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
    --shadow-glow-lg: 0 0 80px rgba(14, 165, 233, 0.2);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1rem, 4vw, 2rem);
    --container-max: 1200px;

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

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0f9ff;
    color: #0284c7;
    border: 1px solid #bae6fd;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.06);
    transition: all var(--transition-base);
}

.section-tag:hover {
    background: #e0f2fe;
    border-color: #38bdf8;
    transform: translateY(-1px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.section-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}

.btn-glass {
    background: var(--surface-glass);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: var(--surface);
    border-color: var(--primary-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: #fff;
    color: var(--primary-600);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    z-index: 10;
}

.nav-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    display: block;
}

.logo-accent {
    color: #0284c7;
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .nav-logo {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: #0284c7;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #0284c7;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.lang-flag {
    font-size: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px var(--container-px) 24px;
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 12px 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-link:hover {
    background: var(--gray-100);
}


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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float2 15s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0284c7 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: float3 18s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: 20%;
    right: 30%;
    animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 20px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-subtitle strong {
    color: #fff;
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* ─── Hero App Mockup ────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.mockup-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.mockup-window {
    background: #111827;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 25px 60px -12px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255,255,255,0.08),
        0 0 80px rgba(14, 165, 233, 0.1);
    position: relative;
    z-index: 1;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.titlebar-dots {
    display: flex;
    gap: 6px;
}

.titlebar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.titlebar-dots span:nth-child(1) { background: #ff5f57; }
.titlebar-dots span:nth-child(2) { background: #ffbd2e; }
.titlebar-dots span:nth-child(3) { background: #28ca42; }

.titlebar-url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    padding: 5px 14px;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.mockup-screen {
    display: grid;
    grid-template-columns: 175px 1fr;
    height: 310px;
}

.screen-panel {
    background: rgba(255,255,255,0.025);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.panel-search {
    padding: 7px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 7px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.panel-card.active {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.25);
}

.pc-score {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-score.high {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
}

.pc-score.warn {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.pc-info {
    overflow: hidden;
}

.pc-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-type {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.screen-map {
    position: relative;
    background: linear-gradient(160deg, #0c1a2a 0%, #132238 100%);
    overflow: hidden;
}

.screen-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 28px 28px;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
    z-index: 2;
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: dotRipple 3s ease-in-out infinite;
}

.map-dot.green { background: #22c55e; }
.map-dot.teal { background: #14b8a6; }
.map-dot.blue { background: #38bdf8; }
.map-dot.yellow { background: #fbbf24; }
.map-dot.orange { background: #f97316; }

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

@keyframes dotRipple {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(2); opacity: 0; }
}

.map-popup {
    position: absolute;
    top: 14%;
    right: 8%;
    background: rgba(255,255,255,0.95);
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.68rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.map-popup strong {
    font-weight: 700;
    font-size: 0.72rem;
}

.map-popup span {
    color: var(--primary-600);
    font-weight: 600;
}

/* Floating Cards around mockup */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    z-index: 2;
}

.card-rating {
    top: 8%;
    right: -8%;
}

.card-location {
    bottom: 12%;
    left: -6%;
}

.card-icon {
    font-size: 1.5rem;
}

.floating-card strong {
    display: block;
    font-size: 0.95rem;
}

.floating-card small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}


/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--gray-100);
    padding: 32px 0 24px;
    overflow: hidden;
}

.trust-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.trust-badge-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.tb-icon {
    font-size: 1.25rem;
}

.tb-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tb-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.tb-text small {
    font-size: 0.72rem;
    color: #64748b;
}

.trust-badge-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

@media (max-width: 640px) {
    .trust-badge-divider {
        display: none;
    }
}

.trust-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.trust-ticker {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-box {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-mini-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-full);
}


/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.step-reverse {
    direction: rtl;
}

.step-reverse > * {
    direction: ltr;
}

.step-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-100);
    line-height: 1;
    z-index: 0;
}

.step-icon-badge {
    position: relative;
    z-index: 1;
    width: 110px;
    height: 110px;
    border-radius: var(--radius-2xl);
    background: #ffffff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.step:hover .step-icon-badge {
    transform: scale(1.08) translateY(-4px);
    border-color: var(--primary-300);
    box-shadow: 0 20px 35px -10px rgba(14, 165, 233, 0.2);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--primary-500);
    transition: gap var(--transition-base);
}

.step-link:hover {
    gap: 8px;
    color: var(--primary-600);
}

.step-connector {
    display: flex;
    justify-content: center;
    height: 40px;
    opacity: 0.5;
}

.step-connector svg {
    width: 200px;
    height: 40px;
}


/* ═══════════════════════════════════════════
   INTERACTIVE PREVIEW SECTION
   ═══════════════════════════════════════════ */
.preview-section {
    padding: var(--section-py) 0;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
}

.preview-browser-frame {
    display: block;
    text-decoration: none;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 25px 60px -15px rgba(14, 165, 233, 0.25), 0 0 30px rgba(14, 165, 233, 0.1);
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    cursor: pointer;
}

.preview-browser-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -15px rgba(14, 165, 233, 0.35), 0 0 40px rgba(14, 165, 233, 0.15);
}

.preview-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.preview-browser-frame:hover .preview-hover-overlay {
    opacity: 1;
}

.preview-hover-btn {
    background: #ffffff;
    color: #0284c7;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    transform: translateY(8px);
    transition: transform var(--transition-base);
}

.preview-browser-frame:hover .preview-hover-btn {
    transform: translateY(0);
}

.preview-demo-banner {
    max-width: 1000px;
    margin: 32px auto 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 768px) {
    .preview-demo-banner {
        flex-direction: column;
        text-align: center;
    }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #28ca42; }

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
}

.browser-address .lock-icon {
    font-size: 0.75rem;
}

.browser-body {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pricing {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--primary-50) 100%);
}

.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-2xl);
    padding: 40px 36px;
    position: relative;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-glow-lg);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Dutch School System Explainer */
.dutch-system-explainer {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-200);
}

.system-explainer-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 36px;
}

.explainer-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.system-explainer-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.system-explainer-header p {
    font-size: 0.95rem;
    color: #64748b;
}

.system-timeline-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.system-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.system-step-card.highlight {
    border-color: #38bdf8;
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.system-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-badge-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.system-step-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.system-step-card h4 span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.system-step-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}

.system-timeline-arrow {
    font-size: 1.4rem;
    color: #38bdf8;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 900px) {
    .system-timeline-grid {
        grid-template-columns: 1fr;
    }
    .system-timeline-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
}

.expat-badge-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expat-mini-preview .preview-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.expat-mini-preview h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.expat-mini-preview p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.pricing-icon-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    border-radius: var(--radius-xl);
    background: var(--primary-50);
    margin: 0 auto 16px;
    color: var(--primary-600);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 4px;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: super;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-decimal {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: super;
}

.pricing-per {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 16px;
}

/* Demo Banner */
.pricing-demo-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    width: 100%;
    max-width: 560px;
}

.demo-banner-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.demo-banner-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all var(--transition-slow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-100);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-50);
    border: 2px solid var(--primary-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}


/* ═══════════════════════════════════════════
   EXPATS SECTION
   ═══════════════════════════════════════════ */
.expats-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, #0A1628 0%, #0f2644 50%, #1e3a5f 100%);
    color: #fff;
}

.expats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expats-section .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-300);
}

.expats-section .section-title {
    color: #fff;
}

.expats-section .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.expats-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}

.expat-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.expat-icon {
    font-size: 1.3rem;
}

.expats-visual {
    display: flex;
    justify-content: center;
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-200);
}

.faq-item[open] {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-500);
    transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--primary-600);
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.final-cta {
    position: relative;
    padding: var(--section-py) 0;
    background: var(--gradient-cta);
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: #14b8a6;
    top: -200px;
    right: -100px;
    animation: float2 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: #0284c7;
    bottom: -150px;
    left: -100px;
    animation: float1 18s ease-in-out infinite;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-lottie {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: #060e1a;
    color: #e2e8f0;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .nav-logo-img {
    filter: brightness(1.1);
}

.footer-tagline {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 340px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: #cbd5e1;
    padding: 5px 0;
    font-weight: 400;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: #38bdf8;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom p {
    color: #94a3b8;
}


/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-float {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-float {
    transform: translateY(20px) scale(0.95);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-float.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-up, .reveal-left, .reveal-right, .reveal-float {
        opacity: 1;
        transform: none;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .step-reverse {
        direction: ltr;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .pricing-card-wrapper {
        max-width: 100%;
        padding: 0 var(--container-px);
    }

    .pricing-demo-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expats-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expats-features {
        justify-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .floating-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .mockup-screen {
        grid-template-columns: 1fr;
        height: auto;
    }

    .screen-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        max-height: 160px;
    }

    .screen-map {
        height: 180px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .expats-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .mockup-screen {
        grid-template-columns: 1fr;
    }

    .screen-panel {
        display: none;
    }

    .screen-map {
        height: 200px;
    }
}
