
:root {
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #24343d;
  --muted: #61747e;
  --line: #dbe3e3;
  --blue: #7298a9;
  --blue-deep: #486f80;
  --blue-pale: #eaf1f3;
  --sand: #eee5d6;
  --green: #dce8e1;
  --shadow: 0 24px 70px rgba(57, 79, 87, 0.12);
  --font-gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-heading: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-gothic);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 15px 15px 15px 5px;
  background: var(--blue-deep);
  color: white;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--font-heading); font-size: 17px; letter-spacing: .06em; }
.brand small { margin-top: 1px; color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.site-header nav a { transition: color .2s ease, transform .2s ease; }
.site-header nav a:hover { color: var(--blue-deep); transform: translateY(-1px); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--blue); border-radius: 999px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 55px 0 85px;
}
.hero::before {
  position: absolute;
  top: 8%;
  left: -14%;
  width: 330px;
  height: 330px;
  border: 1px solid #d8e3e5;
  border-radius: 50%;
  content: "";
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 22px; color: var(--blue-deep); font-size: 11px; font-weight: 800; letter-spacing: .24em; }
.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: .005em;
}
.hero h1 span { color: var(--blue-deep); }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: #536770; font-size: 16px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue-deep); color: white; box-shadow: 0 10px 28px rgba(72, 111, 128, .22); }
.button-secondary { border: 1px solid #c8d5d8; background: rgba(255,255,255,.65); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 22px; margin: 32px 0 0; padding: 0; color: var(--muted); font-size: 11px; list-style: none; }
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); content: ""; }

.hero-visual { position: relative; display: grid; min-height: 530px; place-items: center; }
.hero-visual::before {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 48% 52% 45% 55%;
  background: var(--blue-pale);
  content: "";
  transform: rotate(-8deg);
}
.orbit { position: absolute; border: 1px solid rgba(72,111,128,.22); border-radius: 50%; }
.orbit-one { width: 520px; height: 360px; transform: rotate(28deg); }
.orbit-two { width: 370px; height: 520px; transform: rotate(-35deg); }
.hero-character {
  position: relative;
  z-index: 2;
  width: min(420px, 78%);
  height: 550px;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.9);
  border-radius: 38px 38px 38px 12px;
  background: #f8e8ea;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-character img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 66%;
}
.hero-character figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  color: #6f4a50;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}
.note-card {
  position: relative;
  z-index: 2;
  width: min(390px, 78%);
  padding: 34px 34px 30px;
  border: 1px solid rgba(36,52,61,.08);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}
.note-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid #e4e5df; }
.note-label { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.note-stamp { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue-deep); font-family: var(--font-heading); font-weight: 700; }
.note-title { margin: 24px 0 16px; font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.note-row { display: grid; grid-template-columns: 34px 1fr; align-items: center; padding: 15px 0; border-bottom: 1px dashed #dfe3e1; }
.note-row span { color: var(--blue); font-family: var(--font-gothic); font-size: 12px; font-style: italic; }
.note-row p { margin: 0; font-size: 13px; font-weight: 700; }
.note-row-accent p { color: var(--blue-deep); }
.hand-note { margin: 25px 0 0; color: var(--blue-deep); font-family: var(--font-gothic); font-size: 14px; text-align: right; transform: rotate(-2deg); }
.mini-card { position: absolute; z-index: 3; padding: 12px 18px; border-radius: 999px; background: white; box-shadow: 0 12px 34px rgba(57,79,87,.14); color: var(--blue-deep); font-size: 11px; font-weight: 800; }
.mini-card-left { bottom: 105px; left: 4%; transform: rotate(-6deg); }
.mini-card-right { top: 92px; right: 0; transform: rotate(5deg); }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.services { border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.section-heading h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(38px, 4.2vw, 58px); font-weight: 500; line-height: 1.45; letter-spacing: .015em; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 2; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 430px; padding: 35px 30px 30px; overflow: hidden; border-radius: 24px; }
.card-blue { background: #dfeaed; }
.card-sand { background: var(--sand); }
.card-green { background: var(--green); }
.service-number { position: absolute; top: 22px; right: 24px; color: rgba(36,52,61,.25); font-family: var(--font-gothic); font-size: 44px; font-style: italic; }
.service-kicker { margin: 0 0 52px; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.service-card h3 { margin: 0; font-family: var(--font-heading); font-size: 32px; font-weight: 600; letter-spacing: .025em; }
.service-subtitle { margin: 8px 0 23px; color: var(--blue-deep); font-size: 12px; font-weight: 800; }
.service-card > p:not(.service-kicker):not(.service-subtitle) { margin: 0; color: #52666e; font-size: 13px; line-height: 1.9; }
.service-card a { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(36,52,61,.16); font-size: 12px; font-weight: 800; }
.service-card a:hover span { transform: translateX(4px); }

.approach { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.approach-quote { position: relative; display: grid; min-height: 520px; place-items: center; padding: 55px; overflow: hidden; border-radius: 50% 50% 48% 52%; background: var(--blue-deep); color: white; }
.approach-quote::before, .approach-quote::after { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.approach-quote::before { width: 410px; height: 410px; }
.approach-quote::after { width: 285px; height: 520px; transform: rotate(42deg); }
.approach-quote > span { position: absolute; top: 55px; left: 74px; color: rgba(255,255,255,.2); font-family: var(--font-heading); font-size: 92px; }
.approach-quote p { position: relative; z-index: 2; margin: 0; font-family: var(--font-heading); font-size: 24px; font-weight: 500; letter-spacing: .035em; line-height: 2.05; text-align: center; }
.approach-copy h2, .profile-copy h2, .pricing-intro h2, .scope-copy h2, .faq-heading h2, .flow-intro h2, .contact h2 { margin: 0; font-family: var(--font-heading); font-weight: 500; letter-spacing: .015em; }
.approach-copy h2 { font-size: clamp(38px, 4vw, 52px); line-height: 1.45; }
.approach-copy > p:not(.eyebrow) { margin: 26px 0 32px; color: var(--muted); font-size: 14px; line-height: 2; }
.approach-copy ul { margin: 0; padding: 0; list-style: none; }
.approach-copy li { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.approach-copy li > span { color: var(--blue); font-family: var(--font-gothic); font-size: 13px; font-style: italic; }
.approach-copy li p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.approach-copy li strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 14px; }

.about { background: #e5eef0; }
.about-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; width: min(1020px, calc(100% - 40px)); margin: 0 auto; padding: 115px 0; }
.profile-visual { position: relative; display: grid; margin: 0; place-items: center; }
.profile-visual::before { position: absolute; width: 365px; height: 520px; border: 1px solid rgba(72,111,128,.22); border-radius: 46% 54% 52% 48%; content: ""; transform: rotate(18deg); }
.profile-visual img { position: relative; z-index: 2; display: block; width: min(286px, 82%); height: auto; border: 6px solid rgba(255,255,255,.8); border-radius: 120px 120px 28px 28px; box-shadow: 0 25px 60px rgba(72,111,128,.2); }
.profile-visual figcaption { position: absolute; right: 0; bottom: 32px; z-index: 3; margin: 0; color: var(--blue-deep); font-size: 9px; font-weight: 800; letter-spacing: .25em; line-height: 1.8; transform: rotate(-90deg); transform-origin: bottom right; }
.profile-role { margin: 0 0 5px; color: var(--muted); font-size: 12px; font-weight: 700; }
.profile-copy h2 { font-size: clamp(52px, 6vw, 72px); }
.profile-lead { margin: 24px 0 27px; color: #4b626c; font-family: var(--font-gothic); font-size: 17px; font-weight: 500; letter-spacing: .025em; line-height: 2; }
.profile-details dl { margin: 0; }
.profile-details dl > div { display: grid; grid-template-columns: 85px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(72,111,128,.17); font-size: 12px; }
.profile-details dt { color: var(--blue-deep); font-weight: 800; }
.profile-details dd { margin: 0; color: #4d626b; }
.profile-note { margin: 26px 0 0; padding-left: 18px; border-left: 2px solid var(--blue); color: var(--muted); font-size: 12px; line-height: 1.9; }

.compact-heading { margin-bottom: 42px; }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topic-grid article { min-height: 250px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); }
.topic-grid span { display: inline-block; margin-bottom: 37px; padding: 6px 11px; border-radius: 999px; background: var(--blue-pale); color: var(--blue-deep); font-size: 10px; font-weight: 800; }
.topic-grid h3 { margin: 0; font-family: var(--font-heading); font-size: 21px; font-weight: 600; letter-spacing: .02em; }
.topic-grid p { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.flow { background: var(--ink); color: white; }
.flow-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0; }
.flow-intro { position: sticky; top: 110px; align-self: start; }
.flow-intro .eyebrow { color: #a9c7d2; }
.flow-intro h2 { font-size: 43px; }
.flow-intro > p:not(.eyebrow) { margin: 22px 0 0; color: #aebcc2; font-size: 13px; line-height: 2; }
.flow-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.flow-list li { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.flow-list li > span { color: #8fb1bf; font-family: var(--font-gothic); font-size: 14px; font-style: italic; }
.flow-list h3 { margin: 0; font-family: var(--font-heading); font-size: 20px; font-weight: 600; letter-spacing: .02em; }
.flow-list p { margin: 9px 0 0; color: #aebcc2; font-size: 12px; line-height: 1.8; }

.pricing { display: grid; grid-template-columns: .65fr 1.35fr; gap: 72px; align-items: start; }
.pricing-intro { position: sticky; top: 120px; }
.pricing-intro h2 { font-size: 48px; }
.pricing-intro > p:not(.eyebrow) { margin: 21px 0 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.price-cards { display: grid; gap: 12px; }
.price-card { display: grid; grid-template-columns: 1fr 1.05fr; gap: 20px; align-items: center; min-height: 155px; padding: 28px 30px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.price-card.featured { background: var(--blue-pale); border-color: transparent; }
.price-card div > span, .price-card div > strong { display: block; }
.price-card div > span { margin-bottom: 9px; color: var(--blue-deep); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.price-card div > strong { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: .02em; }
.price-card > p { margin: 0; text-align: right; }
.price-card p b { font-family: var(--font-heading); font-size: 52px; font-weight: 500; }
.price-card p em { margin-left: 14px; font-size: 15px; font-style: normal; font-weight: 800; }
.price-card .price-text { color: var(--ink); font-family: var(--font-heading); font-size: 17px; font-weight: 500; line-height: 1.6; }
.price-card small { grid-column: 2; margin-top: -17px; color: var(--muted); font-size: 10px; text-align: right; }

.scope { background: #efe8dc; }
.scope-inner { width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.scope-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; margin-bottom: 44px; }
.scope-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -35px; }
.scope-copy h2 { font-size: 46px; line-height: 1.4; }
.scope-copy > p:not(.eyebrow) { margin: 0; color: #657177; font-size: 13px; line-height: 2; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scope-card { padding: 34px; border-radius: 18px; background: rgba(255,255,255,.62); }
.scope-card h3 { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; font-family: var(--font-heading); font-size: 19px; font-weight: 600; letter-spacing: .02em; }
.scope-card h3 span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--blue-deep); color: white; font-family: sans-serif; font-size: 12px; }
.cannot-do h3 span { background: #8b8275; }
.scope-card ul { margin: 0; padding: 0; list-style: none; }
.scope-card li { position: relative; padding: 11px 0 11px 19px; border-top: 1px solid rgba(36,52,61,.1); color: #52636a; font-size: 12px; }
.scope-card li::before { position: absolute; top: 17px; left: 1px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); content: ""; }
.cannot-do li::before { background: #9c9488; }

.faq { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; }
.faq-heading h2 { font-size: 43px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 2px; cursor: pointer; font-family: var(--font-heading); font-size: 16px; font-weight: 600; letter-spacing: .015em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-deep); font-family: sans-serif; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 48px 24px 2px; color: var(--muted); font-size: 12px; line-height: 1.9; }

.contact { position: relative; overflow: hidden; background: var(--blue-deep); color: white; }
.contact::before, .contact::after { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; }
.contact::before { top: -230px; right: -80px; width: 600px; height: 600px; }
.contact::after { bottom: -330px; left: -100px; width: 660px; height: 660px; }
.contact-inner { position: relative; z-index: 2; width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; text-align: center; }
.contact .eyebrow { color: #c6d9df; }
.contact h2 { font-size: clamp(48px, 6vw, 70px); line-height: 1.45; }
.contact-inner > p:not(.eyebrow) { margin: 25px 0 0; color: #d4e0e4; font-size: 13px; line-height: 2; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 34px; }
.contact-button { min-width: 280px; background: white; color: var(--blue-deep); cursor: default; }
.contact-actions > a { display: inline-flex; gap: 12px; align-items: center; color: #d4e0e4; font-size: 11px; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px max(28px, calc((100% - 1180px) / 2)); background: #17262e; color: #9eb0b8; font-size: 10px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: white; }
.footer-brand span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px 10px 10px 3px; background: var(--blue); font-family: var(--font-heading); font-size: 14px; }
.footer-brand strong { font-family: var(--font-heading); font-size: 13px; letter-spacing: .06em; }
footer p, footer small { margin: 0; }
.mobile-contact { display: none; }

@media (max-width: 900px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { min-height: 550px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .approach { grid-template-columns: 1fr; gap: 60px; }
  .approach-quote { min-height: 440px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .profile-visual { min-height: 640px; }
  .topic-grid { grid-template-columns: 1fr; }
  .flow-inner { grid-template-columns: 1fr; gap: 45px; }
  .flow-intro, .pricing-intro { position: static; }
  .pricing { grid-template-columns: 1fr; }
  .scope-copy, .scope-grid { grid-template-columns: 1fr; }
  .scope-copy .eyebrow { grid-column: auto; margin-bottom: -42px; }
  .faq { grid-template-columns: 1fr; gap: 42px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); padding: 13px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 14px; }
  .nav-cta { padding: 10px 13px; font-size: 11px; }
  .hero, .section { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding: 60px 0 70px; }
  .hero h1 { font-size: 43px; line-height: 1.38; }
  .hero-lead { font-size: 14px; line-height: 1.9; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-facts { gap: 12px 18px; }
  .hero-visual { min-height: 440px; margin-top: 18px; }
  .hero-visual::before { width: 330px; height: 330px; }
  .orbit-one { width: 350px; height: 250px; }
  .orbit-two { width: 260px; height: 370px; }
  .hero-character { width: min(100%, 350px); height: 470px; border-width: 5px; border-radius: 28px 28px 28px 10px; }
  .hero-character img { object-position: 50% 66%; }
  .hero-character figcaption { right: 10px; bottom: 10px; left: 10px; padding: 9px 12px; }
  .mini-card-left { left: 0; bottom: 47px; }
  .mini-card-right { top: 44px; right: 0; }
  .section { padding: 80px 0; }
  .section-heading h2 { font-size: 38px; }
  .approach { gap: 50px; }
  .approach-quote { min-height: 350px; padding: 35px 22px; }
  .approach-quote::before { width: 300px; height: 300px; }
  .approach-quote::after { width: 225px; height: 370px; }
  .approach-quote > span { top: 30px; left: 42px; }
  .approach-quote p { font-size: 19px; }
  .about-inner, .flow-inner, .scope-inner, .contact-inner { width: min(100% - 28px, 1080px); }
  .about-inner { padding: 80px 0; }
  .profile-visual { min-height: 620px; }
  .profile-visual::before { width: 270px; height: 480px; }
  .profile-visual img { width: min(286px, 88%); }
  .profile-visual figcaption { right: -7px; bottom: 48px; }
  .profile-copy h2 { font-size: 54px; }
  .profile-lead { font-size: 15px; }
  .profile-details dl > div { grid-template-columns: 64px 1fr; }
  .topic-grid article { min-height: 230px; padding: 26px 22px; }
  .flow-inner, .scope-inner { padding: 80px 0; }
  .flow-intro h2, .pricing-intro h2, .scope-copy h2, .faq-heading h2 { font-size: 36px; }
  .flow-list li { grid-template-columns: 38px 1fr; gap: 12px; }
  .price-card { grid-template-columns: 1fr; padding: 25px 22px; }
  .price-card > p, .price-card .price-text { text-align: left; }
  .price-card small { grid-column: 1; margin-top: 0; text-align: left; }
  .scope-copy .eyebrow { margin-bottom: -35px; }
  .scope-card { padding: 27px 22px; }
  .contact-inner { padding: 90px 0 110px; }
  .contact h2 { font-size: 45px; }
  footer { padding-bottom: 85px; }
  .mobile-contact { position: fixed; right: 14px; bottom: 14px; left: 14px; z-index: 50; display: grid; min-height: 50px; place-items: center; border-radius: 999px; background: var(--blue-deep); box-shadow: 0 12px 32px rgba(36,52,61,.28); color: white; font-size: 12px; font-weight: 800; }
}

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