:root {
  --navy: #060d4a;
  --brand: #171775;
  --indigo: #3d2de8;
  --blue: #176bf5;
  --cyan: #08bfea;
  --coral: #fa6757;
  --ink: #0b1246;
  --muted: #5f6888;
  --line: rgba(23, 23, 117, .12);
  --cloud: #f5f7ff;
  --white: #fff;
  --shadow: 0 24px 80px rgba(23, 23, 117, .12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 40px rgba(23, 23, 117, .08);
  backdrop-filter: blur(20px);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 31px; color: #28305a; font-size: 14px; font-weight: 650; }
.main-nav a { transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand) !important;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 8px 24px rgba(23, 23, 117, .06);
}
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 14px; background: var(--cloud); cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--brand); transition: transform .25s, opacity .25s; }

.hero {
  position: relative;
  min-height: 790px;
  padding-top: 164px;
  padding-bottom: 72px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 191, 234, .1), transparent 29%),
    radial-gradient(circle at 28% 26%, rgba(61, 45, 232, .08), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f7f9ff 74%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .45;
  background-image: linear-gradient(rgba(23, 23, 117, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 23, 117, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.eyebrow-light { color: #77def6; }
.eyebrow-light span { background: linear-gradient(90deg, var(--coral), #fff); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.08; }
h1 { max-width: 650px; margin: 24px 0 26px; font-size: clamp(3.3rem, 5.5vw, 5.75rem); font-weight: 750; }
h1 em { position: relative; color: var(--blue); font-style: normal; white-space: nowrap; }
h1 em::after { content: ""; position: absolute; left: 3px; right: 0; bottom: -.03em; height: 8px; border-radius: 999px; opacity: .55; background: linear-gradient(90deg, var(--cyan), var(--coral)); }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 23px; border: 0; border-radius: 999px; font-weight: 750; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(100deg, var(--indigo), var(--blue)); box-shadow: 0 18px 38px rgba(23, 107, 245, .24); }
.button-primary:hover { box-shadow: 0 20px 46px rgba(23, 107, 245, .34); }
.button-ghost { color: var(--brand); background: transparent; }
.button-light { color: var(--brand); background: #fff; box-shadow: 0 15px 34px rgba(6, 13, 74, .23); }
.hero-proof { display: flex; gap: 0; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 130px; padding: 0 24px; border-right: 1px solid var(--line); }
.hero-proof div:first-child { padding-left: 0; }
.hero-proof div:last-child { border: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--brand); font-size: 20px; }
.hero-proof span { color: var(--muted); font-size: 12px; }

.orbit-stage { position: relative; min-height: 540px; }
.orbit-stage::before { content: ""; position: absolute; width: 350px; height: 350px; top: 90px; left: 94px; border-radius: 50%; background: rgba(255, 255, 255, .9); box-shadow: 0 35px 100px rgba(23, 23, 117, .13); }
.orbit { position: absolute; border: 1.5px solid rgba(23, 107, 245, .22); border-radius: 50%; animation: spin 17s linear infinite; }
.orbit-a { width: 410px; height: 265px; top: 132px; left: 28px; transform: rotate(28deg); }
.orbit-b { width: 455px; height: 290px; top: 106px; left: 44px; transform: rotate(-32deg); animation-duration: 22s; animation-direction: reverse; }
.orbit-c { width: 390px; height: 390px; top: 76px; left: 74px; border-color: rgba(250, 103, 87, .22); animation-duration: 28s; }
.orbit-dot { position: absolute; width: 11px; height: 11px; top: -6px; left: 50%; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 7px rgba(250, 103, 87, .12); }
.orbit-b .orbit-dot { background: var(--cyan); box-shadow: 0 0 0 7px rgba(8, 191, 234, .12); }
.orbit-c .orbit-dot { width: 8px; height: 8px; background: var(--blue); box-shadow: none; }
.orbit-core { position: absolute; z-index: 3; top: 176px; left: 172px; width: 205px; text-align: center; }
.core-mark { display: grid; place-items: center; width: 86px; height: 86px; margin: 0 auto 16px; border-radius: 28px; background: #fff; box-shadow: 0 18px 42px rgba(23, 23, 117, .13); }
.core-mark img { width: 62px; }
.orbit-core span, .orbit-core strong { display: block; }
.orbit-core span { color: var(--muted); font-size: 13px; }
.orbit-core strong { color: var(--brand); font-size: 21px; }
.float-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 17px; background: rgba(255, 255, 255, .86); box-shadow: 0 20px 55px rgba(23, 23, 117, .13); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.float-card-one { top: 76px; right: -7px; }
.float-card-two { bottom: 82px; left: -6px; animation-delay: -1.8s; }
.float-card-three { right: -24px; bottom: 50px; animation-delay: -3.2s; }
.card-icon { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 13px; font-size: 11px; font-weight: 850; }
.card-icon.coral { color: #b62c22; background: rgba(250, 103, 87, .17); }
.card-icon.cyan { color: #057c98; background: rgba(8, 191, 234, .16); }
.card-icon.blue { color: #114db0; background: rgba(23, 107, 245, .14); }
.float-card small, .float-card strong { display: block; }
.float-card small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.float-card strong { color: var(--brand); font-size: 13px; }
.trust-strip { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 62px; color: #7d84a1; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-head h2, .method-copy h2, .about-copy h2, .contact-copy h2 { margin: 17px 0 0; font-size: clamp(2.5rem, 4.4vw, 4.25rem); }
.section-head > p { max-width: 450px; margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { display: flex; min-height: 330px; padding: 32px; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(23, 107, 245, .28); box-shadow: var(--shadow); }
.service-card.featured { position: relative; min-height: 475px; grid-row: span 2; color: #fff; overflow: hidden; border-color: transparent; background: linear-gradient(145deg, #111265 0%, #2632ca 55%, #197fec 100%); }
.service-card.featured::after { content: ""; position: absolute; width: 250px; height: 250px; right: -70px; bottom: -70px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255, 255, 255, .035), 0 0 0 90px rgba(255, 255, 255, .025); }
.service-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.service-number { color: #747c9e; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.featured .service-number { color: #a9e9f8; }
.service-arrow { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--blue); background: var(--cloud); }
.featured .service-arrow { color: #fff; background: rgba(255, 255, 255, .13); }
.service-card h3 { margin: 18px 0 13px; font-size: 28px; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.featured p { max-width: 440px; color: rgba(255, 255, 255, .75); }
.service-card ul { display: flex; gap: 8px; margin: 26px 0 0; padding: 0; flex-wrap: wrap; list-style: none; }
.service-card li, .service-tag { font-size: 11px; font-weight: 750; letter-spacing: .04em; }
.service-card li { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; background: rgba(255, 255, 255, .08); }
.service-tag { color: var(--blue); }
.mini-orbit { position: relative; width: 92px; height: 58px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; transform: rotate(-18deg); }
.mini-orbit::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255, 255, 255, .15); border-radius: inherit; }
.mini-orbit i { position: absolute; top: -6px; left: 38px; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); }

.method { color: #fff; overflow: hidden; background: var(--navy); }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 115px; align-items: start; }
.method-copy { position: sticky; top: 130px; }
.method-copy h2 { color: #fff; }
.method-copy p { max-width: 460px; margin: 28px 0; color: #aeb5d0; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, .35); font-weight: 750; }
.steps { position: relative; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 26px; bottom: 26px; left: 27px; width: 1px; background: linear-gradient(var(--cyan), rgba(255, 255, 255, .08)); }
.steps li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding-bottom: 53px; }
.steps li:last-child { padding-bottom: 0; }
.steps li > span { position: relative; z-index: 2; display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; color: #8be1f5; background: var(--navy); font-size: 11px; font-weight: 800; }
.steps h3 { margin: 6px 0 8px; font-size: 26px; }
.steps p { margin: 0; color: #aeb5d0; }

.solutions { background: #fff; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-card { padding: 25px 25px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #fff, #fafbff); }
.impact-card h3 { margin: 24px 0 8px; font-size: 25px; }
.impact-card p { margin: 0; color: var(--muted); }
.impact-visual { height: 220px; border-radius: 20px; overflow: hidden; background: #f1f5ff; }
.visual-time { display: flex; align-items: center; justify-content: center; gap: 17px; color: var(--brand); }
.visual-time span, .visual-time strong { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; font-size: 21px; }
.visual-time span { border: 1px dashed #9aa6d4; color: #7982a6; }
.visual-time strong { color: #fff; background: linear-gradient(135deg, var(--blue), var(--indigo)); box-shadow: 0 17px 35px rgba(23, 107, 245, .22); }
.visual-time i { color: var(--coral); font-size: 25px; font-style: normal; }
.visual-scale { display: flex; align-items: end; justify-content: center; gap: 9px; padding: 46px; }
.visual-scale i { width: 31px; border-radius: 7px 7px 3px 3px; background: linear-gradient(to top, var(--blue), var(--cyan)); }
.visual-scale i:nth-child(1) { height: 24%; opacity: .3; }.visual-scale i:nth-child(2) { height: 39%; opacity: .45; }.visual-scale i:nth-child(3) { height: 55%; opacity: .6; }.visual-scale i:nth-child(4) { height: 74%; opacity: .8; }.visual-scale i:nth-child(5) { height: 96%; }
.visual-data { display: grid; grid-template-columns: repeat(3, 42px); place-content: center; gap: 18px; }
.visual-data i { width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 8px 25px rgba(23, 23, 117, .12); }
.visual-data i:nth-child(2), .visual-data i:nth-child(6) { background: var(--coral); }
.visual-data i:nth-child(4) { background: var(--cyan); }
.visual-data i:nth-child(5) { background: var(--blue); }

.about { background: var(--cloud); }
.about-shell { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; min-height: 560px; padding: 76px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .9); border-radius: 38px; background: rgba(255, 255, 255, .74); box-shadow: var(--shadow); }
.about-orbit { position: relative; width: 370px; height: 370px; border: 1px solid rgba(23, 107, 245, .21); border-radius: 50%; box-shadow: inset 0 0 60px rgba(23, 107, 245, .05), 0 0 0 38px rgba(23, 107, 245, .035), 0 0 0 78px rgba(8, 191, 234, .025); }
.about-orbit::before, .about-orbit::after { content: ""; position: absolute; border: 1px solid rgba(61, 45, 232, .16); border-radius: 50%; }
.about-orbit::before { width: 335px; height: 180px; top: 92px; left: 16px; transform: rotate(33deg); }
.about-orbit::after { width: 300px; height: 210px; top: 80px; left: 35px; transform: rotate(-37deg); }
.about-orbit span { position: absolute; width: 128px; height: 128px; top: 121px; left: 121px; border-radius: 40px; background: url("assets/isotipo-compazzi.svg") center/85px no-repeat #fff; box-shadow: 0 22px 50px rgba(23, 23, 117, .16); }
.about-orbit i, .about-orbit b { position: absolute; border-radius: 50%; }
.about-orbit i { width: 18px; height: 18px; top: 13px; left: 108px; background: var(--coral); box-shadow: 0 0 0 9px rgba(250, 103, 87, .12); }
.about-orbit b { width: 12px; height: 12px; right: 11px; bottom: 87px; background: var(--cyan); }
.about-copy h2 { max-width: 650px; }
.about-copy > p { margin: 26px 0 32px; color: var(--muted); font-size: 18px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-values div { padding-top: 17px; border-top: 2px solid rgba(23, 107, 245, .2); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--brand); }
.about-values span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.contact { color: #fff; background: linear-gradient(125deg, #0b1058 0%, #2320a4 48%, #176bf5 100%); }
.contact-shell { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { max-width: 450px; margin: 26px 0 48px; color: #c0c7e4; font-size: 18px; }
.contact-detail span, .contact-detail a { display: block; }
.contact-detail span { color: #9faad2; font-size: 12px; }
.contact-detail a { margin-top: 3px; font-size: 19px; font-weight: 750; }
.contact-form { padding: 36px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 30px; background: rgba(255, 255, 255, .1); box-shadow: 0 30px 80px rgba(2, 5, 45, .25); backdrop-filter: blur(16px); }
.contact-form label { display: block; margin-bottom: 19px; color: #e8eaff; font-size: 12px; font-weight: 700; }
.contact-form label > span { color: #aab2d4; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; outline: none; border: 1px solid rgba(255, 255, 255, .15); border-radius: 12px; color: #fff; background: rgba(4, 9, 65, .4); transition: border .2s, box-shadow .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #939cc3; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8, 191, 234, .15); }
.contact-form textarea { resize: vertical; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.check-label { display: flex !important; align-items: flex-start; gap: 10px; max-width: 300px; margin: 0 !important; color: #aeb7d8 !important; font-weight: 500 !important; }
.check-label input { flex: 0 0 16px; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--cyan); }
.form-status { min-height: 23px; margin: 17px 0 0; color: #a8edfc; font-size: 13px; }
.form-status.error { color: #ffb4aa; }

.site-footer { padding: 66px 0 26px; color: #4f587b; background: #fff; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 48px; }
.footer-brand img { width: 195px; }
.footer-brand p { max-width: 300px; margin: 19px 0 0; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 14px; }
.footer-main strong { margin-bottom: 9px; color: var(--brand); }
.footer-main a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); font-size: 12px; }
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: grid; place-items: center; width: 46px; height: 46px; opacity: 0; pointer-events: none; border: 0; border-radius: 50%; color: #fff; background: var(--brand); box-shadow: 0 12px 30px rgba(23, 23, 117, .2); transform: translateY(15px); transition: opacity .25s, transform .25s; cursor: pointer; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { rotate: 360deg; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .orbit-stage { width: min(580px, 100%); margin: -15px auto 0; }
  .hero { padding-bottom: 50px; }
  .trust-strip { margin-top: 20px; }
  .method-grid { gap: 65px; }
  .about-shell { grid-template-columns: 1fr; padding: 62px; }
  .about-orbit { margin-inline: auto; }
  .contact-shell { gap: 48px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 88px 0; }
  .site-header { padding: 10px 0; background: rgba(255,255,255,.9); backdrop-filter: blur(18px); }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; padding: 110px 32px 45px; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; opacity: 0; visibility: hidden; background: rgba(255, 255, 255, .98); transform: translateY(-16px); transition: opacity .25s, visibility .25s, transform .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 21px; }
  .main-nav .nav-cta { justify-content: center; margin-top: 24px; padding: 14px 20px; border: 0; color: #fff !important; background: linear-gradient(100deg, var(--indigo), var(--blue)); }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { gap: 35px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .orbit-stage { transform: scale(.88); transform-origin: top center; margin-bottom: -60px; }
  .section-head { align-items: start; flex-direction: column; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-row: auto; }
  .method-grid { grid-template-columns: 1fr; }
  .method-copy { position: relative; top: auto; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-visual { height: 185px; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 590px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .brand img { width: 158px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-lead { font-size: 16px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { min-width: 0; padding: 0 10px; text-align: center; }
  .hero-proof div:first-child { padding-left: 0; }
  .hero-proof strong { font-size: 16px; }
  .hero-proof span { font-size: 9px; }
  .orbit-stage { left: 50%; width: 540px; margin-left: -270px; transform: scale(.64); margin-bottom: -165px; }
  .trust-strip { gap: 10px; flex-wrap: wrap; }
  .trust-strip span { font-size: 9px; }
  .section-head h2, .method-copy h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .service-card { min-height: 310px; padding: 25px; }
  .service-card.featured { min-height: 430px; }
  .steps li { gap: 18px; }
  .steps p { font-size: 14px; }
  .about-shell { padding: 35px 22px; border-radius: 28px; }
  .about-orbit { width: 280px; height: 280px; transform: scale(.82); margin: -24px auto; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form { padding: 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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