:root {
    --ink: #07111f;
    --ink-soft: #102033;
    --paper: #f2f3ee;
    --white: #fff;
    --blue: #4460ff;
    --blue-dark: #3148d9;
    --lime: #cbff4a;
    --line: #d9ddd5;
    --muted: #5d6873;
    --radius: 22px;
    --shadow: 0 22px 70px rgba(7, 17, 31, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-150%); padding: 10px 16px; background: var(--lime); color: var(--ink); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    padding: 24px 0;
    color: var(--white);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 22px; font-weight: 790; letter-spacing: -.045em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 10px; font-size: 16px; letter-spacing: 0; }
.brand-dot { color: var(--lime); }
nav { display: flex; gap: 34px; margin-left: auto; }
nav a { color: rgba(255,255,255,.68); font-size: 14px; font-weight: 620; transition: color .2s; }
nav a:hover { color: var(--white); }

.language-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
}
.language-switcher a {
    display: grid;
    place-items: center;
    min-width: 31px;
    height: 28px;
    border-radius: 7px;
    color: rgba(255,255,255,.58);
    font: 750 9px/1 ui-monospace, monospace;
    letter-spacing: .06em;
    transition: background .2s, color .2s;
}
.language-switcher a:hover { color: var(--white); }
.language-switcher a.active { background: var(--lime); color: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 54px; padding: 0 23px; border: 0; border-radius: 12px; font-size: 14px; font-weight: 760; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; gap: 14px; padding: 0 17px; }
.button-dark { background: var(--white); color: var(--ink); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 30px rgba(68,96,255,.25); }
.button-primary:hover { background: var(--blue-dark); }
.button-light { background: var(--lime); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.74); }
.text-link span { color: var(--lime); }

.hero { position: relative; display: flex; flex-direction: column; min-height: 100svh; overflow: hidden; background: var(--ink); color: var(--white); padding: 158px 0 0; }
.hero::before { content: ""; position: absolute; width: 640px; height: 640px; top: -320px; right: -100px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hero-grid { display: grid; flex: 1; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; min-height: 0; padding-bottom: 56px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
.hero h1, .section h2, .contact h2 { margin: 0; font-size: clamp(52px, 6.2vw, 82px); line-height: .98; letter-spacing: -.068em; font-weight: 770; }
em { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero h1 em { color: var(--lime); }
.hero-lead { max-width: 590px; margin: 28px 0 0; color: #a9b1bc; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.hero-proof { display: flex; gap: 48px; margin-top: 54px; }
.hero-proof > div { display: flex; align-items: center; gap: 13px; }
.hero-proof strong { font-size: 29px; letter-spacing: -.04em; }
.hero-proof span { color: #8d98a7; font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .09em; }

.hero-visual { position: relative; min-height: 510px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: radial-gradient(circle at 46% 48%, #273fb8 0, #132055 27%, #0b1731 57%, #091321 100%); box-shadow: 0 30px 90px rgba(0,0,0,.28); isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 42px 0 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, #000, transparent); }
.visual-topbar { display: flex; align-items: center; gap: 9px; height: 44px; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.1); color: #79889d; font: 600 9px/1 ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.visual-code { margin-left: auto; }
.orbit { position: absolute; top: 53%; left: 50%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 360px; height: 360px; animation: spin 24s linear infinite; }
.orbit-two { width: 265px; height: 265px; animation: spin 18s linear infinite reverse; border-style: dashed; }
.orbit-three { width: 440px; height: 230px; transform: translate(-50%,-50%) rotate(32deg); }
.orbit span { position: absolute; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--lime); color: var(--ink); font: 800 9px/1 ui-monospace, monospace; box-shadow: 0 8px 25px rgba(0,0,0,.35); }
.orbit-one span { top: 11px; left: 67px; }
.orbit-two span { right: -15px; top: 104px; background: var(--white); }
.orbit-three span { bottom: 3px; left: 82px; transform: rotate(-32deg); background: var(--blue); color: var(--white); }
.visual-core { position: absolute; top: 53%; left: 50%; z-index: 2; display: flex; flex-direction: column; align-items: center; transform: translate(-50%,-50%); white-space: nowrap; }
.visual-core span { color: #aeb8ca; font: 500 12px/1 ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; }
.visual-core strong { margin: 4px 0; font-size: 52px; line-height: 1; letter-spacing: -.07em; }
.visual-core small { color: var(--lime); font: italic 18px/1.2 Georgia, serif; }
.visual-note { position: absolute; z-index: 3; padding: 10px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(6,15,29,.72); backdrop-filter: blur(8px); color: #b9c3cf; font: 600 9px/1 ui-monospace, monospace; letter-spacing: .07em; text-transform: uppercase; }
.note-one { left: 20px; top: 117px; transform: rotate(-5deg); }
.note-two { right: 17px; bottom: 82px; transform: rotate(4deg); }
.note-two span { color: var(--lime); margin-left: 7px; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-strip { flex: 0 0 auto; width: 100%; margin-top: auto; overflow: hidden; padding: 13px 0; background: var(--lime); color: var(--ink); }
.hero-strip div { width: max-content; font: 800 11px/1.4 ui-monospace, monospace; letter-spacing: .14em; white-space: nowrap; animation: ticker 22s linear infinite; }
.hero-strip span { margin: 0 18px; }
@keyframes ticker { to { transform: translateX(-30%); } }

.section { padding: 126px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 60px; margin-bottom: 64px; }
.section-heading h2, .clients h2, .about h2, .contact h2 { font-size: clamp(43px, 5.1vw, 68px); }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.eyebrow-dark { color: var(--blue); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 470px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #f9faf7; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--blue); color: var(--white); border-color: var(--blue); }
.card-number { color: #8d969c; font: 700 10px/1 ui-monospace, monospace; }
.featured .card-number { color: rgba(255,255,255,.6); }
.service-symbol { display: grid; place-items: center; width: 70px; height: 70px; margin: 56px 0 30px; border: 1px solid var(--line); border-radius: 50%; font-size: 30px; }
.featured .service-symbol { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.service-card h3 { margin: 0 0 13px; font-size: 24px; line-height: 1.15; letter-spacing: -.04em; }
.service-card p { margin: 0 0 26px; color: var(--muted); font-size: 14px; }
.featured p { color: rgba(255,255,255,.7); }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 0; list-style: none; }
.service-card li { padding: 6px 10px; border: 1px solid var(--line); border-radius: 100px; color: #5e6871; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.featured li { color: var(--white); border-color: rgba(255,255,255,.2); }
.service-link { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.featured .service-link { border-color: rgba(255,255,255,.2); }
.service-link span { font-size: 18px; }

.about { overflow: hidden; background: var(--ink); color: var(--white); }
.about-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 100px; }
.eyebrow-light { color: var(--lime); }
.about h2 { margin-bottom: 44px; }
.about h2 em { color: var(--lime); }
.about-lead { max-width: 580px; margin: 35px 0 52px; color: #c3cbd4; font-size: 24px; line-height: 1.45; letter-spacing: -.025em; }
.principles { border-top: 1px solid rgba(255,255,255,.14); }
.principles > div { display: grid; grid-template-columns: 40px 1fr; column-gap: 10px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.principles span { color: var(--lime); font: 700 10px/1.6 ui-monospace, monospace; }
.principles h3 { margin: 0 0 6px; font-size: 17px; }
.principles p { grid-column: 2; margin: 0; color: #8994a1; font-size: 14px; }

.clients-intro { margin-bottom: 55px; }
.client-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.client-card { position: relative; overflow: hidden; min-height: 410px; padding: 29px; border-radius: 26px; }
.client-smartbarrel { background: #d9f0e5; color: #153c32; }
.client-smart145 { background: #e6e6ff; color: #161640; }
.client-meta { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid currentColor; opacity: .55; font: 700 9px/1 ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.client-brand { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 220px; }
.client-brand h3 { margin: 0; font-size: clamp(31px, 4vw, 48px); letter-spacing: -.06em; }
.client-brand h3 small { display: block; font-size: 9px; letter-spacing: .3em; text-align: right; }
.barrel-mark { display: flex; align-items: center; justify-content: center; gap: 3px; width: 54px; height: 54px; border: 2px solid currentColor; border-radius: 50%; transform: rotate(-15deg); }
.barrel-mark span { width: 5px; height: 31px; border: 1px solid currentColor; border-radius: 5px; }
.number-mark { display: grid; place-items: center; width: 61px; height: 61px; border: 2px solid currentColor; border-radius: 15px 4px 15px 4px; font-size: 14px; font-weight: 800; transform: rotate(-5deg); }
.client-card > p { max-width: 450px; margin: 0; font-size: 14px; opacity: .72; }
.client-note { max-width: 520px; margin: 52px auto 0; text-align: center; color: var(--muted); }
.client-note strong { color: var(--ink); }

.process { padding-top: 40px; }
.section-heading.compact { grid-template-columns: 1fr; }
.process-list { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { min-height: 285px; padding: 24px 22px; border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list > li > span { display: inline-block; margin-bottom: 92px; color: var(--blue); font: 700 10px/1 ui-monospace, monospace; }
.process-list h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.contact { padding: 120px 0; background: var(--blue); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact h2 { font-size: clamp(48px, 5.5vw, 72px); }
.contact h2 em { color: var(--lime); }
.contact-copy > p:not(.eyebrow) { max-width: 470px; margin: 30px 0; color: rgba(255,255,255,.72); font-size: 17px; }
.response-time { display: flex; align-items: center; gap: 16px; margin-top: 45px; }
.response-time > span { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--lime); }
.response-time div { display: flex; flex-direction: column; }
.response-time small { color: rgba(255,255,255,.58); }
.form-card { padding: 36px; border-radius: 25px; background: var(--white); color: var(--ink); box-shadow: 0 24px 70px rgba(8,18,71,.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.field label span { color: var(--blue); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dce0e5; border-radius: 10px; outline: none; background: #f8f9f7; color: var(--ink); transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(68,96,255,.12); }
.field input::placeholder, .field textarea::placeholder { color: #9aa2aa; }
.field-error { display: block; margin-top: 5px; color: #be2937; font-size: 12px; }
.form-footer { display: flex; align-items: center; gap: 22px; margin-top: 6px; }
.form-footer small { max-width: 250px; color: #84909b; font-size: 10px; line-height: 1.45; }
.honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 20px; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.alert-success { background: #e4f7ec; color: #14623a; }
.alert-error { background: #fff0f0; color: #9f2631; }

footer { padding: 72px 0 25px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .6fr 1fr; gap: 60px; padding-bottom: 65px; }
.brand-light .brand-mark { border-color: rgba(255,255,255,.25); }
.footer-grid > div:first-child p { color: #7d8998; font-size: 14px; }
.footer-nav, .footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-nav > span, .footer-cta > span { margin-bottom: 8px; color: #667382; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a { color: #abb4bf; font-size: 13px; }
.footer-nav a:hover { color: var(--white); }
.footer-cta a { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 19px; font-weight: 700; }
.footer-cta a span { color: var(--lime); margin-left: 18px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #596675; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }

.service-hero { padding: 190px 0 110px; background: var(--ink); color: var(--white); }
.service-hero-inner { max-width: 980px; }
.service-back { display: inline-flex; gap: 12px; margin-bottom: 70px; color: #8d98a7; font-size: 12px; font-weight: 700; }
.service-hero h1 { max-width: 950px; margin: 0; font-size: clamp(55px, 7.6vw, 96px); line-height: .95; letter-spacing: -.07em; }
.service-hero-inner > p:not(.eyebrow) { max-width: 720px; margin: 32px 0; color: #a9b1bc; font-size: 20px; }
.service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.service-overview h2, .service-deliverables h2, .service-faq h2 { margin: 0; font-size: clamp(38px, 4.7vw, 62px); line-height: 1.02; letter-spacing: -.055em; }
.service-prose p { margin: 0 0 24px; color: var(--muted); font-size: 18px; }
.service-benefits { padding-top: 20px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.benefit-grid article { min-height: 310px; padding: 28px; border: 1px solid var(--line); border-top: 0; border-right: 0; }
.benefit-grid article:last-child { border-right: 1px solid var(--line); }
.benefit-grid article > span { color: var(--blue); font: 700 10px/1 ui-monospace, monospace; }
.benefit-grid h2 { margin: 100px 0 12px; font-size: 23px; line-height: 1.1; letter-spacing: -.04em; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.service-deliverables { background: var(--blue); color: var(--white); }
.deliverables-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.deliverables-grid ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.deliverables-grid li { display: flex; align-items: center; gap: 18px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 18px; }
.deliverables-grid li span { color: var(--lime); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.service-faq details { border-top: 1px solid var(--line); }
.service-faq details:last-child { border-bottom: 1px solid var(--line); }
.service-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; font-weight: 720; list-style: none; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary span { color: var(--blue); font-size: 23px; font-weight: 400; }
.service-faq details[open] summary span { transform: rotate(45deg); }
.service-faq details p { margin: -5px 40px 25px 0; color: var(--muted); }
.service-cta { padding: 90px 0; background: var(--ink); color: var(--white); }
.service-cta .container { display: grid; grid-template-columns: 1fr .7fr auto; align-items: center; gap: 45px; }
.service-cta p { margin: 0; font-size: clamp(33px, 4vw, 52px); line-height: 1.03; font-weight: 750; letter-spacing: -.05em; }
.service-cta .container > span { color: #8d98a7; font-size: 14px; }
.service-cta b { font-size: 18px; }
.service-footer { padding-bottom: 45px; }

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

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-visual { min-height: 480px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child { grid-column: 1 / -1; min-height: 400px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
    .about-statement { max-width: 720px; }
    .process-list { grid-template-columns: 1fr 1fr; }
    .process-list li:nth-child(3) { border-left: 1px solid var(--line); }
    .contact-copy { max-width: 700px; }
    .service-overview-grid, .deliverables-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .service-cta .container { grid-template-columns: 1fr 1fr; }
    .service-cta .button { justify-self: start; }
}

@media (max-width: 860px) {
    nav { display: none; }
    .language-switcher { margin-left: auto; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 30px, 1180px); }
    .site-header { padding-top: 18px; }
    .header-cta { display: none; }
    .brand { font-size: 19px; }
    .brand-mark { width: 31px; height: 31px; }
    .hero { padding-top: 125px; }
    .hero-grid { gap: 50px; padding-bottom: 70px; }
    .hero h1 { font-size: clamp(46px, 13vw, 65px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
    .hero-actions .button { align-self: flex-start; }
    .hero-proof { gap: 28px; }
    .hero-visual { min-height: 410px; }
    .orbit-one { width: 300px; height: 300px; }
    .orbit-two { width: 220px; height: 220px; }
    .orbit-three { width: 340px; }
    .visual-core strong { font-size: 43px; }
    .section { padding: 90px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
    .section-heading h2, .clients h2, .about h2, .contact h2 { font-size: clamp(40px, 12vw, 57px); }
    .service-grid, .client-grid { grid-template-columns: 1fr; }
    .service-card, .service-card:last-child { grid-column: auto; min-height: 430px; }
    .about-grid { gap: 30px; }
    .about-lead { font-size: 20px; }
    .client-card { min-height: 370px; }
    .process { padding-top: 10px; }
    .process-list { grid-template-columns: 1fr; }
    .process-list li, .process-list li:nth-child(3) { min-height: auto; padding: 25px 18px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .process-list > li > span { margin-bottom: 45px; }
    .contact { padding: 90px 0; }
    .form-card { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-footer { align-items: flex-start; flex-direction: column; }
    .form-footer .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .service-hero { padding: 145px 0 80px; }
    .service-back { margin-bottom: 45px; }
    .service-hero h1 { font-size: clamp(46px, 13vw, 68px); }
    .service-hero-inner > p:not(.eyebrow) { font-size: 17px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article, .benefit-grid article:last-child { min-height: 250px; border-right: 1px solid var(--line); }
    .benefit-grid h2 { margin-top: 65px; }
    .service-cta .container { grid-template-columns: 1fr; }
}

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