/* ===========================
   CHASR — Marketing Site
   Cinematic. Confrontational. Real.
   =========================== */

@font-face {
    font-family: 'Geist';
    src: local('Geist');
}

:root {
    --bg: #060606;
    --bg-card: #0E0E0E;
    --bg-elevated: #151515;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --gold: #C8A84E;
    --gold-bright: #E0C56A;
    --gold-dim: rgba(200, 168, 78, 0.08);
    --gold-glow: rgba(200, 168, 78, 0.25);
    --white: #F5F0E8;
    --grey: #8A8A8A;
    --grey-dim: #4A4A4A;
    --flame: #FF6B35;
    --display: 'Bebas Neue', 'Impact', 'Arial Narrow Bold', sans-serif;
    --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --sans: 'Geist', -apple-system, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
    --max-w: 1200px;
    --px: clamp(20px, 5vw, 48px);
}

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

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

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
img { display: block; max-width: 100%; }

/* ===========================
   Film grain overlay
   =========================== */

.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ===========================
   Shared elements
   =========================== */

.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
}

/* ===========================
   Buttons
   =========================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--gold-glow), 0 2px 12px rgba(200, 168, 78, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary svg {
    flex-shrink: 0;
}

.btn-primary--lg {
    font-size: 17px;
    padding: 20px 48px;
}

/* ===========================
   Navigation
   =========================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px var(--px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(6, 6, 6, 0.75);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    padding: 14px var(--px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--gold);
}

.nav__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    padding: 10px 24px;
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

/* ===========================
   Hero
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--px) 48px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* Lines removed — cleaner hero */

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--grey);
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--grey-dim);
}

.hero__title {
    font-family: var(--display);
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.hero__title-line {
    display: block;
}

.hero__sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero__desc {
    font-size: 15px;
    color: var(--grey);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__actions-note {
    font-size: 12px;
    color: var(--grey-dim);
    letter-spacing: 0.5px;
}

/* Floating device in hero */
.hero__device {
    position: absolute;
    bottom: -40px;
    right: 6%;
    z-index: 3;
    transform: rotate(3deg);
}

@media (max-width: 1024px) {
    .hero__device {
        display: none;
    }
}

/* ===========================
   Device frames (screenshot placeholders)
   =========================== */

.device-frame {
    position: relative;
    width: 260px;
    height: 540px;
    background: #0A0A0A;
    border-radius: 36px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 20px 60px rgba(0,0,0,0.6),
        0 0 80px var(--gold-dim);
    overflow: hidden;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: var(--bg);
    border-radius: 100px;
    z-index: 5;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    position: relative;
    z-index: 1;
}

.device-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(160deg, #0E0E0E 0%, #181818 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px dashed rgba(200, 168, 78, 0.15);
}

.device-frame--placeholder .device-placeholder {
    display: flex;
}

.device-placeholder__icon {
    font-size: 32px;
    opacity: 0.4;
}

.device-placeholder__text {
    font-size: 12px;
    color: var(--grey-dim);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.device-frame--sm {
    width: 220px;
    height: 460px;
    border-radius: 30px;
}

.device-frame--sm::before {
    width: 75px;
    height: 22px;
    top: 8px;
}

.device-frame--sm .device-screenshot,
.device-frame--sm .device-placeholder {
    border-radius: 22px;
}

.device-frame--lg {
    width: 290px;
    height: 600px;
    border-radius: 40px;
}

.device-frame--lg::before {
    width: 100px;
    height: 28px;
}

.device-frame--lg .device-screenshot,
.device-frame--lg .device-placeholder {
    border-radius: 32px;
}

/* ===========================
   Process / How it works (with tension intro)
   =========================== */

.process {
    padding: 0 var(--px) 120px;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--px);
    right: var(--px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}

/* Tension intro inside process */
.process__tension {
    padding: 120px 0 80px;
}

.tension__text {
    max-width: 700px;
}

.tension__lead {
    font-family: var(--display);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-dim);
    margin-bottom: 32px;
}

.tension__punchline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--gold);
    line-height: 1.2;
}

/* Bridge from tension to steps */
.process__bridge {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
}

.process__bridge-line {
    flex: 0 0 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

/* Steps — side by side, alternating */
.process__steps {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.process__step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Right = phone on the right */
.process__step--right .process__step-text {
    order: 1;
}
.process__step--right .process__step-device {
    order: 2;
    justify-self: center;
}

/* Left = phone on the left */
.process__step--left .process__step-text {
    order: 2;
}
.process__step--left .process__step-device {
    order: 1;
    justify-self: center;
}

.process__step-num {
    display: block;
    font-family: var(--display);
    font-size: 64px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.15;
    letter-spacing: 4px;
    line-height: 1;
    user-select: none;
    margin-bottom: 8px;
}

.process__step-text h3 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
}

.process__step-text p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.8;
    max-width: 440px;
}

.process__step-device {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .process__tension {
        padding: 80px 0 56px;
    }

    .process__steps {
        gap: 72px;
    }

    .process__step {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Reset order on mobile — text always first */
    .process__step--left .process__step-text,
    .process__step--right .process__step-text {
        order: 1;
    }
    .process__step--left .process__step-device,
    .process__step--right .process__step-device {
        order: 2;
    }

    .process__step-num {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .process__bridge {
        margin-top: 48px;
    }
}

/* ===========================
   Features
   =========================== */

.features {
    padding: 120px var(--px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.feature {
    background: var(--bg-card);
    padding: clamp(32px, 4vw, 56px);
    transition: background 0.4s ease;
}

.feature:hover {
    background: var(--bg-elevated);
}

.feature__num {
    display: block;
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--display);
    letter-spacing: 2px;
}

.feature__accent {
    display: block;
    font-family: var(--display);
    font-size: 32px;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.feature__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature__desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.8;
}

.feature__tiers {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}

.tier--bronze {
    color: #CD7F32;
    background: rgba(205, 127, 50, 0.12);
    border: 1px solid rgba(205, 127, 50, 0.15);
}

.tier--silver {
    color: #C0C0C0;
    background: rgba(192, 192, 192, 0.08);
    border: 1px solid rgba(192, 192, 192, 0.12);
}

.tier--gold {
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(200, 168, 78, 0.12);
}

@media (max-width: 640px) {
    .features__grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Showcase
   =========================== */

.showcase {
    padding: 100px var(--px);
    overflow: hidden;
}

.showcase__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.showcase__title {
    font-family: var(--display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 56px;
    color: var(--white);
}

.showcase__devices {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    perspective: 1200px;
}

.showcase__device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase__device--side {
    transform: translateY(30px) scale(0.92);
    opacity: 0.7;
}

.showcase__device--side:first-child {
    transform: translateY(30px) scale(0.92) rotate(-2deg);
}

.showcase__device--side:last-child {
    transform: translateY(30px) scale(0.92) rotate(2deg);
}

.showcase__device--center {
    z-index: 2;
}

.showcase__device:hover {
    transform: translateY(0) rotate(0deg) !important;
    opacity: 1 !important;
}

.showcase__device-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-dim);
}

@media (max-width: 768px) {
    .showcase__devices {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .showcase__device--side {
        transform: none;
        opacity: 1;
    }
}

/* ===========================
   Stats
   =========================== */

.stats {
    padding: 100px var(--px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 80px);
}

.stats__item {
    text-align: center;
}

.stats__num {
    display: block;
    font-family: var(--display);
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.stats__label {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.stats__divider {
    width: 1px;
    height: 72px;
    background: rgba(200, 168, 78, 0.15);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .stats__inner {
        flex-direction: column;
        gap: 48px;
    }

    .stats__divider {
        width: 60px;
        height: 1px;
    }
}

/* ===========================
   FAQ
   =========================== */

.faq {
    padding: 120px var(--px);
}

.faq__inner {
    max-width: 680px;
    margin: 0 auto;
}

.faq__title {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 56px;
    color: var(--white);
}

.faq__list {
    display: flex;
    flex-direction: column;
}

.faq__item {
    border-top: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.faq__item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq__item.open {
    border-color: rgba(200, 168, 78, 0.15);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: color 0.3s ease;
}

.faq__item:hover .faq__q {
    color: var(--gold-bright);
}

.faq__toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 24px;
}

.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__toggle::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq__toggle::after {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq__item.open .faq__toggle::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.open .faq__a {
    max-height: 300px;
}

.faq__a p {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
}

/* ===========================
   Final CTA
   =========================== */

.cta {
    position: relative;
    padding: 140px var(--px);
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.1) 0%, transparent 60%);
    filter: blur(60px);
}

.cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__title {
    font-family: var(--display);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: var(--white);
}

.cta__title span {
    display: block;
}

.cta__sub {
    font-size: 17px;
    color: var(--grey);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta__note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--grey-dim);
    letter-spacing: 0.5px;
}

/* ===========================
   Footer
   =========================== */

.footer {
    border-top: 1px solid var(--border);
    padding: 48px var(--px);
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer__socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__socials a {
    color: var(--grey-dim);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer__socials a:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 13px;
    color: var(--grey-dim);
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__copy {
    font-size: 12px;
    color: var(--grey-dim);
}

@media (max-width: 640px) {
    .footer__top {
        flex-direction: column;
        gap: 20px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer__links {
        gap: 20px;
    }
}

/* ===========================
   Scroll Reveal Animations
   =========================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Device float-in */
.reveal-device {
    opacity: 0;
    transform: translateY(60px) rotate(6deg);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s,
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.reveal-device.visible {
    opacity: 1;
    transform: translateY(0) rotate(3deg);
}

/* ===========================
   Mobile adjustments
   =========================== */

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px var(--px) 48px;
    }

    .hero__eyebrow {
        margin-bottom: 20px;
    }

    .hero__title {
        font-size: clamp(44px, 12vw, 72px);
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero__sub {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .process {
        padding: 0 var(--px) 64px;
    }

    .showcase {
        padding: 80px var(--px);
    }

    .showcase__title {
        margin-bottom: 40px;
    }

    .cta {
        padding: 100px var(--px);
    }

    .features {
        padding: 80px var(--px);
    }

    .faq {
        padding: 80px var(--px);
    }

    .stats {
        padding: 64px var(--px);
    }
}
