@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap');

:root {
  --ink: #eafcff;
  --muted: #a8c0c8;
  --deep: #06171d;
  --deep-2: #0a2229;
  --panel: rgba(19, 52, 60, .54);
  --line: rgba(196, 249, 255, .15);
  --emerald: #59f0b5;
  --cyan: #72e6ff;
  --violet: #af8cff;
  --silver: #dff8fa;
  --font-head: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--deep);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 50% -20%, #164953 0, var(--deep) 45%);
  background-size: 64px 64px, 64px 64px, auto;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3.1rem, 6.4vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 600; }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 800px; }
.section { padding: 110px 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 16px; background: white; color: #071d24; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.aurora { position: fixed; z-index: -2; border-radius: 50%; filter: blur(100px); opacity: .13; pointer-events: none; }
.aurora-one { width: 55vw; height: 35vw; background: var(--emerald); top: 15%; right: -30%; animation: drift 15s ease-in-out infinite alternate; }
.aurora-two { width: 40vw; height: 30vw; background: var(--violet); left: -25%; bottom: 5%; animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate(10vw, -6vw) rotate(12deg); } }

.site-header { height: 92px; display: flex; align-items: center; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-size: 1.1rem; letter-spacing: -.02em; }
.brand b { color: var(--emerald); font-weight: 600; }
.brand svg { width: 34px; fill: none; stroke: var(--cyan); stroke-width: 1.3; filter: drop-shadow(0 0 8px rgba(114,230,255,.45)); }
.brand svg path:last-child { stroke: var(--emerald); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; }
.site-nav a { color: #c1d6db; transition: color .2s; }
.site-nav a:hover { color: white; }
.site-nav .nav-cta { padding: 11px 18px; border: 1px solid rgba(114,230,255,.32); border-radius: 99px; background: rgba(114,230,255,.06); color: var(--ink); }
.nav-toggle { display: none; background: transparent; border: 0; }

.eyebrow { color: var(--emerald); text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; box-shadow: 0 0 8px currentColor; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(132,255,215,.6);
  border-radius: 12px;
  background: linear-gradient(120deg, #6af0bc, #83e8ff);
  color: #052027;
  font: 600 .9rem var(--font-head);
  cursor: pointer;
  box-shadow: 0 8px 35px rgba(69,228,182,.14), inset 0 1px rgba(255,255,255,.75);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.button::after { content: ""; position: absolute; inset: -40%; background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,.7), transparent 65%); transform: translateX(-100%) rotate(15deg); transition: transform .7s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(69,228,182,.24); }
.button:hover::after { transform: translateX(100%) rotate(15deg); }
.button-ghost { color: var(--ink); background: rgba(255,255,255,.04); border-color: var(--line); box-shadow: none; }
.button.small { min-height: 42px; padding-inline: 18px; font-size: .8rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: .9rem; }
.text-link span { color: var(--cyan); transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }

.home-hero { min-height: 760px; padding: 90px 0 70px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.hero-copy h1 { max-width: 730px; margin: 24px 0 28px; }
.hero-copy h1 em { color: transparent; font-style: normal; background: linear-gradient(100deg, var(--emerald), var(--cyan), var(--violet)); -webkit-background-clip: text; background-clip: text; }
.hero-lead { font-size: 1.16rem; max-width: 630px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.hero-note { display: flex; gap: 13px; margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--line); max-width: 430px; }
.hero-note p { font-size: .84rem; margin: 0; }
.hero-note strong { color: var(--silver); }
.signal-dot { width: 8px; height: 8px; margin-top: 7px; flex: none; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 5px rgba(89,240,181,.09), 0 0 18px var(--emerald); }
.crystal-frame { position: relative; padding: 14px; background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.02)); clip-path: polygon(12% 0, 88% 3%, 100% 18%, 96% 88%, 82% 100%, 10% 95%, 0 79%, 3% 17%); }
.crystal-frame::before { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, rgba(114,230,255,.16), transparent 40%, rgba(175,140,255,.18)); pointer-events: none; }
.crystal-frame img { height: 520px; object-fit: cover; clip-path: polygon(11% 0, 88% 3%, 100% 18%, 96% 88%, 82% 100%, 10% 95%, 0 79%, 3% 17%); filter: saturate(.75) hue-rotate(5deg); }
.data-card { position: absolute; z-index: 2; padding: 15px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(8,30,36,.78); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.data-card span, .detail-meta span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .61rem; }
.data-card strong { font: 600 .82rem var(--font-head); }
.data-card-top { top: 13%; right: -22px; }
.data-card-bottom { bottom: 12%; left: -25px; }

.trust-strip { padding: 26px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.trust-strip .shell, .trust-items { display: flex; align-items: center; justify-content: space-between; }
.trust-strip p { margin: 0; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.trust-items { flex: 1; margin-left: 55px; color: #c3dadd; font-size: .78rem; }
.trust-items i { width: 4px; height: 4px; background: var(--violet); border-radius: 50%; box-shadow: 0 0 9px var(--violet); }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 480px; margin-bottom: 8px; }
.row-heading { display: flex; justify-content: space-between; align-items: end; }
.row-heading h2 { margin-bottom: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); overflow: hidden; clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%); }
.card-image { display: block; overflow: hidden; }
.card-image img { height: 220px; object-fit: cover; filter: saturate(.62); transition: transform .5s, filter .5s; }
.service-card:hover img, .post-card:hover img { transform: scale(1.035); filter: saturate(.95); }
.card-body { padding: 28px; }
.card-kicker { color: var(--cyan); font-size: .65rem; text-transform: uppercase; letter-spacing: .13em; }
.service-card h3 { min-height: 48px; font-size: 1.4rem; }
.service-card .text-link { margin-top: 12px; }
.section-crystal { background: linear-gradient(120deg, rgba(11,44,50,.92), rgba(23,39,60,.68)); border-block: 1px solid var(--line); }
.section-crystal::before { content: ""; position: absolute; inset: 0; opacity: .45; background: linear-gradient(115deg, transparent 26%, rgba(89,240,181,.05) 26.2%, transparent 40%), linear-gradient(70deg, transparent 65%, rgba(175,140,255,.07) 65.2%, transparent 80%); }
.outcome-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; position: relative; }
.outcome-list article { display: grid; grid-template-columns: 60px 1fr; gap: 25px; border-bottom: 1px solid var(--line); padding: 27px 0; }
.outcome-list article:first-child { padding-top: 0; }
.outcome-list b { color: var(--violet); font: 500 .75rem var(--font-head); }
.outcome-list h3 { margin-bottom: 7px; }
.outcome-list p { margin: 0; font-size: .9rem; }
.evidence { text-align: center; max-width: 820px; }
.quote-mark { color: var(--emerald); font: 5rem/1 Georgia; }
.evidence blockquote { margin: 0 auto 25px; font: 500 clamp(2rem, 4vw, 3.4rem)/1.2 var(--font-head); letter-spacing: -.04em; }
.evidence p { max-width: 580px; margin: 0 auto 30px; }
.insights-preview { padding-top: 35px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card > a:first-child { display: block; margin-bottom: 22px; overflow: hidden; }
.post-card img { height: 230px; object-fit: cover; filter: saturate(.65); transition: .5s; }
.post-card h3 { font-size: 1.25rem; }
.post-card p { font-size: .9rem; }
.cta-band { padding: 75px 0; border-top: 1px solid var(--line); background: radial-gradient(circle at 70% 0, rgba(89,240,181,.13), transparent 40%), #092129; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); margin: 0; max-width: 700px; }

.page-hero, .legal-hero { padding: 120px 0 100px; text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 20%, rgba(89,240,181,.09), transparent 44%); }
.page-hero h1, .legal-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); margin: 22px 0; }
.page-hero .eyebrow, .legal-hero .eyebrow { justify-content: center; }
.page-hero .narrow > p:last-child { font-size: 1.14rem; max-width: 690px; margin: auto; }
.stacked-services article { display: grid; grid-template-columns: 80px 1fr 240px; gap: 50px; padding: 55px 0; border-bottom: 1px solid var(--line); }
.stacked-services article:first-child { padding-top: 0; }
.service-number { color: var(--violet); font: 500 .8rem var(--font-head); }
.stacked-services h2 { font-size: 2.4rem; margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 25px 0; }
.check-list li { position: relative; padding: 8px 0 8px 27px; color: #c6d9dd; }
.check-list li::before { content: "◇"; position: absolute; left: 0; color: var(--emerald); }
.service-meta { display: flex; flex-direction: column; gap: 4px; padding: 24px; height: fit-content; border: 1px solid var(--line); background: var(--panel); }
.service-meta span { margin-top: 13px; color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
.service-meta span:first-child { margin-top: 0; }
.post-grid-large .post-card { padding-bottom: 25px; }
.post-grid-large .post-card h2 { font-size: 1.45rem; }

.process-hero { text-align: left; }
.process-hero .eyebrow { justify-content: flex-start; }
.process-hero h1 { font-size: clamp(3rem, 5vw, 5rem); }
.process-hero .hero-grid > div > p:not(.eyebrow) { font-size: 1.1rem; }
.process-hero img { height: 430px; object-fit: cover; clip-path: polygon(0 0, 91% 0, 100% 14%, 97% 100%, 8% 96%, 0 80%); filter: saturate(.65); }
.process-list article { display: grid; grid-template-columns: 80px .9fr 1.1fr; gap: 50px; padding: 48px 0; border-bottom: 1px solid var(--line); align-items: start; }
.process-list article > span { color: var(--emerald); font: 500 .72rem var(--font-head); }
.process-list h2 { font-size: 2rem; margin: 0; }
.deliverables, .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; position: relative; }
.deliverables ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; margin: 0; padding: 0; }
.deliverables li { padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: #d3e5e8; font-size: .88rem; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.about-grid > img { height: 580px; object-fit: cover; clip-path: polygon(0 0, 90% 3%, 100% 16%, 97% 91%, 85% 100%, 5% 96%, 0 80%); filter: saturate(.65); }
.about-grid h2 { font-size: 3rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 35px; }
.value-grid div { padding: 18px 13px; border-top: 1px solid var(--line); }
.value-grid strong, .value-grid span { display: block; }
.value-grid strong { color: var(--emerald); }
.value-grid span { color: var(--muted); font-size: .75rem; margin-top: 5px; }
.location-grid address { padding: 32px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); font-style: normal; font-size: 1.08rem; }
.location-grid address strong, .location-grid address a { color: var(--ink); }
.location-grid address a { display: inline-block; margin-top: 15px; }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.contact-details h2 { font-size: 2.4rem; }
.contact-details > div { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-details span { display: block; margin-bottom: 6px; color: var(--emerald); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; }
.contact-details address { color: var(--muted); font-style: normal; }
.crystal-panel { position: relative; border: 1px solid rgba(191,247,255,.18); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: 0 25px 90px rgba(0,0,0,.2); }
.contact-form { padding: 42px; }
.contact-form label { display: block; margin-bottom: 22px; color: #dbecef; font-size: .85rem; font-weight: 500; }
.contact-form label > span:not(.field-error) { color: var(--emerald); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, textarea, select { width: 100%; margin-top: 8px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 8px; background: rgba(3,20,25,.62); color: var(--ink); font: inherit; outline: 0; }
select option { color: #071d24; }
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(114,230,255,.09); }
[aria-invalid="true"] { border-color: #ff99bb; }
.field-error { display: block; min-height: 18px; color: #ffb0c8; font-size: .72rem; }
.check-field { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; }
.check-field input { width: 17px; height: 17px; margin: 3px 0 0; }
.check-field span { color: var(--muted) !important; font-weight: 400; }
.check-field span a { color: var(--cyan); text-decoration: underline; }
.check-field .field-error { grid-column: 2; }
.form-status { margin: 15px 0 0; min-height: 24px; }
.form-status.success { color: var(--emerald); }
.form-status.error { color: #ffb0c8; }

.legal-hero { padding-bottom: 70px; }
.legal-hero h1 { font-size: 4.5rem; }
.legal-copy { padding: 80px 0 120px; }
.legal-copy > p:first-child { color: var(--silver); font-size: 1.15rem; }
.legal-copy h2 { margin-top: 45px; font-size: 1.65rem; }
.legal-copy code { padding: 3px 7px; background: rgba(255,255,255,.08); color: var(--cyan); }
.not-found { min-height: 700px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.crystal-404 { color: transparent; font: 700 clamp(8rem, 25vw, 18rem)/.75 var(--font-head); -webkit-text-stroke: 1px rgba(114,230,255,.3); background: linear-gradient(120deg, rgba(89,240,181,.2), rgba(175,140,255,.4)); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 25px rgba(114,230,255,.12)); }
.not-found h1 { font-size: 3.4rem; margin: 20px 0; }
.not-found p:not(.eyebrow) { max-width: 520px; }

.detail-hero { padding: 85px 0 100px; }
.detail-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: center; }
.detail-grid h1 { font-size: clamp(3.2rem, 5.5vw, 5.4rem); margin: 20px 0; }
.back-link { display: inline-block; margin-bottom: 50px; color: var(--muted); font-size: .8rem; }
.detail-meta { display: flex; gap: 45px; margin: 35px 0; }
.detail-meta strong { font: 600 1rem var(--font-head); }
.detail-image img { height: 520px; }
.detail-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.detail-content h2 { font-size: 3rem; }
.detail-content h3 { margin-top: 40px; }
.large-copy { color: var(--silver); font-size: 1.18rem; }
.check-list.large li { padding-block: 12px; border-bottom: 1px solid var(--line); }
.fit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; position: relative; }
.fit-cards { display: grid; gap: 12px; }
.fit-cards article { padding: 23px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.fit-cards strong { color: var(--cyan); }
.fit-cards p { margin: 7px 0 0; }

.article-hero { padding: 80px 0 0; background: radial-gradient(circle at 50% 20%, rgba(175,140,255,.1), transparent 46%); }
.article-head { max-width: 870px; text-align: center; }
.article-head .eyebrow { justify-content: center; }
.article-head h1 { margin: 25px 0; font-size: clamp(3rem, 6vw, 5.3rem); }
.article-meta { display: flex; justify-content: center; gap: 25px; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.article-cover { margin-top: 60px; }
.article-cover img { height: 580px; object-fit: cover; filter: saturate(.65); clip-path: polygon(0 0, 94% 0, 100% 12%, 97% 100%, 5% 97%, 0 82%); }
.article-body { max-width: 760px; padding: 80px 0 110px; }
.article-body p { font-size: 1.07rem; }
.article-body > p:first-child { color: var(--silver); font-size: 1.25rem; }
.article-body h2 { margin: 55px 0 18px; font-size: 2.2rem; }
.article-next { padding: 80px 0; text-align: center; border-top: 1px solid var(--line); background: var(--deep-2); }
.article-next .eyebrow { justify-content: center; }

.site-footer { padding: 80px 0 25px; background: #041116; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.25fr 1fr; gap: 65px; }
.footer-grid > div:first-child p { max-width: 320px; margin-top: 20px; font-size: .84rem; }
.footer-grid h2 { margin-bottom: 20px; color: var(--muted); font: 600 .65rem var(--font-head); text-transform: uppercase; letter-spacing: .14em; }
.footer-grid > div:not(:first-child) a, .footer-grid address { display: block; margin: 9px 0; color: #b7cbd0; font-size: .82rem; font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--line); color: #718a91; font-size: .7rem; }
.cookie-banner { position: fixed; z-index: 50; left: 25px; right: 25px; bottom: 22px; max-width: 980px; margin: auto; padding: 22px 25px; border: 1px solid rgba(114,230,255,.35); border-radius: 14px; background: rgba(7,27,33,.95); backdrop-filter: blur(18px); box-shadow: 0 20px 70px rgba(0,0,0,.5); display: grid; grid-template-columns: 1fr auto; gap: 20px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--font-head); }
.cookie-banner p { margin: 4px 0 0; font-size: .78rem; }
.cookie-banner p a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; align-items: center; }
.island-error { grid-column: 1 / -1; color: #ffb0c8 !important; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 80px 0; }
  .site-header { height: 76px; }
  .nav-toggle { display: grid; gap: 5px; padding: 8px; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 23px; height: 1px; background: var(--ink); }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 25px 20px 30px; flex-direction: column; background: rgba(4,22,27,.98); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .hero-grid, .outcome-grid, .split-heading, .about-grid, .contact-grid, .detail-grid, .detail-content, .fit-grid, .deliverables, .location-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-hero { padding-top: 70px; }
  .hero-visual { max-width: 620px; }
  .crystal-frame img { height: 450px; }
  .trust-strip .shell { align-items: flex-start; }
  .trust-items { flex-wrap: wrap; justify-content: flex-start; gap: 10px 22px; margin-left: 30px; }
  .service-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child, .post-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 11px); }
  .stacked-services article { grid-template-columns: 50px 1fr; }
  .stacked-services .service-meta { grid-column: 2; }
  .process-hero .hero-grid { grid-template-columns: 1fr; }
  .process-list article { grid-template-columns: 45px 1fr; gap: 25px; }
  .process-list article > p { grid-column: 2; }
  .about-grid > img { height: 450px; }
  .detail-image { max-width: 620px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.1rem; }
  .home-hero { min-height: auto; padding: 60px 0; }
  .hero-actions, .cta-inner, .row-heading { align-items: flex-start; flex-direction: column; }
  .hero-note { margin-top: 42px; }
  .crystal-frame img, .detail-image img { height: 370px; }
  .data-card-top { right: 0; }
  .data-card-bottom { left: 0; }
  .trust-strip .shell { display: block; }
  .trust-items { margin: 15px 0 0; }
  .trust-items i { display: none; }
  .service-grid, .post-grid { grid-template-columns: 1fr; }
  .service-card:last-child, .post-card:last-child { grid-column: auto; max-width: none; }
  .split-heading { gap: 25px; }
  .section-heading { margin-bottom: 35px; }
  .stacked-services article { grid-template-columns: 1fr; gap: 20px; }
  .stacked-services .service-meta { grid-column: auto; }
  .service-number { margin-bottom: 5px; }
  .page-hero, .legal-hero { padding: 80px 0 65px; }
  .page-hero h1, .legal-hero h1 { font-size: 3rem; }
  .process-list article { grid-template-columns: 30px 1fr; }
  .deliverables ul { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px; }
  .detail-meta { gap: 20px; flex-direction: column; }
  .article-cover img { height: 360px; }
  .article-body { width: min(100% - 40px, 760px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; }
  .cookie-actions { flex-wrap: wrap; }
}

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