:root {
  --ink: #081321;
  --ink-2: #101f32;
  --muted: #5c6877;
  --line: #dfe5ec;
  --paper: #ffffff;
  --paper-2: #f4f7fa;
  --blue: #08a8f3;
  --blue-dark: #007fc0;
  --cyan: #70e4ff;
  --red: #ef4b48;
  --green: #84e5a4;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 16px;
  border-radius: 8px; background: var(--paper); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: 82px;
  color: #fff; transition: background .25s, box-shadow .25s, height .25s;
}
.site-header.scrolled {
  height: 70px; background: rgba(7, 17, 31, .94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .22); backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 900; letter-spacing: -.02em; }
.brand > span:last-child { font-size: 19px; }
.brand > span:last-child span { color: var(--blue); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #4ed9ff); color: #042036;
  font-size: 14px; font-weight: 1000; box-shadow: 0 8px 26px rgba(8, 168, 243, .28);
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700; }
.site-nav > a:not(.button):hover, .site-nav > a:not(.button):focus-visible { color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { width: 25px; height: 2px; margin: 5px 0; display: block; background: #fff; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 12px 24px; border: 1px solid var(--blue);
  border-radius: 12px; background: var(--blue); color: #041421; font-weight: 850;
  box-shadow: 0 13px 32px rgba(8, 168, 243, .22); transition: transform .18s, background .18s, border-color .18s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #37c3ff; border-color: #37c3ff; }
.button-small { min-height: 42px; padding: 8px 17px; font-size: 14px; border-radius: 10px; }
.button-block { width: 100%; }
.button-dark { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.button-dark:hover, .button-dark:focus-visible { background: var(--ink-2); border-color: var(--ink-2); }
.button-outline { background: transparent; border-color: rgba(255,255,255,.28); box-shadow: none; color: #fff; }
.button-outline:hover, .button-outline:focus-visible { background: #fff; border-color: #fff; color: var(--ink); }
.button-light { background: #fff; border-color: #fff; color: var(--ink); box-shadow: none; }
.button-light:hover, .button-light:focus-visible { background: var(--paper-2); border-color: var(--paper-2); }
.text-link { display: inline-flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.42); color: #fff; font-weight: 750; }
.dark-link { color: var(--blue-dark); border-color: rgba(0,127,192,.3); overflow-wrap: anywhere; }

.hero {
  position: relative; min-height: 820px; overflow: hidden; padding: 175px 0 0;
  color: #fff; background:
    radial-gradient(circle at 75% 30%, rgba(8,168,243,.18), transparent 31%),
    radial-gradient(circle at 20% 70%, rgba(239,75,72,.10), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0d1e32 55%, #07111f 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .2; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 55px 55px; mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 80px; }
.hero-layout > *, .quote-layout > *, .form-grid > * { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--blue-dark); }
.hero h1, .section h2, .cta-section h2, .legal-page h1 {
  margin: 0; letter-spacing: -.05em; line-height: 1.03;
}
.hero h1 { max-width: 700px; font-size: clamp(48px, 5.8vw, 78px); }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 32px; color: #b8c5d4; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; margin: 34px 0 0; padding: 0; list-style: none; color: #c8d2de; font-size: 13px; font-weight: 700; }
.trust-list span { color: var(--green); margin-right: 6px; }

.code-window {
  position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  background: rgba(4, 12, 23, .82); box-shadow: 0 40px 90px rgba(0,0,0,.38); transform: rotate(1.2deg);
}
.window-bar { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); color: #708195; font-size: 12px; }
.window-bar div { display: flex; gap: 7px; }
.window-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ef5b55; }
.window-bar i:nth-child(2) { background: #eeb848; }
.window-bar i:nth-child(3) { background: #56c879; }
.code-window pre { margin: 0; padding: 46px 34px 58px; overflow: hidden; color: #d8e4ef; font: 15px/2.1 "SFMono-Regular", Consolas, monospace; }
.code-muted { color: #64768a; }
.code-blue { color: #57baff; }
.code-cyan { color: #76e6f3; }
.code-green { color: #9ee6a9; }
.quality-card {
  position: absolute; display: flex; flex-direction: column; min-width: 142px; padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: #10243a;
  box-shadow: 0 18px 38px rgba(0,0,0,.3); transform: rotate(-1.2deg);
}
.quality-card strong { color: var(--cyan); font-size: 24px; line-height: 1; }
.quality-card span { margin-top: 5px; color: #9dafc1; font-size: 11px; }
.quality-card-one { left: -38px; bottom: -42px; }
.quality-card-two { right: -28px; top: 82px; }
.client-strip {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-top: 125px; min-height: 92px; border-top: 1px solid rgba(255,255,255,.1);
  color: #77899d; text-transform: uppercase; font-size: 11px; letter-spacing: .12em;
}
.client-strip strong { color: #b8c5d4; font-size: 12px; letter-spacing: .08em; }

.section { padding: 115px 0; }
.section h2, .cta-section h2 { font-size: clamp(38px, 4.4vw, 58px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 58px; }
.section-heading > div { max-width: 700px; }
.section-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--muted); }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > div, .section-heading.centered > p { margin-inline: auto; }
.section-heading.centered > p { margin-top: 22px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; min-height: 470px; padding: 38px 34px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  box-shadow: 0 14px 36px rgba(7,17,31,.04); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.service-number { position: absolute; top: 30px; right: 30px; color: #9ea9b6; font: 800 12px/1 monospace; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: #e7f7ff; color: var(--blue-dark); font-weight: 1000; }
.featured .service-icon { background: rgba(8,168,243,.16); color: var(--cyan); }
.service-card h3 { margin: 30px 0 13px; font-size: 25px; letter-spacing: -.03em; }
.service-card p { color: var(--muted); }
.featured p { color: #9dafc1; }
.service-card ul, .price-card ul { display: grid; gap: 11px; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: rgba(255,255,255,.12); }
.service-card li, .price-card li { position: relative; padding-left: 21px; color: #526070; font-size: 14px; }
.featured li { color: #c1cbd6; }
.service-card li::before, .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-dark); font-weight: 900; }
.featured li::before { color: var(--cyan); }

.section-dark { color: #fff; background: var(--ink); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.section-intro { max-width: 470px; margin: 25px 0 34px; color: #9dafc1; font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list > li > span { color: var(--blue); font: 800 13px/1.8 monospace; }
.process-list h3 { margin: 0 0 5px; font-size: 21px; }
.process-list p { margin: 0; color: #9dafc1; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.work-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.work-card-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; align-items: center; padding: 48px; background: #eaf7fd; }
.browser-mock { overflow: hidden; border-radius: 15px; background: #fff; box-shadow: 0 25px 60px rgba(7,17,31,.14); transform: perspective(900px) rotateY(3deg); }
.mock-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 14px; background: #10243a; }
.mock-bar i { width: 7px; height: 7px; border-radius: 50%; background: #ef5b55; }
.mock-bar i:nth-child(2) { background: #eeb848; }
.mock-bar i:nth-child(3) { background: #56c879; }
.mock-page { min-height: 285px; padding: 55px 42px; background: linear-gradient(135deg, #f9fcff, #e8f7ff); }
.mock-page > span, .mock-buttons i, .mock-panels i { display: block; border-radius: 99px; background: #0d2137; }
.mock-pill { width: 80px; height: 9px; opacity: .28; margin-bottom: 22px; }
.mock-title { width: 70%; height: 19px; margin-bottom: 12px; }
.mock-title.short { width: 46%; }
.mock-buttons { display: flex; gap: 12px; margin-top: 25px; }
.mock-buttons i { width: 92px; height: 30px; background: var(--blue); }
.mock-buttons i + i { background: transparent; border: 1px solid #9bb3c5; }
.mock-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 45px; }
.mock-panels i { height: 55px; border-radius: 8px; background: #fff; box-shadow: 0 8px 18px rgba(7,17,31,.07); }
.work-copy span { color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.work-copy h3, .work-card > h3 { margin: 14px 0 12px; font-size: 28px; line-height: 1.2; letter-spacing: -.035em; }
.work-copy p, .work-card > p { margin: 0; color: var(--muted); }
.metric { display: flex; justify-content: space-between; align-items: end; gap: 25px; }
.metric strong { color: var(--blue-dark); font-size: 52px; line-height: 1; letter-spacing: -.06em; }
.metric span { max-width: 155px; color: var(--muted); text-align: right; font-size: 12px; line-height: 1.4; }
.work-card.accent { color: #fff; border-color: var(--ink); background: var(--ink); }
.work-card.accent .metric strong { color: var(--cyan); }
.work-card.accent .metric span, .work-card.accent > p { color: #9dafc1; }

.pricing-section { background: var(--paper-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 36px 30px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.price-card.recommended { border: 2px solid var(--blue); box-shadow: var(--shadow); transform: translateY(-10px); }
.popular { position: absolute; top: -14px; right: 24px; padding: 5px 12px; border-radius: 99px; background: var(--blue); color: #052033; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.plan-label { margin: 0 0 20px; color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.price { display: flex; align-items: start; min-height: 75px; }
.price sup { margin-top: 10px; font-size: 22px; font-weight: 900; }
.price strong { font-size: 60px; line-height: 1; letter-spacing: -.07em; }
.price small { align-self: end; margin: 0 6px 13px; color: var(--muted); }
.price-from > small:first-child { align-self: start; margin: 7px 8px 0 0; }
.price-note { min-height: 26px; margin: 5px 0 0; color: var(--muted); }
.price-card ul { flex: 1; margin-bottom: 30px; }
.pricing-footnote { max-width: 760px; margin: 32px auto 0; color: var(--muted); text-align: center; font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 850; }
.faq-item button i { color: var(--blue-dark); font-style: normal; font-size: 22px; font-weight: 400; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 25px; }

.cta-section { padding: 85px 0; color: #fff; background: var(--blue-dark); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.cta-inner > div:first-child { max-width: 760px; }
.cta-section .eyebrow { color: #c8f3ff; }
.cta-actions { min-width: 240px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.whatsapp-link { border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 750; }

.site-footer { padding: 75px 0 25px; color: #9dafc1; background: #050d17; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1.1fr .8fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:first-child p { max-width: 300px; }
.footer-grid h2 { margin: 4px 0 11px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }
.footer-grid a:hover { color: #fff; }
.footer-brand { margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

/* Quote and legal pages */
.subpage { min-height: 100vh; background: var(--paper-2); }
.subpage .site-header { background: var(--ink); }
.subpage-main { padding: 140px 0 90px; }
.quote-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.quote-intro { position: sticky; top: 115px; }
.quote-intro h1 { margin: 0 0 22px; font-size: clamp(42px, 5vw, 66px); line-height: 1.03; letter-spacing: -.05em; }
.quote-intro > p { color: var(--muted); font-size: 18px; }
.quote-points { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.quote-points li { padding-left: 27px; position: relative; }
.quote-points li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-dark); font-weight: 900; }
.contact-card { margin-top: 30px; padding: 22px; border-radius: 15px; background: var(--ink); color: #fff; }
.contact-card span { display: block; color: #8fa2b5; font-size: 12px; }
.contact-card a { display: block; margin-top: 4px; font-weight: 800; overflow-wrap: anywhere; }
.project-form { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-section + .form-section { margin-top: 38px; padding-top: 35px; border-top: 1px solid var(--line); }
.form-section h2 { margin: 0 0 5px; font-size: 23px; letter-spacing: -.03em; }
.form-section > p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-label { color: #263547; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #cbd5df; border-radius: 10px; background: #fff; color: var(--ink);
  padding: 13px 14px; outline: none; transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,168,243,.13); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { min-height: 88px; display: flex; flex-direction: column; justify-content: center; padding: 15px; border: 1px solid #cbd5df; border-radius: 11px; cursor: pointer; }
.choice label strong { font-size: 14px; }
.choice label span { color: var(--muted); font-size: 12px; }
.choice input:checked + label { border-color: var(--blue); background: #edf9ff; box-shadow: 0 0 0 2px rgba(8,168,243,.12); }
.choice input:focus-visible + label { outline: 3px solid rgba(8,168,243,.3); }
.consent { display: flex; gap: 10px; align-items: start; margin: 25px 0; color: var(--muted); font-size: 13px; }
.consent input { margin-top: 5px; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; }
.status-banner { display: none; margin-bottom: 20px; padding: 13px 16px; border-radius: 10px; background: #fff0ef; color: #9a2422; font-weight: 700; }
.status-banner.visible { display: block; }

.legal-page { max-width: 820px; }
.legal-page h1 { font-size: clamp(44px, 6vw, 68px); }
.legal-page .updated { margin: 16px 0 50px; color: var(--muted); }
.legal-page h2 { margin: 38px 0 10px; font-size: 24px; letter-spacing: -.03em; }
.legal-page p, .legal-page li { color: #4f5e6e; }
.success-card { max-width: 680px; margin: 60px auto; padding: 55px; text-align: center; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.success-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: #e6faed; color: #158441; font-size: 32px; font-weight: 900; }
.success-card h1 { margin: 0; font-size: 44px; letter-spacing: -.05em; }
.success-card p { color: var(--muted); }
.success-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute; top: 70px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch;
    gap: 0; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #0b1929; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 12px 8px; }
  .site-nav .button { margin-top: 10px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; gap: 85px; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .code-window { width: min(650px, 92%); margin-inline: auto; }
  .client-strip { margin-top: 100px; flex-wrap: wrap; justify-content: center; padding: 28px 0; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .price-card.recommended { transform: none; }
  .process-layout, .faq-layout, .quote-layout { grid-template-columns: 1fr; gap: 60px; }
  .quote-intro { position: static; }
  .work-card-large { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header, .site-header.scrolled { height: 66px; }
  .site-nav { top: 62px; left: 14px; right: 14px; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: 39px; }
  .hero .eyebrow { gap: 9px; font-size: 10px; letter-spacing: .13em; }
  .hero .eyebrow > span { width: 20px; flex: 0 0 20px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .trust-list { flex-direction: column; gap: 9px; }
  .code-window { width: 100%; transform: none; }
  .code-window pre { padding: 30px 18px 42px; font-size: 11px; }
  .quality-card { min-width: 120px; padding: 12px; }
  .quality-card-one { left: 12px; bottom: -45px; }
  .quality-card-two { right: 10px; top: 70px; }
  .client-strip { margin-top: 100px; gap: 14px 24px; }
  .client-strip span { width: 100%; text-align: center; }
  .section { padding: 80px 0; }
  .section h2, .cta-section h2 { font-size: 39px; }
  .section-heading { margin-bottom: 38px; }
  .service-card, .work-card, .project-form { padding: 28px 22px; }
  .process-layout { gap: 45px; }
  .process-list li { grid-template-columns: 45px 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-large { padding: 25px; gap: 35px; }
  .mock-page { min-height: 220px; padding: 38px 25px; }
  .metric { display: block; }
  .metric span { display: block; margin-top: 10px; text-align: left; }
  .cta-inner { display: block; text-align: center; }
  .cta-section .eyebrow { justify-content: center; }
  .cta-actions { margin-top: 35px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .subpage-main { padding-top: 110px; }
  .quote-intro h1 { font-size: 38px; }
  .quote-intro > p { font-size: 16px; }
  .contact-card a { font-size: 14px; }
  .success-card { padding: 40px 22px; }
  .success-actions { flex-direction: column; }
}

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