:root {
  --navy: #102a43;
  --navy-deep: #081d33;
  --navy-soft: #173f62;
  --orange: #f97316;
  --orange-dark: #df5d08;
  --gold: #fbbf24;
  --cream: #fffaf3;
  --beige: #fff2e2;
  --paper: #fffdf9;
  --white: #fff;
  --text: #1f2937;
  --muted: #66778a;
  --line: #e7e2da;
  --green: #20b86a;
  --shadow: 0 24px 70px rgba(16, 42, 67, .13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-heading: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.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; z-index: 1000; left: 16px; top: -80px; padding: 10px 18px;
  color: white; background: var(--navy); border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; z-index: 100; top: 0; height: 78px;
  background: rgba(255, 253, 249, .88); border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px); transition: .25s ease;
}
.site-header.scrolled { height: 70px; border-color: rgba(16, 42, 67, .08); box-shadow: 0 5px 24px rgba(16, 42, 67, .05); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-mark { width: 44px; height: 42px; overflow: visible; }
.brand-name {
  color: var(--orange); font: 800 23px/1 var(--font-heading); letter-spacing: -.8px;
}
.brand-name span { color: var(--navy); }
.primary-nav { display: flex; align-items: center; gap: 31px; }
.primary-nav > a {
  color: #35465a; font-size: 14px; font-weight: 600; transition: color .2s;
}
.primary-nav > a:not(.nav-cta):hover { color: var(--orange); }
.primary-nav .nav-cta {
  display: inline-flex; gap: 14px; align-items: center; padding: 11px 17px 11px 20px;
  color: white; background: var(--navy); border-radius: 9px; transition: .2s ease;
}
.primary-nav .nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
.nav-toggle { display: none; padding: 10px; background: none; border: 0; }
.nav-toggle span:not(.sr-only) { width: 24px; height: 2px; margin: 5px; display: block; background: var(--navy); transition: .2s; }

.hero {
  position: relative; padding: 80px 0 38px;
  overflow: hidden; background:
    linear-gradient(rgba(16, 42, 67, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, .022) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: 8%; width: 560px; height: 560px;
  border: 1px solid rgba(249, 115, 22, .11); border-radius: 50%; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { right: 25%; top: 20%; width: 190px; height: 190px; background: rgba(251, 191, 36, .12); }
.hero-orb-two { left: -80px; bottom: 80px; width: 240px; height: 240px; background: rgba(249, 115, 22, .07); }
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 78px; align-items: center;
}
.hero-copy { padding-top: 4px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 1.45px; text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ff9d5e; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--font-heading); }
h1 { font-size: clamp(3.3rem, 5.1vw, 5.3rem); line-height: .99; letter-spacing: -4.8px; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 585px; margin: 27px 0 31px; color: #516477; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.button {
  min-height: 51px; padding: 13px 20px; display: inline-flex; align-items: center; justify-content: center;
  gap: 15px; border: 1px solid transparent; border-radius: 10px;
  font-size: 14px; font-weight: 700; transition: transform .2s, box-shadow .2s, color .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 12px 26px rgba(249, 115, 22, .22); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 15px 30px rgba(249, 115, 22, .28); }
.button-secondary { color: var(--navy); background: white; border-color: #d8dfe5; }
.button-secondary:hover { border-color: var(--navy); }
.button-secondary svg, .button-orange svg { width: 18px; fill: var(--green); }
.hero-trust { margin-top: 31px; display: flex; align-items: center; gap: 14px; }
.trust-faces { display: flex; }
.trust-faces span {
  width: 34px; height: 34px; margin-left: -7px; display: grid; place-items: center;
  border: 2px solid var(--cream); border-radius: 50%; color: white; background: var(--navy);
  font-size: 10px; font-weight: 700;
}
.trust-faces span:first-child { margin-left: 0; background: #335f7b; }
.trust-faces span:nth-child(2) { background: #d05b20; }
.trust-faces span:nth-child(3) { background: #687f4a; }
.trust-faces span:last-child { color: var(--navy); background: #ffd18e; }
.hero-trust p { margin: 0; color: #798897; font-size: 11px; line-height: 1.55; }
.hero-trust strong { color: var(--navy); font-size: 12px; }

.hero-visual { position: relative; min-height: 500px; display: grid; align-items: center; }
.hero-card {
  position: relative; z-index: 2; width: 94%; margin-left: auto; overflow: hidden;
  background: white; border: 8px solid white; border-radius: 21px;
  box-shadow: 0 35px 75px rgba(16, 42, 67, .18); transform: rotate(1.5deg);
}
.browser-bar { height: 39px; padding: 0 12px; display: flex; align-items: center; gap: 6px; background: #f3f4f4; }
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #fd7d72; }
.browser-bar > span:nth-child(2) { background: #f7c151; }
.browser-bar > span:nth-child(3) { background: #63c98a; }
.browser-bar div {
  width: 48%; height: 19px; margin-inline: auto; display: grid; place-items: center;
  color: #8794a0; background: white; border-radius: 5px; font-size: 7px;
}
.mock-site { min-height: 390px; padding: 23px 28px 27px; background: #f7e6cf; position: relative; overflow: hidden; }
.mock-photo {
  position: absolute; z-index: 2; right: 25px; top: 72px; width: 178px; height: 220px;
  padding: 7px; background: #df7843; border-radius: 92px 92px 17px 17px;
  box-shadow: 0 16px 30px rgba(16,42,67,.18); transform: rotate(-3deg);
}
.mock-photo::before {
  content: ""; position: absolute; z-index: -1; inset: -13px -18px 12px 19px;
  border-radius: 50%; background: #ed9a69; opacity: .68;
}
.mock-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
  border-radius: 86px 86px 12px 12px;
}
.mock-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.mock-logo { width: 50px; height: 13px; border-left: 5px solid #d8612e; border-bottom: 2px solid var(--navy); }
.mock-links { display: flex; gap: 10px; }
.mock-links i { width: 22px; height: 3px; border-radius: 5px; background: rgba(16,42,67,.35); }
.mock-hero { position: relative; z-index: 3; padding: 67px 0 49px; }
.mock-hero span { color: #bb5b32; font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.mock-hero h2 { margin: 8px 0 11px; font-size: 31px; line-height: 1.05; letter-spacing: -1.5px; }
.mock-hero p { color: #465c69; font-size: 8px; line-height: 1.65; }
.mock-hero button { padding: 8px 11px; color: white; background: var(--navy); border: 0; border-radius: 3px; font-size: 7px; }
.mock-products { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-products > div { height: 68px; padding: 7px; background: rgba(255,255,255,.78); border-radius: 6px; }
.mock-products b { width: 100%; height: 37px; display: block; border-radius: 4px; background: linear-gradient(145deg, #cca582, #f3d6bb); }
.mock-products div:nth-child(2) b { background: linear-gradient(145deg, #213f52, #9db5bd); }
.mock-products div:nth-child(3) b { background: linear-gradient(145deg, #d16b3b, #f3bb87); }
.mock-products i { width: 65%; height: 3px; margin-top: 5px; display: block; background: #233c50; border-radius: 2px; }
.mock-products small { width: 40%; height: 2px; margin-top: 3px; display: block; background: #d26e42; }
.floating-chip {
  position: absolute; z-index: 4; padding: 11px 14px; display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid rgba(16,42,67,.06); border-radius: 11px;
  box-shadow: 0 12px 32px rgba(16, 42, 67, .15); animation: float 5s ease-in-out infinite;
}
.floating-chip > span { width: 35px; height: 35px; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 8px; }
.floating-chip svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.floating-chip strong { display: block; color: var(--navy); font: 700 11px var(--font-heading); }
.floating-chip small { color: #84909c; font-size: 8px; }
.chip-mobile { left: -13px; top: 40px; }
.chip-growth { right: -8px; bottom: 22px; animation-delay: -2.3s; }
.chip-growth > span { background: var(--navy); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.capability-strip {
  position: relative; z-index: 3; margin-top: 64px; padding: 20px 8px; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(16, 42, 67, .1); border-bottom: 1px solid rgba(16, 42, 67, .1);
}
.capability-strip > div { padding: 3px 28px; display: flex; align-items: center; gap: 13px; border-right: 1px solid rgba(16,42,67,.1); }
.capability-strip > div:last-child { border: 0; }
.capability-strip svg { width: 31px; flex: 0 0 auto; fill: none; stroke: var(--orange); stroke-width: 1.8; }
.capability-strip span { color: #67798a; font-size: 11px; line-height: 1.45; }
.capability-strip strong { color: var(--navy); font-size: 12px; }

.problem-section { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 120px; align-items: end; }
.split-heading h2, .section-heading h2, .work-copy h2, .about-copy h2, .faq-heading h2, .contact-inner h2 {
  font-size: clamp(2.3rem, 4vw, 3.75rem); line-height: 1.12; letter-spacing: -2.6px;
}
.split-copy { padding-bottom: 3px; }
.split-copy p { margin: 0 0 18px; color: var(--muted); line-height: 1.8; }
.text-link {
  display: inline-flex; align-items: center; gap: 12px; color: var(--navy);
  border-bottom: 1px solid rgba(16,42,67,.3); font-size: 13px; font-weight: 700; transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--orange); border-color: var(--orange); }
.outcome-grid { margin-top: 59px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome-card {
  position: relative; min-height: 285px; padding: 34px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius-md); transition: .25s ease;
}
.outcome-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.outcome-card.featured { background: var(--beige); border-color: #f3d9bc; }
.card-number { position: absolute; top: 25px; right: 28px; color: #a8b0b7; font: 700 11px var(--font-heading); }
.icon-box { width: 48px; height: 48px; margin-bottom: 39px; display: grid; place-items: center; color: var(--orange); background: var(--beige); border-radius: 12px; }
.featured .icon-box { background: white; }
.icon-box svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.outcome-card h3 { margin-bottom: 10px; font-size: 21px; }
.outcome-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.services-section { background: #f8f4ed; }
.section-heading.center { max-width: 750px; margin: 0 auto 55px; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading > p { max-width: 600px; margin: 19px auto 0; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  padding: 37px 39px 34px; background: white; border: 1px solid transparent; border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(16,42,67,.04); transition: .25s ease;
}
.service-card:hover { border-color: #f2cfb1; box-shadow: var(--shadow); transform: translateY(-3px); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--orange); background: var(--beige); border-radius: 13px; }
.service-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.service-index { color: #c4c8ca; font: 700 11px var(--font-heading); letter-spacing: 1px; }
.service-card h3 { margin: 25px 0 10px; font-size: 23px; }
.service-card > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; }
.service-card ul { margin: 22px 0 23px; padding: 18px 0 18px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; padding: 0 10px 0 17px; color: #5f7181; font-size: 10px; line-height: 1.45; }
.service-card li::before { content: ""; position: absolute; top: 5px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.service-card > a { display: inline-flex; gap: 12px; color: var(--navy); font-size: 12px; font-weight: 700; }
.service-card > a span { color: var(--orange); transition: transform .2s; }
.service-card > a:hover span { transform: translateX(4px); }

.work-section { position: relative; overflow: hidden; color: white; background: var(--navy); }
.work-section::after {
  content: ""; position: absolute; right: -190px; bottom: -280px; width: 630px; height: 630px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
}
.work-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1fr; gap: 110px; }
.work-copy { padding-top: 18px; }
.work-copy h2 { color: white; }
.work-copy p { max-width: 470px; margin: 24px 0 31px; color: #bdc9d3; }
.button-light { color: var(--navy); background: white; }
.button-light:hover { color: white; background: var(--orange); }
.process-list { border-top: 1px solid rgba(255,255,255,.15); }
.process-item { padding: 27px 0; display: grid; grid-template-columns: 50px 1fr; gap: 21px; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-item > span { width: 36px; height: 36px; display: grid; place-items: center; color: #ffb685; background: rgba(249,115,22,.13); border-radius: 50%; font: 700 10px var(--font-heading); }
.process-item h3 { margin: 2px 0 5px; color: white; font-size: 18px; }
.process-item p { margin: 0; color: #aebdc9; font-size: 13px; }

.packages-section { background: var(--paper); }
.package-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card {
  position: relative; padding: 38px 31px 31px; display: flex; flex-direction: column;
  background: white; border: 1px solid var(--line); border-radius: var(--radius-md);
}
.package-card.popular { border: 2px solid var(--orange); box-shadow: 0 18px 50px rgba(249,115,22,.1); }
.popular-badge {
  position: absolute; top: 0; right: 25px; padding: 7px 12px;
  color: white; background: var(--orange); border-radius: 0 0 8px 8px;
  font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
}
.package-label { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.package-card h3 { margin: 12px 0 7px; font-size: 23px; }
.package-for { min-height: 47px; margin: 0; color: var(--muted); font-size: 12px; }
.package-card hr { width: 100%; margin: 22px 0; border: 0; border-top: 1px solid var(--line); }
.package-card ul { margin: 0 0 29px; padding: 0; list-style: none; flex: 1; }
.package-card li { position: relative; margin: 11px 0; padding-left: 24px; color: #536576; font-size: 13px; }
.package-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 800;
}
.button-outline { color: var(--navy); border-color: #ccd4da; background: transparent; }
.button-outline:hover { color: white; background: var(--navy); border-color: var(--navy); }
.care-banner {
  margin-top: 20px; padding: 24px 30px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 19px; background: var(--beige); border: 1px solid #f5dbc1; border-radius: 14px;
}
.care-icon { width: 43px; height: 43px; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 10px; }
.care-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.care-banner strong { color: var(--navy); font: 700 14px var(--font-heading); }
.care-banner p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }

.about-section { background: #f8f4ed; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; }
.about-art { position: relative; min-height: 520px; }
.art-card {
  position: absolute; border-radius: var(--radius-lg); box-shadow: 0 28px 60px rgba(16,42,67,.18);
}
.art-main {
  inset: 15px 30px 35px 0; padding: 38px; overflow: hidden; color: white; background: var(--navy);
}
.art-main::after {
  content: ""; position: absolute; width: 290px; height: 290px; right: -150px; top: -70px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.018);
}
.art-main > span { color: #a5b6c4; font-size: 8px; font-weight: 700; letter-spacing: 1.3px; }
.art-main > strong { margin-top: 58px; display: block; font: 700 33px/1.16 var(--font-heading); letter-spacing: -1.5px; }
.art-main > strong em { color: var(--orange); font-style: normal; }
.art-main svg { position: absolute; width: 150px; right: 30px; bottom: 36px; opacity: .95; }
.art-note {
  right: 0; bottom: 0; padding: 17px 21px; color: var(--navy); background: white;
  font: 700 11px/1.5 var(--font-heading); transform: rotate(-2deg);
}
.about-lead { margin: 24px 0 37px; color: var(--muted); font-size: 16px; }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 31px; }
.reason-grid > div { padding-top: 17px; border-top: 1px solid #dcd8d1; }
.reason-grid span { color: var(--orange); font: 700 9px var(--font-heading); }
.reason-grid h3 { margin: 8px 0 6px; font-size: 15px; }
.reason-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 105px; }
.faq-heading p { margin: 21px 0 20px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  color: var(--navy); background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
}
.faq-item button i { position: relative; width: 24px; height: 24px; flex: 0 0 auto; border: 1px solid #d8dde0; border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after {
  content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 1px; background: var(--orange); transition: transform .2s;
}
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { margin: 0; padding: 0 45px 21px 0; color: var(--muted); font-size: 13px; }

.contact-section { position: relative; padding: 102px 0; overflow: hidden; color: white; background: var(--navy-deep); text-align: center; }
.contact-pattern {
  position: absolute; inset: 0; opacity: .25; background:
    radial-gradient(circle at 50% 50%, rgba(249,115,22,.24), transparent 34%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}
.contact-inner { position: relative; z-index: 2; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner h2 { color: white; }
.contact-inner p { max-width: 580px; margin: 22px auto 29px; color: #b9c6d1; }
.contact-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button-orange { color: white; background: var(--orange); }
.button-orange svg { fill: white; }
.button-orange:hover { background: var(--orange-dark); }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.3); }
.button-ghost-light:hover { background: rgba(255,255,255,.08); }

.site-footer { padding: 71px 0 0; color: #b5c2ce; background: #06182a; }
.footer-grid { padding-bottom: 55px; display: grid; grid-template-columns: 1.5fr .7fr .9fr 1.15fr; gap: 60px; }
.brand-light .brand-name span { color: white; }
.footer-brand p { margin: 17px 0 0 54px; color: #8899a8; font-size: 12px; }
.site-footer h3 { margin: 0 0 18px; color: white; font-size: 12px; letter-spacing: .3px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #94a4b2; font-size: 12px; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { margin: -5px 0 16px; color: #94a4b2; font-size: 12px; }
.footer-contact a { display: inline-flex; gap: 10px; color: #ff9860; font-size: 12px; font-weight: 700; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #778997; font-size: 10px; }
.footer-bottom span { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-one { transition-delay: .11s; }
.delay-two { transition-delay: .22s; }

@media (max-width: 1020px) {
  .primary-nav { gap: 20px; }
  .hero { padding-top: 60px; }
  .hero-grid { gap: 35px; }
  h1 { font-size: clamp(3rem, 7vw, 4.4rem); }
  .hero-visual { min-height: 440px; }
  .capability-strip > div { padding-inline: 15px; }
  .split-heading { gap: 70px; }
  .about-grid { gap: 50px; }
  .faq-grid { gap: 65px; }
}

@media (max-width: 820px) {
  .section { padding: 85px 0; }
  .nav-toggle {
    display: grid; z-index: 2; width: 44px; height: 44px; padding: 9px;
    align-content: center; justify-content: center; cursor: pointer;
  }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 70px 0 auto; padding: 32px 24px 38px; display: flex; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 40px rgba(16,42,67,.12); transform: translateY(-140%); transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav > a { padding: 13px 2px; font-size: 16px; }
  .primary-nav .nav-cta { margin-top: 12px; justify-content: space-between; padding-inline: 18px; }
  .hero-grid, .work-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(610px, 95%); min-height: 480px; margin: 15px auto 0; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .capability-strip > div:nth-child(2) { border-right: 0; }
  .capability-strip > div { padding-block: 14px; }
  .capability-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(16,42,67,.1); }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .outcome-grid, .package-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 250px; }
  .work-grid { gap: 55px; }
  .work-copy { text-align: center; }
  .work-copy .eyebrow { justify-content: center; }
  .work-copy p { margin-inline: auto; }
  .about-grid { gap: 50px; }
  .about-art { min-height: 460px; max-width: 540px; width: 100%; margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 72px 0; }
  .site-header { height: 68px; }
  .brand-mark { width: 38px; height: 37px; }
  .brand-name { font-size: 20px; }
  .primary-nav { top: 68px; }
  .hero { padding: 48px 0 25px; }
  h1 { font-size: clamp(2.55rem, 11.5vw, 3.35rem); letter-spacing: -2.7px; }
  .hero-copy .eyebrow { gap: 7px; font-size: 9px; letter-spacing: .9px; }
  .hero-copy .eyebrow > span { width: 17px; flex: 0 0 17px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { margin-top: 24px; }
  .hero-visual { min-height: 350px; width: 100%; margin-top: 35px; }
  .hero-card { width: 100%; border-width: 5px; transform: rotate(.7deg); }
  .mock-site { min-height: 285px; padding: 17px; }
  .mock-photo {
    width: 116px; height: 153px; top: 62px; right: 14px; padding: 5px;
    border-radius: 65px 65px 11px 11px;
  }
  .mock-photo::before { inset: -8px -12px 9px 12px; }
  .mock-photo img { border-radius: 60px 60px 8px 8px; }
  .mock-hero { padding: 43px 0 35px; }
  .mock-hero h2 { font-size: 22px; }
  .mock-products > div { height: 49px; padding: 5px; }
  .mock-products b { height: 25px; }
  .chip-mobile { left: -6px; top: -25px; }
  .chip-growth { right: -6px; bottom: -15px; }
  .floating-chip { padding: 8px 10px; }
  .floating-chip > span { width: 30px; height: 30px; }
  .capability-strip { margin-top: 50px; }
  .capability-strip > div { padding-inline: 7px; gap: 8px; }
  .capability-strip svg { width: 26px; }
  .capability-strip span { font-size: 9px; }
  .capability-strip strong { font-size: 10px; }
  .split-heading h2, .section-heading h2, .work-copy h2, .about-copy h2, .faq-heading h2, .contact-inner h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem); letter-spacing: -1.8px;
  }
  .outcome-grid { margin-top: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 29px 24px; }
  .service-card ul { grid-template-columns: 1fr; gap: 9px; }
  .service-card li { font-size: 11px; }
  .work-grid { gap: 45px; }
  .process-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .package-grid { margin-top: 40px; }
  .care-banner { grid-template-columns: auto 1fr; padding: 20px; }
  .care-banner .text-link { grid-column: 1 / -1; }
  .about-art { min-height: 400px; }
  .art-main { inset: 5px 18px 25px 0; padding: 28px; }
  .art-main > strong { margin-top: 45px; font-size: 28px; }
  .art-main svg { width: 120px; }
  .reason-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-section { padding: 78px 0; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: center; flex-direction: column; gap: 7px; text-align: center; }
}

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