:root {
  --blue: #2929b8;
  --blue-dark: #16194c;
  --magenta: #ae164f;
  --ink: #20243a;
  --muted: #616778;
  --mist: #f5f6f9;
  --lavender: #eff0ff;
  --rose: #fff0f6;
  --white: #ffffff;
  --line: #dfe2ea;
  --shadow: 0 18px 50px rgba(22, 25, 76, .10);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { overflow-y: scroll; scrollbar-gutter: stable; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Aptos, "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--blue-dark); font-family: "Aptos Display", Aptos, "Segoe UI", sans-serif; line-height: 1.12; }
h1 { font-size: clamp(44px, 6vw, 74px); letter-spacing: -.048em; }
h2 { font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.038em; }
h3 { font-size: 24px; letter-spacing: -.02em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--blue-dark);
  color: var(--white);
  padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .985);
  border-bottom: 1px solid rgba(223, 226, 234, .92);
  box-shadow: 0 3px 16px rgba(22, 25, 76, .06);
}
.header-inner {
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; flex: 0 0 136px; align-items: center; }
.brand img { width: 136px; height: auto; object-fit: contain; }
.desktop-nav { display: flex; flex: 0 0 610px; align-items: center; justify-content: flex-end; gap: 3px; }
.desktop-nav a,
.mobile-menu a {
  color: #34394f;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  border-radius: 7px;
  line-height: 1;
  padding: 10px 12px;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease;
}
.desktop-nav a:hover { background: #f2f3f8; color: var(--blue-dark); }
.desktop-nav a[aria-current="page"] { background: transparent; box-shadow: inset 0 -2px 0 var(--blue); color: var(--blue-dark); }
.desktop-nav .nav-feature {
  color: var(--blue);
  margin-left: 5px;
}
.desktop-nav .nav-contact,
.desktop-nav .nav-contact[aria-current="page"] {
  background: var(--blue-dark);
  box-shadow: 0 7px 18px rgba(22, 25, 76, .17);
  color: var(--white);
  margin-left: 8px;
  padding: 10px 18px;
}
.desktop-nav .nav-contact:hover { background: var(--blue); color: var(--white); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  padding: 8px 12px;
}
.mobile-menu summary::after { content: "☰"; color: var(--blue); font-size: 17px; line-height: 1; }
.mobile-menu[open] summary::after { content: "×"; font-size: 22px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: min(300px, calc(100vw - 32px));
  display: grid;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.mobile-menu a { border-radius: 7px; padding: 11px 12px; }
.mobile-menu a:hover { background: var(--mist); color: var(--blue); }

.hero { overflow: hidden; }
.hero-inner {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 84px;
  padding-block: 82px 96px;
}
.eyebrow {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.hero h1 { margin-bottom: 26px; }
.hero h1 span { color: var(--blue); }
.lede { color: var(--muted); font-size: 20px; line-height: 1.6; max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 3px solid rgba(41, 41, 184, .22); outline-offset: 3px; }
.button.primary { background: var(--blue); box-shadow: 0 8px 20px rgba(41, 41, 184, .18); color: var(--white); }
.button.secondary { color: var(--blue-dark); background: var(--white); }
.button.light { border-color: var(--white); background: var(--white); color: var(--blue-dark); }
.text-link { color: var(--blue-dark); font-weight: 750; text-underline-offset: 5px; }

.hero-panel {
  position: relative;
  background: var(--blue-dark);
  color: var(--white);
  padding: 44px;
  box-shadow: 22px 22px 0 var(--lavender);
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 36px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  right: -90px;
  top: -90px;
}
.hero-panel .panel-label { color: #ff76af; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.hero-panel h2 { color: var(--white); font-size: 38px; margin: 22px 0 28px; }
.panel-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
.panel-list li { position: relative; padding: 15px 0 15px 27px; border-bottom: 1px solid rgba(255, 255, 255, .22); font-size: 14px; }
.panel-list li::before { content: "✓"; position: absolute; left: 0; color: #ff76af; font-weight: 800; }

.fractional-hero { background: linear-gradient(135deg, #f8f8ff 0%, #eff0ff 100%); border-bottom: 1px solid var(--line); }
.fractional-hero .hero-inner { min-height: auto; gap: 72px; padding-block: 76px 84px; }
.fractional-hero .hero-panel { box-shadow: 18px 18px 0 rgba(174, 22, 79, .10); }
.fractional-definition {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid rgba(41, 41, 184, .14);
  border-left: 4px solid var(--magenta);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 24px rgba(22, 25, 76, .06);
  padding: 14px 16px;
}
.fractional-definition strong {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fractional-definition span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.proof-strip { background: var(--mist); border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding-block: 30px; }
.proof-item { border-left: 4px solid var(--magenta); padding-left: 18px; }
.proof-item strong { display: block; color: var(--blue-dark); font-size: 14px; }
.proof-item span { color: var(--muted); font-size: 13px; }

.section { padding-block: 104px; }
.section.mist { background: var(--mist); }
.section.lavender { background: linear-gradient(180deg, #f8f8ff, #eeeeff); }
.section.dark { background: var(--blue-dark); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: #ff76af; }
.section-head { max-width: 800px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 20px; }
.section-head > p:last-child { color: var(--muted); font-size: 18px; }
.section.dark .section-head > p:last-child { color: rgba(255,255,255,.72); }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  --accent: var(--blue);
  --tint: var(--lavender);
  display: flex;
  flex-direction: column;
  min-height: 350px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  box-shadow: 0 12px 32px rgba(23, 23, 112, .07);
}
.service-card:nth-child(2) { --accent: var(--magenta); --tint: var(--rose); }
.service-card:nth-child(3) { --accent: #087a8c; --tint: #e9f8fa; }
.service-card:nth-child(4) { --accent: #6540c5; --tint: #f1edff; }
.fractional-cards { grid-template-columns: repeat(3, 1fr); }
.fractional-cards .service-card:nth-child(5) { --accent: #9a3e85; --tint: #faedf7; }
.fractional-cards .service-card:nth-child(6) { --accent: #2f6b5f; --tint: #edf7f3; }
.fractional-cards .service-card h3 { min-height: 48px; }
.card-body { padding: 27px 26px 24px; }
.card-label { color: var(--accent); background: var(--tint); display: inline-block; padding: 5px 9px; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card h3 { font-size: 21px; margin: 20px 0 12px; }
.service-card p { color: var(--muted); font-size: 14px; }
.card-result { min-height: 108px; margin-top: auto; background: var(--tint); color: var(--blue-dark); padding: 20px 26px; font-size: 14px; font-weight: 700; }
.card-result span { display: block; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 7px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.split.start { align-items: start; }
.feature-block { background: var(--blue-dark); color: var(--white); padding: 48px; box-shadow: 20px 20px 0 var(--rose); }
.feature-block h2, .feature-block h3 { color: var(--white); }
.feature-block .eyebrow { color: #ff76af; }
.feature-price { display: flex; gap: 12px; align-items: baseline; border-block: 1px solid rgba(255,255,255,.24); padding: 19px 0; margin: 28px 0; }
.feature-price strong { font-size: 32px; }
.feature-price span { opacity: .72; font-size: 13px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 15px 0 15px 31px; border-bottom: 1px solid var(--line); color: var(--blue-dark); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--magenta); font-weight: 800; }
.dark .check-list { border-color: rgba(255,255,255,.22); }
.dark .check-list li { color: var(--white); border-color: rgba(255,255,255,.22); }

.page-hero { background: linear-gradient(135deg, #f8f8ff 0%, #eeeeff 100%); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-block: 82px 70px; }
.page-hero h1 { max-width: 920px; margin-bottom: 24px; }
.page-hero .lede { max-width: 820px; }
.breadcrumbs { margin-bottom: 22px; font-size: 13px; color: var(--muted); }
.breadcrumbs a { color: var(--blue); text-underline-offset: 3px; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--blue); padding: 30px; }
.value-card:nth-child(2n) { border-left-color: var(--magenta); }
.value-card h3 { font-size: 20px; margin-bottom: 11px; }
.value-card p { color: var(--muted); font-size: 14px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--line); padding: 30px; box-shadow: 0 12px 30px rgba(23,23,112,.06); }
.team-initial { width: 74px; height: 74px; display: grid; place-items: center; background: var(--lavender); color: var(--blue); font-size: 26px; font-weight: 800; margin-bottom: 23px; }
.team-card:nth-child(2) .team-initial { background: var(--rose); color: var(--magenta); }
.team-card:nth-child(3) .team-initial { background: #e9f8fa; color: #087a8c; }
.team-card h2, .team-card h3 { font-size: 24px; margin-bottom: 5px; }
.team-role { color: var(--magenta); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.team-card p:last-child { color: var(--muted); font-size: 14px; margin-top: 16px; }

.service-detail { scroll-margin-top: 110px; border-top: 1px solid var(--line); padding-block: 58px; }
.service-detail:first-child { border-top: 0; padding-top: 0; }
.service-detail-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.service-detail h2 { font-size: 38px; }
.deliverables { background: var(--mist); padding: 28px; border-top: 5px solid var(--blue); }
.deliverables h3 { font-size: 16px; margin-bottom: 14px; }
.deliverables ul { margin: 0; padding-left: 20px; color: var(--muted); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9dde6;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(22, 25, 76, .07);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.price-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: #dfe2ea; }
.price-card.featured { border-color: rgba(41, 41, 184, .32); box-shadow: 0 20px 52px rgba(22, 25, 76, .11); }
.price-card.featured::before { background: var(--magenta); }
.price-card-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.price-kicker { display: block; color: var(--magenta); font-size: 10px; font-weight: 800; letter-spacing: .14em; margin-bottom: 9px; text-transform: uppercase; }
.price-card h3 { font-size: 24px; margin: 0; }
.price { color: var(--blue-dark); margin: 0; text-align: right; white-space: nowrap; }
.price strong { display: block; font-family: "Aptos Display", Aptos, sans-serif; font-size: 31px; line-height: 1; letter-spacing: -.035em; }
.price span { display: block; color: var(--muted); font-size: 12px; font-weight: 650; margin-top: 7px; }
.price-card > p { color: var(--muted); font-size: 15px; margin: 22px 0 13px; max-width: 48ch; }
.package-list { list-style: none; padding: 0; margin: 0 0 26px; }
.package-list li { position: relative; color: #3c4254; font-size: 13.5px; padding: 8px 0 8px 18px; }
.package-list li::before { content: ""; position: absolute; left: 1px; top: 17px; width: 5px; height: 5px; border-radius: 50%; background: var(--magenta); }
.price-card .button { margin-top: auto; align-self: flex-start; }

.contact-section { background: linear-gradient(135deg, #11143d 0%, #191c57 100%); color: var(--white); scroll-margin-top: 88px; }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; align-items: start; }
.contact-copy h2 { color: var(--white); }
.contact-copy .eyebrow { color: #ff76af; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.74); font-size: 17px; }
.contact-facts { border-top: 1px solid rgba(255,255,255,.22); margin-top: 34px; }
.contact-fact { display: grid; grid-template-columns: 118px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.22); padding: 16px 0; }
.contact-fact strong { font-size: 13px; }
.contact-fact span, .contact-fact a { color: rgba(255,255,255,.72); font-size: 13px; }
.form-shell { position: relative; background: var(--white); border: 1px solid rgba(255,255,255,.55); border-radius: 14px; color: var(--ink); padding: 44px; box-shadow: 0 30px 80px rgba(4, 7, 35, .28); }
.form-shell::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; border-radius: 14px 14px 0 0; background: linear-gradient(90deg, var(--blue), var(--magenta)); }
.form-shell h2, .form-shell h3 { font-size: 30px; margin-bottom: 10px; }
.form-intro { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #30364b; font-size: 12.5px; font-weight: 750; }
.field label span { color: #7c8190; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #cfd4df;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field input { min-height: 49px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: #aeb5c4; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(41,41,184,.12); background: #fefeff; }
.form-submit { border: 0; cursor: pointer; margin-top: 22px; }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-status { display: grid; grid-template-columns: 36px 1fr; column-gap: 13px; align-items: start; border: 1px solid; border-radius: 9px; margin-top: 22px; padding: 17px 18px; font-size: 13.5px; }
.form-status[hidden] { display: none; }
.form-status::before { grid-row: 1 / span 2; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--white); font-size: 17px; font-weight: 850; }
.form-status strong { display: block; font-size: 14px; line-height: 1.35; margin-bottom: 3px; }
.form-status span { line-height: 1.45; }
.form-status.success { background: #e7f6ec; border-color: #9bcdae; color: #174c2b; }
.form-status.success::before { content: "✓"; background: #197a43; }
.form-status.error { background: #fff0f0; border-color: #e3adad; color: #742020; }
.form-status.error::before { content: "!"; background: #b83232; }
.form-status:focus { outline: 3px solid rgba(41,41,184,.18); outline-offset: 3px; }
.form-note { color: var(--muted); font-size: 12px; margin: 17px 0 0; }
.form-note a { color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.policy-layout { display: grid; grid-template-columns: 240px minmax(0, 790px); gap: 62px; align-items: start; }
.policy-nav { position: sticky; top: 116px; background: var(--white); border-top: 5px solid var(--blue); padding: 23px; box-shadow: var(--shadow); }
.policy-nav strong { display: block; color: var(--blue-dark); font-size: 14px; margin-bottom: 11px; }
.policy-nav a { display: block; color: var(--muted); font-size: 13px; padding: 6px 0; text-decoration: none; }
.policy-nav a:hover { color: var(--blue); }
.policy-copy { background: var(--white); padding: 48px 52px; box-shadow: 0 12px 34px rgba(23,23,112,.07); }
.policy-copy section { scroll-margin-top: 115px; border-bottom: 1px solid var(--line); margin-bottom: 30px; padding-bottom: 26px; }
.policy-copy section:last-child { border-bottom: 0; margin: 0; padding: 0; }
.policy-copy h2 { font-size: 25px; margin-bottom: 14px; }
.policy-copy h3 { font-size: 17px; margin: 20px 0 7px; }
.policy-copy p, .policy-copy li { color: #55556c; font-size: 15px; }
.policy-copy a { color: var(--blue); }
.policy-callout { background: var(--lavender); border-left: 5px solid var(--blue); padding: 17px 19px; }

.cta { background: var(--magenta); color: var(--white); }
.cta-inner { padding-block: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { color: var(--white); font-size: clamp(30px, 4vw, 44px); max-width: 760px; margin: 0; }

.site-footer { background: #101052; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 64px; padding-block: 64px; }
.footer-brand img {
  display: block;
  width: 174px;
  height: auto;
  object-fit: contain;
  background: var(--white);
  padding: 10px 14px;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 13px; max-width: 390px; }
.site-footer h2 { color: var(--white); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.76); font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding-block: 22px; font-size: 12px; display: flex; justify-content: space-between; gap: 24px; }

.simple-content { max-width: 840px; }
.simple-content h2 { margin-top: 44px; font-size: 30px; }
.simple-content h3 { margin-top: 28px; font-size: 21px; }
.simple-content p, .simple-content li { color: var(--muted); }
.notice { background: var(--lavender); border-left: 6px solid var(--blue); padding: 24px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-inner, .split, .contact-layout, .service-detail-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 55px; min-height: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .fractional-cards { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-grid.four { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .policy-layout { grid-template-columns: 1fr; gap: 24px; }
  .policy-nav { position: static; }
  .policy-nav a { display: inline-block; margin-right: 16px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, var(--max)); }
  .header-inner { height: 74px; min-height: 74px; }
  .brand { flex-basis: 126px; }
  .brand img { width: 126px; height: auto; }
  .hero-inner { padding-block: 58px 70px; }
  .fractional-hero .hero-inner { gap: 46px; padding-block: 56px 68px; }
  .fractional-definition { grid-template-columns: 1fr; gap: 4px; }
  .hero-panel, .feature-block { padding: 30px 24px; box-shadow: 10px 10px 0 var(--lavender); }
  .form-shell { border-radius: 11px; box-shadow: 0 22px 55px rgba(4, 7, 35, .26); padding: 32px 24px; }
  .proof-grid, .card-grid, .value-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .fractional-cards { grid-template-columns: 1fr; }
  .fractional-cards .service-card h3 { min-height: 0; }
  .card-result { min-height: 0; }
  .price-grid.four { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
  .price-card-top { grid-template-columns: 1fr; gap: 17px; }
  .price { text-align: left; }
  .section { padding-block: 74px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-fact { grid-template-columns: 1fr; gap: 2px; }
  .policy-nav { display: none; }
  .policy-copy { padding: 32px 23px; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 34px; }
}

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