/* ============================================================
   CHECKIN GUIDE – ULTRA PREMIUM 3D STYLESHEET
   Design by Senior Web Developer (30y Experience)
   ============================================================ */

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

:root {
    --primary: #819AAB;
    --primary-dark: #6A8296;
    --primary-light: #D3E2EF;
    --accent: #AD956D;
    --accent-dark: #9A835F;
    --success: #7BA890;
    --text: #2C3539;
    --text-muted: #6B7280;
    --border: #E0D8CD;
    --bg: #F6F6F5;
    --white: #FFFFFF;
    --cream: #E0D8CD;
    --sand: #AD956D;
    --sky: #D3E2EF;
    --blue-gray: #819AAB;

    /* 3D / Glass Theme */
    --dark: #0d1117;
    --dark-2: #161b22;
    --dark-3: #1c2333;
    --glass: rgba(129,154,171,0.08);
    --glass-border: rgba(129,154,171,0.25);
    --glow-primary: rgba(129,154,171,0.6);
    --glow-accent: rgba(173,149,109,0.6);
    --glow-strong: rgba(129,154,171,0.9);

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
    --shadow-3d: 0 20px 60px rgba(0,0,0,.3), 0 8px 20px rgba(0,0,0,.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--primary); }
.highlight-accent { color: var(--accent); }

/* ============================================================
   NAVBAR – Glassmorphism Premium
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 8px 0;
    transition: all .4s ease;
}
.navbar::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(129,154,171,0.2);
    transition: all .4s ease;
}
.navbar.scrolled::before {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 30px rgba(129,154,171,0.15), 0 1px 0 rgba(173,149,109,0.1);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; position: relative; z-index: 1;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.25rem; text-decoration: none;
}
.logo-image {
    height: 42px; width: auto; display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .logo-image {
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.35));
    transform: scale(1.05);
}

/* Logo im Demo-Header – heller Schatten auf dunklem Grund */
.demo-header .logo-image,
.demo-powered .logo-image {
    filter: drop-shadow(0 2px 5px rgba(255,255,255,0.2)) brightness(1);
}
.logo-text { font-weight: 600; color: var(--text); letter-spacing: -.02em; }
.logo-text strong { color: var(--accent); }
.nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none; height: 100%;
}
.nav-links li a {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: .9rem; font-weight: 500;
    color: var(--text); text-decoration: none;
    transition: all .25s ease; white-space: nowrap;
    position: relative;
}
.nav-links li a::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 2px; background: var(--primary);
    transform: scaleX(0); transition: transform .25s ease;
    border-radius: 2px;
}
.nav-links li a:hover { color: var(--primary); background: rgba(129,154,171,.08); }
.nav-links li a:hover::after { transform: scaleX(1); }

/* Nav admin link */
.nav-admin-link {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
}
.nav-admin-link::after { display: none !important; }
.nav-admin-link:hover {
    background: var(--bg) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* CTA button in nav */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important; border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 15px rgba(129,154,171,.4), 0 0 0 0 rgba(129,154,171,.3) !important;
    animation: pulseGlow 3s ease-in-out infinite;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    box-shadow: 0 6px 25px rgba(173,149,109,.5) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(129,154,171,.4), 0 0 0 0 rgba(129,154,171,.3); }
    50% { box-shadow: 0 4px 20px rgba(129,154,171,.6), 0 0 0 8px rgba(129,154,171,.0); }
}

/* Lang Switcher */
.lang-switcher { position: relative; }
.lang-current {
    display: flex; align-items: center; gap: 6px; cursor: pointer;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: .9rem; font-weight: 500; color: var(--text);
    text-decoration: none; transition: all .25s ease;
    user-select: none;
}
.lang-current:hover { background: rgba(129,154,171,.08); }
.lang-current::after { display: none !important; }
.lang-current .flag { font-size: 1rem; }
.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 15px rgba(129,154,171,.1);
    opacity: 0; pointer-events: none;
    transform: translateY(-10px) scale(.95);
    transition: all .25s cubic-bezier(.34,1.56,.64,1);
    min-width: 160px; overflow: hidden; z-index: 100;
}
.lang-switcher:hover .lang-dropdown {
    opacity: 1; pointer-events: all;
    transform: translateY(0) scale(1);
}
.lang-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; font-size: .9rem; font-weight: 500;
    color: var(--text); text-decoration: none;
    transition: all .2s ease; border-radius: 0 !important;
}
.lang-dropdown a::after { display: none !important; }
.lang-dropdown a:hover { background: rgba(129,154,171,.1); color: var(--primary); }
.lang-dropdown a .flag { font-size: 1.1rem; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all .3s ease;
}

/* ============================================================
   HERO – DARK 3D SPECTACULAR
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

/* Animated mesh gradient background */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(129,154,171,.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(173,149,109,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 10%, rgba(129,154,171,.08) 0%, transparent 50%);
    animation: meshMove 12s ease-in-out infinite alternate;
}
@keyframes meshMove {
    0% { background-position: 0% 0%, 100% 100%, 50% 0%; }
    100% { background-position: 10% 10%, 90% 90%, 55% 5%; }
}

/* Grid lines */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(129,154,171,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129,154,171,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Canvas for particles */
#heroCanvas {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
}

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

/* Floating 3D orbs */
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(129,154,171,.3), transparent 70%);
    top: 5%; right: 5%; animation-delay: 0s;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(173,149,109,.2), transparent 70%);
    bottom: 10%; left: 5%; animation-delay: -3s;
}
.hero-orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(129,154,171,.15), transparent 70%);
    top: 50%; left: 40%; animation-delay: -6s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -30px) scale(.95); }
}

.hero-content { color: var(--white); }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 100px;
    background: rgba(129,154,171,.12);
    border: 1px solid rgba(129,154,171,.3);
    color: var(--primary-light);
    font-size: .85rem; font-weight: 600; letter-spacing: .05em;
    text-transform: uppercase; margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInUp .6s ease forwards;
}
.hero-badge i { color: var(--accent); animation: sparkle 2s ease-in-out infinite; }
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(15deg); opacity: .8; }
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em; margin-bottom: 24px;
    color: var(--white);
    animation: fadeInUp .7s .1s ease both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-title .highlight::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -4px; height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 2px; opacity: .6;
}

.hero-subtitle {
    font-size: 1.1rem; line-height: 1.7;
    color: rgba(255,255,255,.65); margin-bottom: 36px;
    animation: fadeInUp .7s .2s ease both;
}

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
    animation: fadeInUp .7s .3s ease both;
}

/* 3D Primary Button */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #5a7585 100%);
    color: white; font-weight: 700; font-size: .95rem;
    text-decoration: none; border: none; cursor: pointer;
    position: relative; overflow: hidden;
    box-shadow:
        0 8px 25px rgba(129,154,171,.5),
        0 4px 10px rgba(0,0,0,.2),
        inset 0 1px 0 rgba(255,255,255,.2);
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    transform-style: preserve-3d;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 60%);
    border-radius: inherit;
}
.btn-primary::after {
    content: ''; position: absolute; inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--primary));
    z-index: -1; opacity: 0; transition: opacity .3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(129,154,171,.6),
        0 8px 20px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(.99); }

.btn-large { padding: 16px 36px; font-size: 1rem; }

/* Ghost Button */
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem;
    text-decoration: none; cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.4);
    color: white; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

/* Outline Button */
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary); font-weight: 600; font-size: .95rem;
    text-decoration: none; cursor: pointer;
    transition: all .3s ease;
    position: relative; overflow: hidden;
}
.btn-outline::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0; transition: opacity .3s ease;
}
.btn-outline:hover { color: white; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129,154,171,.3); }
.btn-outline:hover::before { opacity: 1; }
.btn-outline span, .btn-outline i { position: relative; z-index: 1; }

.hero-trust {
    display: flex; gap: 24px; flex-wrap: wrap;
    animation: fadeInUp .7s .4s ease both;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.55); font-size: .85rem;
}
.trust-item i { color: var(--success); font-size: .9rem; }

/* ---- Hero Visual ---- */
.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: fadeInRight .8s .2s ease both;
}

/* 3D Phone Mockup */
.phone-mockup {
    width: 280px; height: 580px;
    background: linear-gradient(145deg, #1e2937, #0d1520);
    border-radius: 44px;
    border: 2px solid rgba(129,154,171,.3);
    position: relative;
    box-shadow:
        0 50px 100px rgba(0,0,0,.6),
        0 20px 40px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.1),
        0 0 0 1px rgba(0,0,0,.5),
        0 0 60px rgba(129,154,171,.15);
    transform: perspective(1000px) rotateY(-12deg) rotateX(3deg);
    transform-style: preserve-3d;
    animation: phoneFloat 5s ease-in-out infinite;
    transition: transform .5s ease;
}
.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(1deg);
}
@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) translateY(-15px); }
}

/* Phone notch */
.phone-mockup::before {
    content: ''; position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #0d1520; border-radius: 20px;
    border: 2px solid rgba(129,154,171,.2);
    z-index: 2;
}
/* Phone reflection */
.phone-mockup::after {
    content: ''; position: absolute; inset: 0; border-radius: 44px;
    background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 50%, rgba(255,255,255,.02) 100%);
    pointer-events: none;
}

.phone-screen {
    position: absolute; inset: 12px; border-radius: 34px;
    background: linear-gradient(180deg, #0f172a 0%, #1a2540 100%);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.phone-welcome {
    padding: 52px 20px 20px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1; color: white;
}
.hotel-logo-placeholder {
    font-size: 2rem; text-align: center;
    background: rgba(129,154,171,.15); border: 1px solid rgba(129,154,171,.3);
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    box-shadow: 0 4px 15px rgba(129,154,171,.2);
}
.phone-welcome h3 {
    font-size: .95rem; font-weight: 700; color: white;
    text-align: center; line-height: 1.3;
}
.phone-welcome p {
    font-size: .72rem; color: rgba(255,255,255,.55);
    text-align: center; line-height: 1.4;
}
.phone-progress-bar {
    height: 3px; background: rgba(255,255,255,.1);
    border-radius: 3px; overflow: hidden; margin: 4px 0;
}
.phone-progress-bar .progress-fill {
    height: 100%; width: 30%;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 3px;
    animation: progressAnim 3s ease-in-out infinite alternate;
}
@keyframes progressAnim {
    0% { width: 20%; } 100% { width: 75%; }
}
.small-text { font-size: .65rem; color: rgba(255,255,255,.35); text-align: center; }
.phone-question {
    font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9);
    margin-top: 8px;
}
.phone-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.phone-option {
    background: rgba(129,154,171,.1);
    border: 1px solid rgba(129,154,171,.2);
    border-radius: 12px; padding: 10px 8px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: .7rem; color: rgba(255,255,255,.7);
    cursor: pointer; transition: all .3s ease;
}
.phone-option i { font-size: 1.1rem; color: var(--primary-light); }
.phone-option.active {
    background: rgba(129,154,171,.25);
    border-color: rgba(129,154,171,.5);
    color: white;
    box-shadow: 0 4px 15px rgba(129,154,171,.2);
}
.phone-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none; border-radius: 100px;
    padding: 10px 20px; font-size: .8rem; font-weight: 600;
    cursor: pointer; margin-top: 8px; width: 100%;
    box-shadow: 0 4px 15px rgba(129,154,171,.4);
    transition: all .3s ease;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(129,154,171,.2);
    border-radius: 16px; padding: 12px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 4px 15px rgba(129,154,171,.15);
    animation: badgeFloat 4s ease-in-out infinite;
}
.floating-badge i {
    font-size: 1.4rem; width: 36px; height: 36px;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.floating-badge strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.floating-badge span { font-size: .75rem; color: var(--text-muted); }
.badge-1 {
    top: 10%; right: -10%;
    animation-delay: 0s;
}
.badge-1 i { background: rgba(123,168,144,.15); color: var(--success); }
.badge-2 {
    bottom: 15%; left: -12%;
    animation-delay: -2s;
}
.badge-2 i { background: rgba(173,149,109,.15); color: var(--accent); }
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* ============================================================
   LOGOS SECTION
   ============================================================ */
.logos-section {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.logos-label {
    text-align: center; font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-muted); margin-bottom: 20px;
}
.logos-row {
    display: flex; gap: 48px; align-items: center;
    animation: logoScroll 20s linear infinite;
    white-space: nowrap; width: max-content;
}
@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-item {
    font-size: .9rem; font-weight: 600; color: var(--text-muted);
    opacity: .6; transition: opacity .3s ease;
    padding: 0 8px; flex-shrink: 0;
}
.logo-item:hover { opacity: 1; }

/* ============================================================
   STATS SECTION – 3D Cards
   ============================================================ */
.stats-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(129,154,171,.08) 0%, transparent 70%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px; text-align: center;
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    cursor: default;
}
.stat-card::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(129,154,171,.08) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s ease;
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(129,154,171,.5);
    box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 30px rgba(129,154,171,.15);
}
.stat-card:hover::before { opacity: 1; }
.stat-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129,154,171,.5), transparent);
}
.stat-number {
    font-size: 3rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 8px;
    letter-spacing: -.03em;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ============================================================
   FEATURES SECTION – 3D Glass Cards
   ============================================================ */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
    position: relative;
}
.features-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(180deg, var(--bg), transparent);
}

.section-header {
    text-align: center; margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    padding: 6px 18px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(129,154,171,.15), rgba(173,149,109,.1));
    border: 1px solid rgba(129,154,171,.25);
    color: var(--primary-dark); font-size: .8rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: var(--text); letter-spacing: -.03em; margin-bottom: 16px;
    line-height: 1.15;
}
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

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

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    cursor: default;
    transform-style: preserve-3d;
}
.feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(129,154,171,.04) 0%, rgba(173,149,109,.04) 100%);
    opacity: 0; transition: opacity .4s ease;
    border-radius: inherit;
}
.feature-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform .4s ease;
    transform-origin: left;
}
.feature-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow:
        0 30px 70px rgba(0,0,0,.12),
        0 10px 30px rgba(129,154,171,.15),
        inset 0 1px 0 rgba(255,255,255,.8);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}
.feature-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--text);
    margin-bottom: 10px; letter-spacing: -.01em;
}
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   WHY WORKS SECTION
   ============================================================ */
.why-works-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative; overflow: hidden;
}
.why-works-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(129,154,171,.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 50%, rgba(173,149,109,.08) 0%, transparent 60%);
}
.why-works-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; position: relative; z-index: 1;
}
.why-works-text .section-badge {
    background: rgba(129,154,171,.15);
    border-color: rgba(129,154,171,.3);
    color: var(--primary-light);
}
.why-works-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
    color: white; letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.2;
}
.why-works-text > p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 16px; }
.why-works-body p { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; }

/* Thought bubbles */
.thought-bubbles-scene {
    position: relative; height: 420px;
    display: flex; align-items: center; justify-content: center;
}
.scene-person {
    font-size: 3rem; z-index: 2; position: relative;
    filter: drop-shadow(0 0 20px rgba(129,154,171,.3));
    animation: personBob 3s ease-in-out infinite;
}
@keyframes personBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.thought-bubble {
    position: absolute;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(129,154,171,.3);
    border-radius: 100px;
    padding: 10px 18px;
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2), 0 0 20px rgba(129,154,171,.1);
    animation: bubbleFloat 6s ease-in-out infinite;
    white-space: nowrap;
}
.thought-bubble i { color: var(--primary-light); font-size: .9rem; }
.tb-1 { top: 8%; left: 5%; animation-delay: 0s; }
.tb-2 { top: 20%; right: 0%; animation-delay: -.8s; }
.tb-3 { top: 40%; left: -5%; animation-delay: -1.6s; }
.tb-4 { bottom: 30%; right: 2%; animation-delay: -2.4s; }
.tb-5 { bottom: 18%; left: 8%; animation-delay: -3.2s; }
.tb-6 { bottom: 5%; right: 8%; animation-delay: -4s; }
@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-8px) translateX(4px); }
    75% { transform: translateY(5px) translateX(-4px); }
}
.why-works-answer {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, rgba(129,154,171,.15), rgba(173,149,109,.1));
    border: 1px solid rgba(129,154,171,.3);
    border-radius: var(--radius); padding: 20px 24px; margin-top: 32px;
    backdrop-filter: blur(10px);
}
.answer-icon { font-size: 1.5rem; color: var(--success); }
.why-works-answer strong { display: block; color: white; font-size: 1rem; margin-bottom: 4px; }
.why-works-answer span { color: rgba(255,255,255,.5); font-size: .85rem; }

/* ============================================================
   HOW IT WORKS – 3D Steps
   ============================================================ */
.how-section {
    padding: 100px 0;
    background: var(--bg);
    position: relative; overflow: hidden;
}
.steps-grid {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px;
    align-items: center;
}
.step-card {
    background: white; border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    text-align: center;
}
.step-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(129,154,171,.05), rgba(173,149,109,.03));
    opacity: 0; transition: opacity .4s ease;
}
.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,.12), 0 10px 30px rgba(129,154,171,.12);
    border-color: rgba(129,154,171,.3);
}
.step-card:hover::before { opacity: 1; }
.step-number {
    font-size: 4rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, rgba(129,154,171,.15), rgba(173,149,109,.1));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px;
    letter-spacing: -.05em;
}
.step-icon {
    width: 64px; height: 64px; border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(129,154,171,.4);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.step-card:hover .step-icon {
    transform: scale(1.1) rotateY(15deg);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.step-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-size: .85rem; font-weight: 600;
    text-decoration: none; transition: gap .3s ease;
}
.step-link:hover { gap: 10px; }
.step-arrow {
    font-size: 1.5rem; color: var(--border);
    display: flex; align-items: center; justify-content: center;
}
.how-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
    padding: 100px 0;
    background: var(--dark); position: relative; overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(129,154,171,.06) 0%, transparent 70%);
}
.video-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.video-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,.3), 0 0 30px rgba(129,154,171,.1);
    border-color: rgba(129,154,171,.4);
}
.video-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #1a2540, #0d1520);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    cursor: pointer;
}
.video-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(129,154,171,.08), rgba(173,149,109,.06));
}
.video-play-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    position: relative; z-index: 1;
}
.video-card:hover .video-play-icon {
    background: rgba(129,154,171,.4);
    border-color: rgba(129,154,171,.6);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(129,154,171,.3);
}
.video-overlay {
    position: absolute; bottom: 12px; right: 12px; z-index: 1;
}
.video-duration {
    background: rgba(0,0,0,.6); color: white;
    padding: 4px 10px; border-radius: 100px; font-size: .75rem; font-weight: 600;
    backdrop-filter: blur(10px);
}
.video-info { padding: 24px; }
.video-info h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.video-info p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: 12px; }
.video-coming-soon { font-size: .75rem; color: rgba(173,149,109,.7); font-weight: 500; }

/* ============================================================
   PREVIEW SECTION
   ============================================================ */
.preview-section {
    padding: 100px 0; background: var(--bg);
}
.preview-flow {
    display: flex; gap: 12px; align-items: center;
    overflow-x: auto; padding-bottom: 20px;
    scrollbar-width: none;
}
.preview-flow::-webkit-scrollbar { display: none; }
.preview-step {
    flex-shrink: 0;
    transition: all .4s ease;
}
.preview-phone {
    width: 180px; height: 320px;
    background: linear-gradient(145deg, #1e2937, #0d1520);
    border-radius: 28px; border: 1.5px solid rgba(129,154,171,.25);
    overflow: hidden; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 0 30px rgba(129,154,171,.08);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.preview-step:hover .preview-phone {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 0 40px rgba(129,154,171,.15);
    border-color: rgba(129,154,171,.5);
}
.preview-screen {
    padding: 20px 14px; height: 100%;
    display: flex; flex-direction: column; gap: 8px;
    color: white; font-size: .7rem;
}
.ps-hotel-img { font-size: 1.5rem; text-align: center; }
.preview-screen h4 { font-size: .8rem; font-weight: 700; text-align: center; }
.preview-screen p { color: rgba(255,255,255,.55); text-align: center; font-size: .65rem; }
.ps-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; border: none; border-radius: 100px;
    padding: 8px 14px; font-size: .65rem; font-weight: 600; cursor: pointer;
    margin-top: auto; width: 100%;
}
.ps-question { color: rgba(255,255,255,.85); font-weight: 600; font-size: .75rem; }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ps-option {
    background: rgba(129,154,171,.1); border: 1px solid rgba(129,154,171,.2);
    border-radius: 8px; padding: 8px 4px;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    font-size: .6rem; color: rgba(255,255,255,.7);
}
.ps-option i { font-size: .9rem; color: var(--primary-light); }
.ps-img-placeholder {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(129,154,171,.15); display: flex; align-items: center;
    justify-content: center; font-size: 1rem; color: var(--primary-light);
    margin: 0 auto;
}
.ps-info-title { font-weight: 700; font-size: .75rem; color: white; text-align: center; }
.ps-info-text { font-size: .62rem; color: rgba(255,255,255,.55); text-align: center; }
.ps-map-btn {
    background: rgba(129,154,171,.15); border: 1px solid rgba(129,154,171,.3);
    border-radius: 6px; padding: 5px 8px;
    font-size: .6rem; color: var(--primary-light); text-align: center;
}
.ps-upsell-badge {
    background: linear-gradient(135deg, rgba(173,149,109,.3), rgba(173,149,109,.15));
    border: 1px solid rgba(173,149,109,.4);
    border-radius: 6px; padding: 3px 8px; font-size: .6rem;
    color: #d4b87a; text-align: center; font-weight: 600;
}
.ps-upsell-title { font-weight: 700; font-size: .75rem; color: white; text-align: center; }
.ps-upsell-text { font-size: .6rem; color: rgba(255,255,255,.5); text-align: center; }
.ps-upsell-price { color: var(--accent); font-weight: 800; font-size: .85rem; text-align: center; }
.ps-btn-upsell {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white; border: none; border-radius: 100px;
    padding: 6px 12px; font-size: .6rem; font-weight: 600; cursor: pointer; width: 100%;
}
.ps-skip { color: rgba(255,255,255,.3); font-size: .6rem; text-align: center; cursor: pointer; }
.ps-checkin-icon { font-size: 1.5rem; color: var(--primary-light); text-align: center; }
.ps-wifi-box {
    background: rgba(129,154,171,.1); border: 1px solid rgba(129,154,171,.2);
    border-radius: 8px; padding: 8px; font-size: .6rem;
    color: rgba(255,255,255,.7); line-height: 1.6;
}
.preview-arrow {
    font-size: 1rem; color: var(--border); flex-shrink: 0;
}
.preview-label {
    text-align: center; font-size: .75rem; font-weight: 600;
    color: var(--text-muted); margin-top: 12px;
}
.preview-cta-row { text-align: center; margin-top: 48px; }

/* ============================================================
   TESTIMONIALS – 3D Glass Cards
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark); position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(129,154,171,.06) 0%, transparent 70%);
}
.testimonials-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px;
    position: relative; z-index: 1; margin-bottom: 48px;
}
.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '"'; position: absolute;
    top: -20px; left: 20px; font-size: 8rem;
    color: rgba(129,154,171,.06); font-family: Georgia, serif;
    line-height: 1; pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129,154,171,.4);
    box-shadow: 0 30px 70px rgba(0,0,0,.3), 0 0 30px rgba(129,154,171,.1);
}
.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(129,154,171,.12), rgba(173,149,109,.08));
    border-color: rgba(129,154,171,.35);
}
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: .9rem; line-height: 1.7;
    color: rgba(255,255,255,.7); margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: .85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(129,154,171,.3);
}
.author-info strong { display: block; color: white; font-size: .9rem; margin-bottom: 2px; }
.author-info span { color: rgba(255,255,255,.45); font-size: .8rem; }

/* Guest Reviews */
.guest-reviews { position: relative; z-index: 1; }
.guest-reviews h3 {
    font-size: 1.3rem; font-weight: 700; color: white;
    margin-bottom: 24px; text-align: center;
}
.guest-reviews-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.guest-review {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 20px;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}
.guest-review:hover { transform: translateY(-4px); border-color: rgba(129,154,171,.4); }
.guest-avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(173,149,109,.3), rgba(129,154,171,.2));
    border-radius: 50%; font-weight: 700; font-size: .75rem; color: white;
    margin-bottom: 12px;
}
.guest-review p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 10px; }
.guest-review .stars { color: var(--accent); font-size: .8rem; }

/* ============================================================
   PRICING SECTION – 3D Cards with Glow
   ============================================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--bg);
    position: relative; overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(129,154,171,.06) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    position: relative; z-index: 1; margin-bottom: 40px;
    perspective: 1000px;
}
.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    transform-origin: center bottom;
}
.pricing-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: opacity .4s ease;
}
.pricing-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 40px 90px rgba(0,0,0,.12), 0 10px 30px rgba(129,154,171,.12);
    border-color: rgba(129,154,171,.3);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.popular {
    background: linear-gradient(180deg, #0f172a 0%, #1a2540 100%);
    border: 1.5px solid rgba(129,154,171,.4);
    color: white;
    box-shadow: 0 30px 80px rgba(0,0,0,.2), 0 0 50px rgba(129,154,171,.15);
    transform: translateY(-8px);
}
.pricing-card.popular:hover {
    transform: translateY(-20px) rotateX(2deg);
    box-shadow: 0 50px 100px rgba(0,0,0,.3), 0 0 70px rgba(129,154,171,.25);
}
/* Glow ring for popular */
.pricing-card.popular::after {
    content: '';
    position: absolute; inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(129,154,171,.5), rgba(173,149,109,.3), rgba(129,154,171,.5));
    z-index: -1;
    animation: ringRotate 4s linear infinite;
}
@keyframes ringRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.popular-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white; font-size: .75rem; font-weight: 700; padding: 6px 20px;
    border-radius: 0 0 12px 12px; letter-spacing: .05em; text-transform: uppercase;
    white-space: nowrap;
}
.pricing-header {
    display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;
}
.pricing-card h3 {
    font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -.02em;
}
.pricing-card.popular h3 { color: white; }
.pricing-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(129,154,171,.1); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; color: var(--primary);
    border: 1px solid rgba(129,154,171,.2);
}
.pricing-card.popular .pricing-icon { background: rgba(129,154,171,.2); color: var(--primary-light); }
.pricing-rooms { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card.popular .pricing-rooms { color: rgba(255,255,255,.5); }
.pricing-price { margin-bottom: 8px; }
.pricing-price .price {
    font-size: 2.8rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -.04em;
}
.pricing-card.popular .pricing-price .price {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-price .period { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.pricing-card.popular .pricing-price .period { color: rgba(255,255,255,.5); }
.pricing-promo {
    font-size: .82rem; font-weight: 600; color: var(--success); margin-bottom: 24px;
}
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: var(--text);
}
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,.75); }
.pricing-features li i { font-size: .85rem; width: 18px; flex-shrink: 0; }
.pricing-features li i.fa-check { color: var(--success); }
.pricing-features li i.fa-times { color: rgba(129,154,171,.3); }
.pricing-features li.inactive { opacity: .45; }

/* Reseller CTA */
.reseller-cta-box {
    background: linear-gradient(135deg, var(--dark), #1a2540);
    border: 1px solid rgba(129,154,171,.2);
    border-radius: var(--radius-xl); padding: 40px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.reseller-cta-content { display: flex; align-items: center; gap: 24px; }
.reseller-cta-content > i {
    font-size: 2.5rem; color: var(--accent); flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(173,149,109,.4));
}
.reseller-cta-content h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 6px; }
.reseller-cta-content p { font-size: .9rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 100px 0; background: var(--dark);
}
.faq-section .section-header h2 { color: white; }
.faq-section .section-header p { color: rgba(255,255,255,.5); }
.faq-section .section-badge { background: rgba(129,154,171,.15); border-color: rgba(129,154,171,.3); color: var(--primary-light); }
.faq-grid {
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden;
    transition: all .3s ease; backdrop-filter: blur(10px);
}
.faq-item:hover { border-color: rgba(129,154,171,.35); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; cursor: pointer;
    font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85);
    transition: color .3s ease; user-select: none;
}
.faq-question:hover { color: white; }
.faq-question i { color: var(--primary); transition: transform .4s cubic-bezier(.34,1.56,.64,1); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7;
    padding: 0 24px; max-height: 0; overflow: hidden;
    transition: all .4s ease;
}
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 200px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark); border-top: 1px solid rgba(129,154,171,.1);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-image { filter: brightness(0) invert(1) opacity(.4); }
.footer-brand .logo-text { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a {
    display: block; font-size: .88rem; color: rgba(255,255,255,.35);
    text-decoration: none; margin-bottom: 8px; transition: color .3s ease;
}
.footer-col a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .82rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
    padding: 80px 0 100px;
    background: var(--dark);
}
.final-cta-card {
    background: linear-gradient(135deg, #0f172a, #1a2540, #0d1117);
    border: 1px solid rgba(129,154,171,.25);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.4), 0 0 80px rgba(129,154,171,.08);
}
.final-cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(129,154,171,.15) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-orb-1 {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(129,154,171,.12), transparent 70%);
    top: -100px; right: -50px; filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
}
.final-cta-orb-2 {
    position: absolute; width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(circle, rgba(173,149,109,.1), transparent 70%);
    bottom: -80px; left: -40px; filter: blur(40px);
    animation: orbFloat 10s ease-in-out infinite reverse;
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-emoji {
    font-size: 4rem; margin-bottom: 24px; display: block;
    animation: rocketBounce 2s ease-in-out infinite;
}
@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}
.final-cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
    color: white; letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.2;
}
.final-cta-card p { font-size: 1.05rem; color: rgba(255,255,255,.55); margin-bottom: 40px; }
.final-cta-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.final-cta-trust {
    display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
    color: rgba(255,255,255,.35); font-size: .85rem;
}
.final-cta-trust span { display: flex; align-items: center; gap: 6px; }
.final-cta-trust i { color: var(--primary); }

/* ============================================================
   LANGUAGE SWITCHER STYLES
   ============================================================ */
.lang-switcher { position: relative; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .guest-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-works-layout { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .video-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .guest-reviews-grid { grid-template-columns: 1fr 1fr; }
    .reseller-cta-box { flex-direction: column; text-align: center; }
    .reseller-cta-content { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-title { font-size: 2.4rem; }
    .hero-badge { font-size: .75rem; }
    .badge-1, .badge-2 { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
        background: rgba(13,17,23,.98); backdrop-filter: blur(20px);
        padding: 32px 24px; gap: 8px; z-index: 999; overflow-y: auto;
        align-items: flex-start; justify-content: flex-start;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open li a { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); color: white; }
    .nav-links.open .lang-dropdown {
        position: static; opacity: 1; pointer-events: all;
        transform: none; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1);
        box-shadow: none; margin-top: 4px; border-radius: var(--radius-sm);
    }
    .nav-links.open .lang-dropdown a { color: rgba(255,255,255,.7); }
}
