/* ============================================
   BELIKA Landing Page — Liquid Glass v6
   UI/UX Pro Max Design System
   ============================================ */

:root {
    --bg: #000000;
    --surface: rgba(20, 20, 20, 0.6);
    --gold: #D4AF37;
    --gold-bright: #FDE047;
    --gold-muted: #A16207;
    --white: #FFFFFF;
    --gray: #A1A1AA;
    --dark-gray: #52525B;

    --font-h: 'Righteous', cursive;
    --font-b: 'Poppins', sans-serif;

    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-b);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.55;
    padding-bottom: env(safe-area-inset-bottom);
}

/* ---- LAYOUT ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* ---- AMBIENT BACKGROUND ---- */
.ambient-bg {
    position: fixed; top:0; left:0; width:100vw; height:100vh;
    z-index: -1; pointer-events: none; overflow: hidden;
}
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.12;
    animation: orb-float 25s infinite alternate ease-in-out;
}
.orb-1 { width:50vw; height:50vw; background:var(--gold); top:-15%; right:-15%; }
.orb-2 { width:40vw; height:40vw; background:#1C1917; bottom:10%; left:-15%; animation-delay:-8s; }

@keyframes orb-float {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-40px,40px) scale(1.15); }
}

/* ---- TYPOGRAPHY ---- */
.headline {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 7vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    background: linear-gradient(180deg, #FFF 30%, #A1A1AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.word.animate {
    animation: word-in 500ms var(--ease) forwards;
}

@keyframes word-in {
    to { opacity: 1; transform: translateY(0); }
}

.subtitle { font-size: 0.95rem; color: var(--gray); margin-bottom: 20px; max-width: 460px; }
.section-sub { color: var(--gray); font-size: 0.95rem; margin-bottom: 24px; }

/* ---- ANIMATED HEADINGS (V6) ---- */
.section-heading { 
    font-family: var(--font-h); 
    font-size: 1.8rem; 
    margin-bottom: 8px; 
    position: relative;
    display: inline-block;
}

.heading-text {
    position: relative;
    display: inline-block;
}

.heading-text::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1) 200ms;
    border-radius: 2px;
}

.section-heading.is-visible .heading-text::after {
    width: 100%;
}


/* ---- NAV BAR ---- */
.nav-bar {
    padding: 16px 20px;
    position: fixed; top:0; left:0; width:100%; z-index: 100;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
}
.nav-icon {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}
.brand-logotype { font-family: var(--font-h); font-size: 1.15rem; letter-spacing: 0.08em; color: var(--gold); }

/* ====== HERO ====== */
.hero { 
    padding: 120px 0 40px; min-height: 75vh; 
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

/* Subtle Hero Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 10%; left: 50%; transform: translateX(-50%);
    width: 80vw; max-width: 800px; height: 80vw; max-height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    pointer-events: none; z-index: -1;
}

.hero-inner { display: flex; flex-direction: column; gap: 20px; max-width: 800px; }
.hero-text { flex: 1; }

.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
    margin-left: auto; margin-right: auto;
}
.stars { display: flex; gap: 2px; }
.trust-text { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

/* Store Buttons */
.download-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.store-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px; border-radius: var(--r-sm);
    text-decoration: none; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--white); transition: all 400ms var(--ease);
    font-family: var(--font-b);
}
.store-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-info { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-small { font-size: 0.6rem; opacity: 0.7; }
.store-name { font-size: 0.9rem; font-weight: 600; }

/* V6 Primary Button Upgrades */
.hero-primary-btn {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border: none;
    color: #000;
    box-shadow: 0 8px 24px rgba(212,175,55,0.3);
    animation: pulse-gold 3s infinite alternate ease-in-out;
}
.hero-primary-btn:hover {
    background: linear-gradient(135deg, #FFF, var(--gold-bright));
    box-shadow: 0 12px 30px rgba(212,175,55,0.5);
}
@keyframes pulse-gold {
    0% { box-shadow: 0 4px 15px rgba(212,175,55,0.2); }
    100% { box-shadow: 0 8px 30px rgba(212,175,55,0.4); }
}

.hero-microcopy {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 16px;
    letter-spacing: 0.02em;
}


/* ====== ES MUY FÁCIL (BABY STEPS) ====== */
.easy-steps-section { padding: 40px 0 20px; }
.easy-steps-list {
    display: flex; flex-direction: column; gap: 16px;
    max-width: 500px; margin: 24px auto 0; text-align: left;
}
.easy-step {
    background: var(--surface); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md);
    padding: 18px 24px;
    display: flex; align-items: center; gap: 16px;
}
.easy-step-emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.easy-step p { font-size: 1.05rem; font-weight: 500; color: var(--white); margin: 0; }
.easy-step-text { display: flex; flex-direction: column; gap: 8px; }
.inline-app-name { 
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px; border-radius: 12px;
}
.inline-app-icon { width: 24px; height: 24px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.inline-app-name strong { font-size: 0.9rem; letter-spacing: 0.02em; color: var(--white); font-weight: 600; font-family: var(--font-b); }

/* ====== VIDEO TUTORIAL ====== */
.video-tutorial-section { padding: 40px 0 20px; }
.video-wrapper {
    position: relative; max-width: 300px; margin: 24px auto 0;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
    background: #000;
}
.video-wrapper video {
    width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover;
}
.play-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 300ms var(--ease);
}
.play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #000;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(212,175,55,0.4);
    transition: transform 300ms var(--ease);
}
.play-overlay:hover .play-btn-circle { transform: scale(1.1); }

/* ====== PROCESS CAROUSEL SHOWCASE ====== */
.process-carousel-section { padding: 32px 0 40px; overflow: hidden; }
.process-carousel-wrapper { position: relative; margin-top: 24px; }
.process-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding: 10px 20px 30px;
    scroll-padding: 0 20px;
}
.process-track::-webkit-scrollbar { display: none; }

.process-card {
    flex: 0 0 220px; scroll-snap-align: center;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 400ms var(--ease);
}
.process-card:hover { transform: translateY(-4px); }

.process-screen {
    width: 100%; border-radius: 24px;
    background: #111; padding: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    aspect-ratio: 9/16;
    display: flex; align-items: center; justify-content: center;
}
.process-screen img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 20px;
}
.icon-screen img {
    width: 60%; height: auto; object-fit: contain; padding: 20px; border-radius: 0;
}

.process-text { display: flex; flex-direction: column; }
.p-num { font-family: var(--font-h); font-size: 1.2rem; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.process-text h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.process-text p { font-size: 0.85rem; color: var(--gray); line-height: 1.4; }


/* ====== INLINE CTA (V6) ====== */
.inline-cta-section { padding: 20px 0; }
.inline-cta-box {
    background: var(--surface); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,0.2); border-radius: var(--r-md);
    padding: 24px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    max-width: 600px; margin: 0 auto;
}
.inline-cta-text { display: flex; flex-direction: column; gap: 4px; }
.inline-cta-box h3 { font-family: var(--font-h); font-size: 1.2rem; margin: 0; }
.inline-cta-sub { font-size: 0.9rem; color: var(--gray); margin: 0; }
.inline-cta-btn {
    background: var(--white); color: #000;
    padding: 12px 24px; border-radius: 30px;
    font-weight: 600; text-decoration: none; font-size: 0.95rem;
    transition: all 300ms var(--ease);
}
.inline-cta-btn:hover { transform: scale(1.05); background: var(--gold-bright); }


/* ====== TESTIMONIALS CAROUSEL ====== */
.testimonials-section { padding: 32px 0; overflow: hidden; }
.carousel-wrapper { position: relative; }
.carousel-track {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding-bottom: 16px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 280px; scroll-snap-align: center;
    background: var(--surface); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-md);
    padding: 20px; display: flex; flex-direction: column; gap: 10px;
    text-align: left;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; flex: 1; }
.testi-name { font-size: 0.75rem; color: var(--dark-gray); font-weight: 500; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; padding-top: 8px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: all 300ms var(--ease); }
.carousel-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }


/* ====== FINAL CTA ====== */
.final-cta { padding: 32px 0 48px; }
.cta-glass {
    background: var(--surface); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.15); border-radius: var(--r-lg);
    padding: 40px 20px; text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(212,175,55,0.03);
    display: flex; flex-direction: column; align-items: center; max-width: 600px; margin: 0 auto;
}
.cta-icon {
    width: 72px; height: 72px; border-radius: 18px; margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.cta-headline { margin-bottom: 8px; }
.cta-sub { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; max-width: 400px; }

.final-primary-btn {
    background: var(--white); color: #000; border: none;
    transform: scale(1.05);
}
.final-primary-btn:hover { background: var(--gold-bright); }


/* ====== FLOATING MOBILE CTA (V6) ====== */
.floating-cta {
    position: fixed;
    bottom: -100px; left: 0; width: 100%;
    padding: 16px 20px;
    z-index: 900;
    transition: bottom 400ms var(--ease);
    display: flex; justify-content: center;
    pointer-events: none; /* Let clicks pass through when hidden */
}
.floating-cta.is-visible {
    bottom: 0;
    pointer-events: auto;
}
.floating-cta-inner {
    background: rgba(20, 20, 20, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    width: 100%; max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.floating-stars {
    font-size: 0.8rem; font-weight: 600; color: var(--white);
    display: flex; align-items: center; gap: 4px;
}
.star-icon { color: var(--gold-bright); font-size: 1rem; }
.floating-btn {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #000; font-weight: 600; font-size: 0.9rem;
    padding: 10px 20px; border-radius: 30px; text-decoration: none;
    transition: transform 200ms var(--ease);
}
.floating-btn:active { transform: scale(0.95); }


/* ====== FOOTER ====== */
footer { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.04); padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.copyright { font-size: 0.75rem; color: var(--dark-gray); }


/* ====== ANDROID POPUP ====== */
.popup-overlay {
    position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-card {
    background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg);
    padding: 40px 24px; text-align: center; max-width: 360px; width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
    animation: popup-in 400ms var(--ease);
}
@keyframes popup-in { from { opacity:0; transform:scale(0.95) translateY(10px); } }
.popup-icon { margin-bottom: 24px; display: inline-flex; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.popup-card h3 { font-family: var(--font-h); font-size: 1.4rem; margin-bottom: 12px; }
.popup-card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 28px; line-height: 1.5; }
.popup-close-btn {
    background: var(--gold); color: #000; border: none; padding: 14px 32px; border-radius: var(--r-sm);
    font-family: var(--font-b); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: transform 300ms var(--ease);
    width: 100%;
}
.popup-close-btn:hover { transform: translateY(-2px); }


/* ====== IN-APP BROWSER ESCAPE OVERLAY ====== */
.inapp-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.inapp-overlay.active { display: flex; }
.inapp-card {
    background: #111; border: 1px solid rgba(212,175,55,0.2); border-radius: var(--r-lg);
    padding: 36px 24px; text-align: center; max-width: 380px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(212,175,55,0.03);
    animation: popup-in 400ms var(--ease);
    position: relative;
}
.inapp-close-x {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: var(--gray);
    font-size: 1.6rem; line-height: 1; cursor: pointer;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 200ms var(--ease);
}
.inapp-close-x:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.inapp-icon {
    width: 64px; height: 64px; border-radius: 16px; margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.inapp-card h3 {
    font-family: var(--font-h); font-size: 1.3rem; margin-bottom: 10px;
    background: linear-gradient(135deg, #FFF, var(--gold-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.inapp-card > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.5; }
.inapp-card > p strong { color: var(--white); }

.inapp-steps {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 16px; text-align: left;
}
.inapp-step {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 12px 14px;
}
.inapp-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000; font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inapp-step span:last-child {
    font-size: 0.85rem; color: var(--gray); line-height: 1.4;
}
.inapp-step strong { color: var(--white); }

.inapp-or {
    font-size: 0.8rem; color: var(--dark-gray); margin-bottom: 12px;
}

.inapp-copy-btn {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #000; border: none; padding: 14px 24px; border-radius: var(--r-sm);
    font-family: var(--font-b); font-weight: 600; font-size: 0.95rem;
    cursor: pointer; width: 100%; transition: transform 300ms var(--ease);
    margin-bottom: 8px;
}
.inapp-copy-btn:active { transform: scale(0.97); }

.inapp-copied {
    display: none; font-size: 0.85rem; color: #4ade80; font-weight: 500;
}
.inapp-copied.show { display: block; margin-bottom: 8px; }

/* ====== SCROLL REVEAL ====== */
.reveal-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }


/* ====== SOCIAL PROOF TOAST (V6) ====== */
.social-proof-toast {
    position: fixed;
    top: 80px; right: 20px;
    z-index: 800;
    display: flex; align-items: center; gap: 12px;
    background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 14px 18px;
    max-width: 360px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(212,175,55,0.02);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms ease;
}
.social-proof-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.sp-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #000;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.sp-icon img {
    width: 100%; height: 100%; object-fit: cover;
}
.sp-content {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0; /* Allow text truncation */
    padding-right: 10px;
}
.sp-name {
    font-size: 0.9rem; font-weight: 600; color: var(--white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    letter-spacing: 0.01em;
}
.sp-action {
    font-size: 0.8rem; color: #A1A1AA;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sp-time {
    font-size: 0.7rem; color: var(--gold);
    white-space: nowrap; flex-shrink: 0;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 4px;
}


/* ====================================================
   DESKTOP RESPONSIVE — 768px+
   ==================================================== */
@media (min-width: 768px) {
    .container { padding: 0 40px; }
    .container-wide { padding: 0 40px; }
    .nav-bar { padding: 16px 40px; }
    
    .hero { padding: 160px 0 60px; }
    .testimonial-card { flex: 0 0 320px; }
    .process-card { flex: 0 0 260px; }
    .process-track { scroll-padding: 0 40px; }
    
    .inline-cta-box { flex-direction: row; justify-content: space-between; padding: 24px 32px; }
    
    .floating-cta { display: none !important; } /* Hide sticky bar on desktop */
}

/* ====================================================
   LARGE DESKTOP — 1024px+
   ==================================================== */
@media (min-width: 1024px) {
    .container { padding: 0 60px; }
    .container-wide { padding: 0 60px; }
    .nav-bar { padding: 16px 60px; }
    .headline { font-size: 4.2rem; }
    .process-track { scroll-padding: 0 60px; justify-content: center; }
    .testimonial-card { flex: 0 0 360px; }
}
