:root {
    --black: #080808;
    --black-soft: #111111;
    --graphite: #1b1b1b;
    --gray-900: #292929;
    --gray-700: #545454;
    --gray-500: #8d8d8d;
    --gray-300: #c9c9c9;
    --gray-100: #eeeeee;
    --off-white: #f7f7f5;
    --white: #ffffff;
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --shadow: 0 30px 80px rgba(0, 0, 0, .16);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--off-white);
    color: var(--black);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; position: relative; z-index: 2; }
.section-dark { background: var(--black); color: var(--white); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 1000; background: white; color: black; padding: 10px 16px; border-radius: 0 0 10px 10px; }
.skip-link:focus { top: 0; }
.noise { position: fixed; inset: 0; opacity: .035; pointer-events: none; z-index: 99; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity .2s ease, width .25s ease, height .25s ease, background .25s ease; }
.cursor-dot { width: 7px; height: 7px; background: white; mix-blend-mode: difference; }
.cursor-ring { width: 38px; height: 38px; border: 1px solid white; mix-blend-mode: difference; }
.cursor-ring.is-hovering { width: 64px; height: 64px; background: white; }
@media (pointer: fine) { body, a, button, input, label { cursor: none; } .cursor-dot, .cursor-ring { opacity: 1; } }

.site-header { height: 82px; padding: 0 max(24px, calc((100vw - var(--container)) / 2)); position: absolute; inset: 0 0 auto; z-index: 20; display: flex; align-items: center; justify-content: space-between; color: white; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-header.is-scrolled { position: fixed; height: 70px; background: rgba(8,8,8,.88); backdrop-filter: blur(20px); animation: headerIn .35s ease; }
@keyframes headerIn { from { transform: translateY(-100%); } }
.brand { display: inline-flex; align-items: center; gap: 8px; letter-spacing: -.04em; }
.brand-logo { display: block; width: 158px; height: auto; object-fit: contain; }
.brand-mark { width: 30px; height: 26px; position: relative; display: inline-block; }
.brand-mark span { position: absolute; width: 13px; height: 26px; border: 3px solid currentColor; border-radius: 12px; transform: rotate(35deg); }
.brand-mark span:last-child { left: 11px; transform: rotate(-35deg); }
.brand-name { font: 800 18px/1 "Manrope", sans-serif; }
.brand-product { font-size: 9px; letter-spacing: .18em; color: var(--gray-300); margin-left: 2px; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; color: #cfcfcf; transition: color .2s ease; }
.main-nav a:hover { color: white; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 11px; }
.menu-toggle span { display: block; height: 1px; background: white; margin: 7px 0; transition: transform .25s ease; }

.button { border: 1px solid transparent; border-radius: 100px; min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button i { transition: transform .25s ease; }
.button:hover i { transform: translateX(4px); }
.button-small { min-height: 42px; padding: 0 19px; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); font-size: 13px; }
.button-small:hover { background: white; color: black; }
.button-primary { background: white; color: black; box-shadow: 0 12px 36px rgba(255,255,255,.16); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(255,255,255,.22); }
.button-outline { border-color: #bdbdbd; background: transparent; color: black; width: 100%; }
.button-outline:hover { background: black; color: white; border-color: black; }
.button-light { background: white; color: black; min-height: 62px; padding-inline: 32px; }

.hero { min-height: 800px; height: max(800px, 100svh); padding: 135px 0 72px; position: relative; overflow: hidden; display: grid; place-items: center; }
.hero::before { content: "DUOO"; position: absolute; bottom: -19vw; left: -3vw; font: 800 clamp(230px, 40vw, 650px)/1 "Manrope", sans-serif; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); letter-spacing: -.09em; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow, .section-index { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .17em; color: var(--gray-300); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: white; box-shadow: 0 0 0 7px rgba(255,255,255,.1); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); } }
.hero h1, .section-heading h2, .final-content h2 { font-family: "Manrope", sans-serif; letter-spacing: -.055em; line-height: .98; margin: 22px 0; }
.hero h1 { font-size: clamp(54px, 6vw, 88px); max-width: 760px; }
.hero h1 span, .section-heading h2 span, .final-content h2 span { color: var(--gray-500); }
.hero-text { font-size: clamp(17px, 1.7vw, 21px); color: #b9b9b9; max-width: 640px; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: #d7d7d7; font-weight: 600; font-size: 14px; }
.text-link:hover { color: white; }
.quick-proof { margin-top: 42px; display: flex; align-items: center; gap: 16px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 36px; height: 36px; border-radius: 50%; background: #333; border: 2px solid black; display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-left: -9px; }
.avatar-stack span:first-child { margin-left: 0; background: #dedede; color: #111; }
.stars { color: white; display: flex; gap: 3px; font-size: 10px; }
.quick-proof p { margin: 2px 0 0; color: #999; font-size: 12px; }
.quick-proof strong { color: white; }

.hero-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.17), rgba(255,255,255,0) 66%); }
.phone { width: 290px; height: 585px; border: 7px solid #2e2e2e; border-radius: 44px; background: #111; padding: 8px; box-shadow: 0 45px 90px rgba(0,0,0,.55), inset 0 0 0 1px #555; position: relative; z-index: 3; transform: rotate(4deg); }
.phone.phone-image { height: auto; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: 0 45px 90px rgba(0,0,0,.55); }
.phone-image img { display: block; width: 100%; height: auto; }
.phone-speaker { position: absolute; z-index: 5; width: 84px; height: 22px; left: 50%; top: 12px; transform: translateX(-50%); background: #080808; border-radius: 20px; }
.phone-screen { height: 100%; border-radius: 32px; background: #f3f3f1; color: #111; padding: 33px 18px 17px; overflow: hidden; }
.phone-top { display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.mini-brand { font: 800 13px "Manrope", sans-serif; letter-spacing: -.04em; }
.phone-kicker { font-size: 10px; color: #747474; margin: 28px 0 0; }
.phone-screen h2 { font: 800 21px/1.1 "Manrope", sans-serif; letter-spacing: -.04em; margin: 3px 0 14px; }
.category-row { display: flex; gap: 6px; margin-bottom: 16px; }
.category-row span { border: 1px solid #ddd; border-radius: 100px; font-size: 8px; padding: 5px 9px; }
.category-row span:first-child { background: black; color: white; border-color: black; }
.product-card { background: white; border-radius: 16px; padding: 10px; display: grid; grid-template-columns: 60px 1fr 25px; align-items: center; gap: 10px; margin-bottom: 10px; box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.product-image { width: 60px; height: 64px; border-radius: 12px; display: grid; place-items: center; font-size: 28px; }
.product-burger { background: #dedede; } .product-drink { background: #c9c9c9; }
.product-card strong, .product-card small, .product-card b { display: block; }
.product-card strong { font-size: 10px; } .product-card small { font-size: 7px; color: #777; line-height: 1.4; margin: 3px 0 8px; } .product-card b { font-size: 9px; }
.product-card button { border: 0; background: black; color: white; width: 24px; height: 24px; padding: 0; border-radius: 50%; font-size: 9px; }
.phone-cart { border: 0; border-radius: 12px; background: black; color: white; width: 100%; padding: 12px; display: flex; justify-content: space-between; font-size: 8px; margin-top: 17px; }
.floating-card { position: absolute; z-index: 4; background: rgba(32,32,32,.9); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(16px); border-radius: 16px; padding: 12px 15px; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow); }
.floating-card small, .floating-card strong { display: block; } .floating-card small { color: #aaa; font-size: 9px; } .floating-card strong { font-size: 11px; }
.floating-icon { background: white; color: black; border-radius: 50%; width: 31px; height: 31px; display: grid; place-items: center; }
.floating-order { left: -5px; top: 21%; } .floating-growth { right: -9px; bottom: 23%; }
.floating-growth > i { font-size: 18px; } .floating-growth strong { font-size: 17px; }
.qr-card { position: absolute; z-index: 5; right: 15px; top: 13%; background: white; color: black; border-radius: 14px; padding: 11px; display: flex; gap: 9px; align-items: center; transform: rotate(6deg); box-shadow: var(--shadow); }
.qr-card i { font-size: 32px; } .qr-card span { font-size: 8px; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
.scroll-hint { position: absolute; bottom: 23px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.scroll-hint span { width: 27px; height: 1px; background: #777; animation: scrollLine 1.8s infinite; transform-origin: left; }
@keyframes scrollLine { 50% { transform: scaleX(.35); } }
.parallax-orb { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.orb-one { width: 550px; height: 550px; right: -180px; top: -150px; box-shadow: inset 0 0 100px rgba(255,255,255,.02); }
.orb-two { width: 190px; height: 190px; left: 38%; bottom: 4%; }

.problem-section, .impact, .pricing { padding: 130px 0; }
.section-heading { margin-bottom: 58px; }
.section-heading .section-index { color: #6e6e6e; }
.section-heading h2 { font-size: clamp(42px, 5.3vw, 72px); max-width: 850px; }
.problem-grid { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: center; }
.problem-card, .solution-card { border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); min-height: 405px; }
.problem-card { background: #e9e9e6; color: #666; }
.solution-card { background: black; color: white; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.card-label { display: inline-flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.card-label i { border-radius: 50%; border: 1px solid currentColor; width: 23px; height: 23px; display: grid; place-items: center; font-size: 9px; }
.problem-grid h3 { font: 700 clamp(26px,3vw,38px)/1.12 "Manrope", sans-serif; color: var(--black); letter-spacing: -.04em; margin: 48px 0 15px; }
.solution-card h3 { color: white; }
.problem-grid p { font-size: 15px; max-width: 450px; }
.problem-grid ul, .price-card ul { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 11px; font-size: 13px; }
.problem-grid li i { width: 20px; margin-right: 5px; }
.transformation-arrow { width: 70px; height: 70px; border-radius: 50%; background: white; border: 8px solid var(--off-white); display: grid; place-items: center; z-index: 3; font-size: 20px; }

.features { padding: 130px 0; position: relative; overflow: hidden; }
.features-lines { position: absolute; inset: 0; opacity: .14; background: repeating-radial-gradient(circle at 80% 25%, transparent 0 55px, #666 56px 57px, transparent 58px 78px); }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.heading-row h2 { margin-bottom: 0; }
.heading-row > p { max-width: 370px; color: #999; margin: 0 0 8px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 315px; border: 1px solid #292929; background: rgba(20,20,20,.82); border-radius: var(--radius); padding: 30px; overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: #686868; background: #181818; }
.feature-large { grid-row: span 2; min-height: 646px; }
.feature-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 190px; align-items: center; gap: 20px; }
.feature-number { color: #666; font-size: 10px; letter-spacing: .14em; }
.feature-icon { position: absolute; top: 27px; right: 28px; font-size: 21px; color: #cfcfcf; }
.feature-card h3 { font: 700 23px "Manrope", sans-serif; letter-spacing: -.035em; margin: 68px 0 12px; }
.feature-card p { color: #898989; font-size: 14px; max-width: 340px; }
.feature-art { margin: 65px auto 0; width: 175px; height: 175px; border-radius: 25px; background: white; color: black; display: grid; place-items: center; transform: rotate(-5deg); box-shadow: 0 25px 55px #000; }
.qr-art i { font-size: 100px; } .qr-art span { position: absolute; margin-top: 145px; font-size: 8px; text-transform: uppercase; letter-spacing: .2em; }
.kds-preview { display: grid; gap: 7px; margin-top: 48px; transform: rotate(2deg); }
.kds-preview span { background: #e8e8e8; color: #555; padding: 10px 12px; border-radius: 8px; font-size: 9px; display: flex; justify-content: space-between; }
.kds-preview b { color: black; }
.zero-fee { width: 155px; height: 155px; border: 1px solid #4b4b4b; border-radius: 50%; display: grid; place-content: center; text-align: center; box-shadow: 0 0 0 16px #161616, 0 0 0 17px #2d2d2d; }
.zero-fee strong { font: 800 42px "Manrope", sans-serif; letter-spacing: -.08em; } .zero-fee span { color: #888; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.feature-brand { background: linear-gradient(135deg, #181818, #101010); }
.feature-brand h3 { margin-top: 50px; }
.feature-brand p { max-width: 470px; }
.brand-customizer { position: relative; min-height: 215px; display: grid; place-items: center; }
.brand-preview { width: 178px; height: 200px; border-radius: 22px; padding: 23px 18px; background: #f1f1ef; color: #111; box-shadow: 0 25px 55px rgba(0,0,0,.45); transform: rotate(4deg); display: flex; flex-direction: column; align-items: flex-start; }
.preview-logo { font: 800 8px "Manrope", sans-serif; letter-spacing: .12em; }
.preview-title { max-width: 120px; margin-top: 42px; font: 800 23px/1.02 "Manrope", sans-serif; letter-spacing: -.05em; }
.preview-button { margin-top: auto; width: 100%; padding: 9px 10px; border-radius: 100px; background: #111; color: white; font-size: 7px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.color-palette { position: absolute; left: -14px; bottom: 8px; display: flex; gap: 6px; padding: 9px; border: 1px solid #393939; border-radius: 100px; background: rgba(20,20,20,.92); backdrop-filter: blur(10px); box-shadow: 0 15px 35px rgba(0,0,0,.35); }
.color-palette span { width: 21px; height: 21px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.color-palette span:nth-child(1) { background: #f1f1ef; }
.color-palette span:nth-child(2) { background: #858585; }
.color-palette span:nth-child(3) { background: #353535; }
.color-palette span:nth-child(4) { background: #080808; }

.comparison { border: 1px solid #d7d7d4; border-radius: var(--radius); overflow: hidden; background: white; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-head { background: black; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.comparison-head span, .comparison-row div { padding: 21px 33px; }
.comparison-head span + span, .comparison-row div + div { border-left: 1px solid rgba(128,128,128,.25); }
.comparison-row { border-top: 1px solid #e4e4e1; }
.comparison-row div { color: #777; display: flex; align-items: center; gap: 14px; }
.comparison-row div + div { color: #111; font-weight: 700; background: #f3f3f1; }
.comparison-row i { width: 28px; height: 28px; border: 1px solid #cfcfcf; border-radius: 50%; display: grid; place-items: center; font-size: 10px; }

.testimonials { padding: 130px 0; }
.quote-mark { font: 800 150px/.4 Georgia, serif; color: #2a2a2a; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.testimonial-card { margin: 0; min-height: 350px; border: 1px solid #292929; border-radius: var(--radius); padding: clamp(28px, 4vw, 45px); display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, #161616, #0d0d0d); }
.testimonial-card blockquote { margin: 28px 0 40px; font: 500 clamp(20px,2.5vw,29px)/1.45 "Manrope", sans-serif; letter-spacing: -.03em; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 13px; }
.person-avatar { width: 43px; height: 43px; border-radius: 50%; background: white; color: black; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.testimonial-card figcaption strong, .testimonial-card figcaption small { display: block; }
.testimonial-card figcaption strong { font-size: 13px; } .testimonial-card figcaption small { color: #777; font-size: 11px; }
.disclaimer { text-align: center; color: #5e5e5e; font-size: 10px; margin: 28px 0 0; }

.pricing-heading { text-align: center; }
.pricing-heading h2 { margin-inline: auto; }
.pricing-heading p { color: #777; }
.pricing-grid { max-width: 920px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center; }
.price-card { background: white; border: 1px solid #dededb; border-radius: var(--radius); padding: 40px; position: relative; }
.price-card.featured { background: black; color: white; padding-block: 53px; border-color: black; box-shadow: var(--shadow); }
.plan-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.plan-top i { width: 42px; height: 42px; border: 1px solid #ddd; border-radius: 50%; display: grid; place-items: center; }
.price-card h3 { font: 700 30px/1.12 "Manrope", sans-serif; letter-spacing: -.04em; margin: 45px 0 12px; }
.price-card p { color: #777; font-size: 14px; }
.price-card li { font-size: 13px; }
.price-card li i { width: 20px; }
.price-card .button { margin-top: 35px; width: 100%; }
.popular-tag { position: absolute; right: 25px; top: -13px; background: white; color: black; border: 1px solid black; padding: 5px 12px; border-radius: 100px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.guarantee { display: flex; justify-content: center; align-items: center; gap: 13px; margin-top: 35px; }
.guarantee > i { font-size: 26px; } .guarantee strong, .guarantee span { display: block; } .guarantee strong { font-size: 13px; } .guarantee span { font-size: 11px; color: #777; }

.final-cta { min-height: 690px; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; }
.final-content { max-width: 900px; }
.final-content h2 { font-size: clamp(48px, 7vw, 92px); }
.final-content p { color: #aaa; font-size: 18px; max-width: 640px; margin: 0 auto 32px; }
.final-content small { display: flex; justify-content: center; gap: 18px; color: #777; font-size: 10px; margin-top: 24px; text-transform: uppercase; letter-spacing: .08em; }
.final-content small i { color: #bbb; }
.final-orbit { position: absolute; border: 1px solid #252525; border-radius: 50%; }
.orbit-a { width: 880px; height: 880px; } .orbit-b { width: 560px; height: 560px; border-color: #303030; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 8px; height: 8px; background: white; border-radius: 50%; box-shadow: 0 0 25px white; }
.final-cta::before { left: calc(50% - 440px); top: 50%; } .final-cta::after { right: calc(50% - 280px); top: 29%; }

.site-footer { background: black; color: white; border-top: 1px solid #222; padding: 56px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 30px; }
.footer-grid p { color: #777; font-size: 12px; text-align: center; }
.social-links { display: flex; justify-content: flex-end; gap: 8px; }
.social-links a { width: 38px; height: 38px; border: 1px solid #333; border-radius: 50%; display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.social-links a:hover { background: white; color: black; }
.footer-bottom { border-top: 1px solid #202020; padding-top: 22px; margin-top: 42px; display: flex; justify-content: space-between; color: #5f5f5f; font-size: 10px; }

.lead-modal { width: min(620px, calc(100% - 28px)); max-height: calc(100svh - 28px); border: 0; border-radius: 28px; padding: clamp(28px, 5vw, 50px); box-shadow: 0 40px 120px rgba(0,0,0,.6); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.lead-modal::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(9px); }
.lead-modal[open] { animation: modalIn .35s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(25px) scale(.97); } }
.modal-close { position: absolute; top: 18px; right: 18px; border: 1px solid #ddd; background: white; width: 38px; height: 38px; border-radius: 50%; }
.modal-icon { width: 46px; height: 46px; border-radius: 14px; background: black; color: white; display: grid; place-items: center; margin-bottom: 25px; }
.lead-modal .section-index { color: #777; }
.lead-modal h2 { font: 800 clamp(30px,5vw,46px)/1.05 "Manrope", sans-serif; letter-spacing: -.05em; margin: 12px 0; }
.lead-modal > p { color: #777; margin-bottom: 27px; }
.lead-modal form { display: grid; gap: 15px; }
.lead-modal label { display: grid; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.lead-modal input { min-height: 50px; border: 1px solid #ddd; border-radius: 12px; padding: 0 14px; outline: none; transition: border .2s, box-shadow .2s; text-transform: none; letter-spacing: 0; }
.lead-modal input:focus { border-color: black; box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-modal .button-primary { background: black; color: white; width: 100%; margin-top: 5px; }
.lead-modal form small { text-align: center; color: #888; }
.toast { position: fixed; z-index: 999; right: 24px; bottom: 24px; background: white; color: black; border: 1px solid #ddd; border-radius: 14px; box-shadow: var(--shadow); padding: 15px 18px; display: flex; align-items: center; gap: 10px; font-size: 13px; transform: translateY(130%); opacity: 0; transition: .35s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.delay-1 { transition-delay: .12s; } .reveal.delay-2 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .site-header > .button { display: none; }
    .hero { height: auto; min-height: 100svh; padding-top: 145px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; }
    .hero-visual { margin-top: -20px; }
    .quick-proof { text-align: left; }
    .problem-grid { grid-template-columns: 1fr; gap: 0; }
    .transformation-arrow { transform: rotate(90deg); margin: -18px auto; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-large { grid-row: auto; min-height: 500px; }
    .feature-wide { grid-column: span 2; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-header { height: 70px; padding-inline: 17px; }
    .brand-product { display: none; }
    .brand-logo { width: 128px; }
    .menu-toggle { display: block; order: 3; }
    .main-nav { position: absolute; left: 14px; right: 14px; top: 72px; padding: 20px; border: 1px solid #2d2d2d; border-radius: 16px; background: rgba(12,12,12,.97); backdrop-filter: blur(18px); display: grid; gap: 5px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .25s ease; }
    .main-nav a { padding: 10px; }
    .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .hero { padding: 120px 0 70px; }
    .hero h1 { font-size: clamp(46px, 14vw, 68px); }
    .hero-text { font-size: 16px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 540px; transform: scale(.86); margin-inline: -35px; }
    .phone:not(.phone-image) { height: 565px; }
    .floating-order { left: 0; } .floating-growth { right: 0; }
    .scroll-hint { display: none; }
    .problem-section, .impact, .pricing, .features, .testimonials { padding: 90px 0; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 42px; }
    .heading-row { display: block; }
    .heading-row > p { margin-top: 25px; }
    .problem-card, .solution-card { min-height: auto; }
    .problem-grid h3 { margin-top: 35px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-large, .feature-card { min-height: 360px; }
    .feature-large { min-height: 535px; }
    .feature-wide { grid-column: auto; grid-template-columns: 1fr; }
    .zero-fee { position: absolute; right: 35px; bottom: 35px; width: 110px; height: 110px; }
    .zero-fee strong { font-size: 30px; }
    .feature-brand { min-height: 540px; }
    .feature-brand .brand-customizer { margin-top: 15px; }
    .brand-preview { width: 190px; }
    .color-palette { left: calc(50% - 120px); }
    .comparison-head { font-size: 9px; }
    .comparison-head span, .comparison-row div { padding: 15px 12px; }
    .comparison-row div { align-items: flex-start; gap: 8px; font-size: 11px; }
    .comparison-row i { flex: 0 0 24px; width: 24px; height: 24px; }
    .testimonial-grid, .pricing-grid { grid-template-columns: 1fr; }
    .quote-mark { display: none; }
    .price-card.featured { order: -1; }
    .final-cta { min-height: 650px; }
    .final-content h2 { font-size: 50px; }
    .final-content small { flex-wrap: wrap; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; justify-items: center; }
    .social-links { justify-content: center; }
    .footer-bottom { display: grid; gap: 10px; text-align: center; }
    .lead-modal { width: calc(100% - 32px); max-height: calc(100svh - 20px); padding: 28px; border-radius: 27px; }
    .lead-modal .modal-icon { margin-bottom: 19px; }
    .lead-modal > p { margin-bottom: 20px; }
    .lead-modal form { gap: 11px; padding-bottom: 4px; }
    .lead-modal input { min-height: 47px; }
    .form-row { grid-template-columns: 1fr; }
    .lead-modal .button-primary { position: sticky; bottom: -1px; z-index: 2; min-height: 54px; margin-top: 4px; box-shadow: 0 -12px 18px 10px #fff; }
    .lead-modal form small { padding-bottom: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
