﻿:root {
  --color-ink: #17313b;
  --color-muted: #627985;
  --color-paper: #fbfffd;
  --color-mint: #e8fbf4;
  --color-teal: #13b8aa;
  --color-teal-dark: #087d7a;
  --color-green: #79c766;
  --color-coral: #ff7f6e;
  --color-coral-soft: #ffe9e5;
  --color-navy: #173b61;
  --color-line: #08bf5b;
  --shadow-soft: 0 20px 60px rgba(23, 49, 59,.12);
  --shadow-tight: 0 12px 32px rgba(8, 125, 122,.16);
  --shadow-photo: 0 8px 18px rgba(23, 49, 59, .12);
  --shadow-card: 0 5px 12px rgba(23, 49, 59, .09);
  --shadow-icon: 0 3px 6px rgba(23, 49, 59, .10);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.75;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--color-navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251,255,253,.88);
  border-bottom: 1px solid rgba(19,184,170,.18);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}
.brand-logo {
  display: block;
  width: 210px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover {
  color: var(--color-teal-dark);
}
.header-cta,.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: var(--shadow-tight);
}
.header-cta {
  color: #fff;
  background: var(--color-line);
  white-space: nowrap;
}
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: clip;
  background: rgba(251,255,253,.9);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(280px,.56fr);
  gap: 34px;
  align-items: end;
  padding-block: 82px 54px;
}
.hero-copy {
  max-width: 650px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--color-teal-dark);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p {
  overflow-wrap: break-word;
}
h1 {
  margin: 0;
  font-size: clamp(30px, 5.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.hero-lead,.section-head p,.wide-text,.contact p {
  color: var(--color-muted);
  font-size: 18px;
}
.hero-lead {
  max-width: 570px;
  margin: 24px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-width: 172px;
  min-height: 54px;
}
.button.primary {
  color: #fff;
  background: var(--color-coral);
}
.button.line {
  color: #fff;
  background: var(--color-line);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.hero-points li,.keyword-cloud span {
  border: 1px solid rgba(19,184,170,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--color-navy);
  font-weight: 800;
  padding: 8px 13px;
  font-size: 14px;
}
.hero-impact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 18px;
}
.hero-impact-cards > div {
  min-height: 126px;
  padding: 14px;
  border: 1px solid rgba(19,184,170,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(23,49,59,.1);
}
.hero-impact-cards > div {
  text-align: center;
}
.hero-impact-cards strong,.hero-impact-cards small {
  display: block;
}
.hero-impact-image {
  width: 70px;
  height: 70px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(23,49,59,.16));
}
.hero-impact-cards strong {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.3;
}
.hero-impact-cards small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
}
.visual-icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: var(--color-teal-dark);
  border: 2px solid currentColor;
  border-radius: 8px;
  vertical-align: middle;
}
.visual-icon::before,.visual-icon::after {
  content: "";
  position: absolute;
  display: block;
}
.icon-alert {
  color: var(--color-coral);
  border-radius: 50%;
}
.icon-alert::before {
  left: 13px;
  top: 6px;
  width: 2px;
  height: 12px;
  background: currentColor;
  border-radius: 2px;
}
.icon-alert::after {
  left: 12px;
  bottom: 5px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}
.icon-shield {
  border-radius: 50% 50% 42% 42%;
}
.icon-shield::before {
  left: 9px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.icon-building::before {
  left: 7px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 12px 0 currentColor, 0 9px currentColor, 12px 9px currentColor;
}
.icon-building::after {
  left: 13px;
  bottom: 3px;
  width: 5px;
  height: 9px;
  background: currentColor;
}
.icon-chat {
  border-radius: 50%;
}
.icon-chat::before {
  left: 8px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  transform: skewY(-35deg);
}
.icon-line {
  border-radius: 50%;
  color: var(--color-line);
}
.icon-line::before {
  left: 8px;
  top: 8px;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-top: 2px solid currentColor;
}
.hero-panel {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  backdrop-filter: blur(16px);
}
.panel-label {
  margin: 0 0 16px;
  color: var(--color-coral);
  font-weight: 900;
}
.panel-label {
  text-align: center;
}
.hero-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
.hero-panel dl > div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--color-mint);
}
.hero-panel dl > div > div {
  padding: 0;
  background: transparent;
}
.hero-panel-image {
  width: 70px;
  height: 70px;
  padding: 3px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  object-fit: contain;
  filter: drop-shadow(0 6px 9px rgba(23,49,59,.13));
}
.hero-panel dt {
  font-weight: 900;
}
.hero-panel dd {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}
.trust-strip {
  background: var(--color-navy);
  color: #fff;
  padding: 3rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.trust-grid > div {
  padding: 20px;
  background: rgba(255,255,255,.06);
}
.trust-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.trust-icon {
  width: 88px;
  height: 88px;
  padding: 4px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  object-fit: contain;
  filter: drop-shadow(0 8px 11px rgba(0,0,0,.18));
}
.trust-item > div {
  padding: 0;
  background: transparent;
}
.trust-grid strong,.trust-grid span {
  display: block;
}
.trust-grid span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.section {
  padding: 96px 0;
}
.split,.service-layout,.seo-layout {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 54px;
  align-items: center;
}
.section-head {
  max-width: 560px;
}
.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.section-link-row.center {
  justify-content: center;
}
.section-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(19,184,170,.24);
  border-radius: 999px;
  background: #fff;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 49, 59,.08);
  transition: transform.2s ease, border-color.2s ease, background.2s ease;
}
.section-link-button:hover {
  transform: translateY(-2px);
  border-color: rgba(8,125,122,.44);
  background: var(--color-mint);
}
.section-link-button.light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}
.section-link-button.light:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.48);
}
.problem-list {
  display: grid;
  gap: 14px;
}
.problem-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  border-left: 5px solid var(--color-coral);
}
.problem-list article:nth-child(2) {
  border-left-color: var(--color-teal);
}
.problem-list article:nth-child(3) {
  border-left-color: var(--color-green);
}
.problem-list article:nth-child(2) span {
  background: #e4f7f5;
  color: var(--color-teal-dark);
}
.problem-list article:nth-child(3) span {
  background: #edf8e9;
  color: #438b3c;
}
.problem-list span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-coral-soft);
  color: var(--color-coral);
  font-weight: 900;
}
.problem-list p,.case-grid p,.case-grid dd,.faq p {
  color: var(--color-muted);
  margin: 0;
}
.service,.faq {
  background: var(--color-mint);
}
.service-layout {
  grid-template-columns: minmax(0,1fr) minmax(300px,.86fr);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.feature-grid div {
  min-height: 198px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19,184,170,.18);
}
.feature-grid b,.feature-grid span {
  display: block;
}
.feature-grid b {
  text-align: center;
}
.feature-grid span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}
.feature-image {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  padding: 3px;
  border-radius: 18px;
  background: #f0fcf8;
  object-fit: contain;
  filter: drop-shadow(0 8px 11px rgba(23,49,59,.13));
}
.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.center-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.flow {
  background: #fff;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: flow-step;
}
.flow-steps li {
  position: relative;
  min-height: 176px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19,184,170,.18);
  border-top: 5px solid var(--color-teal);
  overflow: hidden;
  counter-increment: flow-step;
}
.flow-steps li::before {
  content: counter(flow-step, decimal-leading-zero);
  position: absolute;
  right: 14px;
  top: 2px;
  color: rgba(23,59,97,.09);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.flow-steps li:nth-child(2) {
  background: #fff8e7;
  border-top-color: #f1b83e;
}
.flow-steps li:nth-child(3) {
  background: #eef5ff;
  border-top-color: #4b8cdc;
}
.flow-steps li:nth-child(4) {
  background: #fff0ed;
  border-top-color: var(--color-coral);
}
.flow-steps li:nth-child(2) span {
  color: #a36b00;
}
.flow-steps li:nth-child(3) span {
  color: #2467ad;
}
.flow-steps li:nth-child(4) span {
  color: #c95546;
}
.flow-steps span,.case-type {
  position: relative;
  color: var(--color-teal-dark);
  font-size: 13px;
  font-weight: 900;
}
.flow-steps strong {
  position: relative;
  display: block;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.45;
}
.row-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-impact {
  display: block;
  max-width: 760px;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.case-impact img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center 48%;
}
.case-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  border-top: 5px solid var(--color-coral);
}
.case-grid article:nth-child(2) {
  border-top-color: var(--color-teal);
}
.case-grid article:nth-child(2).case-type {
  color: var(--color-teal-dark);
}
.case-grid dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}
.case-grid dl > div {
  padding: 14px;
  border-radius: var(--radius);
}
.case-grid .case-before {
  background: #fff1ef;
  border-left: 3px solid var(--color-coral);
}
.case-grid .case-after {
  background: var(--color-mint);
  border-left: 3px solid var(--color-teal);
}
.case-grid dt {
  color: var(--color-navy);
  font-weight: 900;
}
.seo {
  background: var(--color-navy);
  color: #fff;
}
.seo .eyebrow,.seo .wide-text {
  color: rgba(255,255,255,.76);
}
.seo-layout {
  grid-template-columns: minmax(300px,.86fr) minmax(0,1fr);
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.keyword-cloud span {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 34px auto 0;
}
details {
  border-left: 5px solid var(--color-teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  padding: 18px 22px;
}
.faq-grid details[open] {
  background: #f2fbf7;
  border-left-width: 7px;
}
.faq-grid details:nth-child(2) {
  border-left-color: #f1b83e;
}
.faq-grid details:nth-child(3) {
  border-left-color: var(--color-coral);
}
summary {
  cursor: pointer;
  font-weight: 900;
}
summary::marker {
  color: var(--color-coral);
}
.contact {
  padding: 84px 0;
  background: var(--color-coral-soft);
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,420px);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}
.contact-card img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.site-footer {
  padding: 28px 0;
  color: #fff;
  background: #102835;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-inner p {
  margin: 0;
}
.footer-inner a {
  color: #a8f1d0;
  font-weight: 800;
}
@media(max-width: 920px) {
  .nav {
    display: none;
  }
  .hero {
    min-height: auto;
    background: rgba(251,255,253,.94);
  }
  .hero-media {
    position: absolute;
    height: 100%;
    min-height: 0;
  }
  .hero-media img {
    opacity:.34;
    object-position: 62% top;
  }
  .hero-grid,.split,.service-layout,.seo-layout,.row-head,.contact-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-block: 64px 42px;
  }
  .hero-panel {
    max-width: 560px;
  }
  .trust-grid,.flow-steps {
    grid-template-columns: 1fr;
  }
  .trust-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .trust-icon {
    width: 76px;
    height: 76px;
  }
  .flow-steps li {
    min-height: auto;
  }
}
@media(max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }
  .header-inner {
    min-height: 64px;
  }
  .brand-logo {
    width: 172px;
    max-height: 40px;
  }
  .header-cta {
    display: none;
  }
  .hero-media {
    height: 100%;
  }
  .hero-actions,.button {
    width: 100%;
  }
  .hero-impact-cards {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .hero-impact-cards > div {
    min-height: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 12px;
    align-items: center;
  }
  .hero-impact-cards > div {
    text-align: left;
  }
  .hero-impact-image {
    margin-inline: 0;
  }
  .hero-impact-cards strong {
    margin: 0;
  }
  .hero-impact-cards small {
    grid-column: 2;
    margin: 2px 0 0;
  }
  .section {
    padding: 68px 0;
  }
  .feature-grid,.case-grid {
    grid-template-columns: 1fr;
  }
  .section-link-row,.section-link-button {
    width: 100%;
  }
  .problem-list article {
    grid-template-columns: 1fr;
  }
  .problem-list span {
    grid-row: auto;
  }
  .contact-card {
    padding: 22px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Premium draft retained only for the hero and final contact section. */
.premium-frame .hero {
  min-height: 760px;
  isolation: isolate;
  background: var(--color-navy);
}
.premium-frame .hero-media {
  z-index: -2;
}
.premium-frame .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 37, 53, 0.64);
}
.premium-frame .hero-grid {
  gap: 56px;
  padding-block: 108px 72px;
}
.premium-frame .hero .eyebrow,
.premium-frame .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}
.premium-frame h1 {
  color: #ffffff;
  max-width: 720px;
}
.premium-frame .hero-points li {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}
.premium-frame .hero-impact-cards {
  max-width: 650px;
  gap: 14px;
}
.premium-frame .hero-impact-cards > div {
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
  box-shadow: none;
}
.premium-frame .hero-panel {
  padding: 28px;
  border: 0;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}
.premium-frame .contact {
  background: #f5f8f8;
}
.premium-frame .contact-card {
  padding: 48px;
  border-radius: 0;
  background: #17313b;
  color: #ffffff;
  box-shadow: none;
}
.premium-frame .contact-card .eyebrow,
.premium-frame .contact-card p {
  color: rgba(255, 255, 255, 0.74);
}
.premium-frame .contact-card img {
  border-radius: 0;
}
.premium-frame .contact-card .section-link-button {
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 920px) {
  .premium-frame .hero {
    min-height: auto;
  }
  .premium-frame .hero-grid {
    padding-block: 84px 56px;
  }
}

@media (max-width: 680px) {
  .premium-frame .hero-grid {
    padding-block: 40px 48px;
  }
  .premium-frame .contact-card {
    padding: 28px;
  }
}

/* Phase 1 lower pages */
.nav a[aria-current="page"] {
  color: var(--color-teal-dark);
}
.nav a[aria-current="page"]::after {
  width: 100%;
}
.site-menu {
  display: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  color: var(--color-muted);
  font-size: 13px;
}
.breadcrumb a {
  color: var(--color-teal-dark);
  font-weight: 800;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background: linear-gradient(135deg, #f7fffc 0%, #e9f8f3 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -180px;
  border: 76px solid rgba(19, 184, 170, .08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
  gap: 58px;
  align-items: center;
}
.page-hero h1 {
  max-width: 720px;
  margin: 10px 0 20px;
}
.page-hero.simple h1 {
  text-align: center;
  margin: 0 auto;
}
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 17px;
}
.page-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
}
.page-hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-hero.simple {
  padding-block: 72px;
  text-align: center;
}
.page-hero.simple p {
  margin-inline: auto;
}
.section.compact {
  padding-block: 62px;
}
.section.soft {
  background: #f3faf7;
}
.section-title {
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-coral);
}
.center-head .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 28px auto 0;
}
.proof > div {
  padding: 26px;
  border: 1px solid rgba(19, 184, 170, .22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  text-align: center;
}
.proof dt {
  color: var(--color-muted);
  font-weight: 800;
}
.proof dd {
  margin: 6px 0 2px;
  color: var(--color-navy);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
}
.proof small {
  color: var(--color-muted);
}
.cards {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards article {
  padding: 26px;
  border: 1px solid rgba(19, 184, 170, .17);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  text-align: center;
}
.cards h3 {
  margin: 10px 0;
}
.cards p {
  margin-bottom: 0;
  color: var(--color-muted);
  text-align: left;
}
.cards a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-teal-dark);
  font-weight: 900;
}
.card-number,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #e4f7f5;
  color: var(--color-teal-dark) !important;
  font-size: 24px;
  font-weight: 900;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: lower-step;
}
.steps li {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  overflow: hidden;
  border-top: 5px solid var(--color-teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
  counter-increment: lower-step;
  text-align: center;
}
.steps li::before {
  content: counter(lower-step, decimal-leading-zero);
  position: absolute;
  right: 12px;
  top: 2px;
  color: rgba(23, 59, 97, .08);
  font-size: 48px;
  font-weight: 900;
}
.steps span {
  position: relative;
  color: var(--color-teal-dark);
  font-size: 16px;
  font-weight: 900;
}
.steps h3 {
  position: relative;
  margin-top: 24px;
}
.steps p {
  margin-bottom: 0;
  color: var(--color-muted);
  text-align: left;
}
.section.navy {
  background: var(--color-navy);
  color: #fff;
}
.section.navy .eyebrow,
.section.navy p {
  color: rgba(255, 255, 255, .76);
}
.section.navy .section-title::after {
  background: var(--color-teal);
}
.section.navy .cards article {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}
.price {
  color: var(--color-navy);
  font-size: 20px;
}
.price strong {
  color: var(--color-coral);
  font-size: clamp(38px, 5vw, 58px);
}
.note {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--color-mint);
  box-shadow: var(--shadow-tight);
}
.note h3 {
  margin-top: 0;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}
.check-list li::marker {
  color: var(--color-teal);
}
.note > .heading-with-icon {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.note > .heading-with-icon > h3 {
  order: -1;
  width: 100%;
  margin: 0;
  text-align: center;
}
.note > .heading-with-icon > .content-icon {
  margin: 0 auto;
}
.note > .check-list {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  text-align: left;
}
.results {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 38px auto 0;
}
.results article {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
}
.results header {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(23, 49, 59, .1);
}
.results header.heading-with-icon {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.results header.heading-with-icon > .content-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 16px;
}
.results header.heading-with-icon > div {
  width: auto;
}
.results header .tag {
  min-height: 26px;
  margin: 0 0 7px;
  padding: 3px 10px;
  font-size: 13px;
  line-height: 1.4;
}
.results header h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
}
.results dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.results dl > div {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
}
.results dl > div:nth-child(1) {
  border-color: rgba(245, 125, 104, .18);
  background: #fff7f3;
}
.results dl > div:nth-child(2) {
  border-color: rgba(19, 184, 170, .16);
  background: #f3fbf8;
}
.results dl > div:nth-child(3) {
  border-color: rgba(23, 49, 59, .1);
  background: #f2f7f9;
}
.results dt {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  gap: 12px;
  color: var(--color-teal-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}
.results dt .content-icon.small {
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 2px;
  border-radius: 16px;
}
.results dd {
  margin: 0;
  color: #3c5159;
  line-height: 1.8;
}
.results blockquote {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--color-coral);
  border-radius: 0 14px 14px 0;
  background: var(--color-coral-soft);
  line-height: 1.75;
}
.results blockquote strong {
  display: block;
  margin-bottom: 6px;
}
.contact-band {
  padding: 78px 0;
  background: #17313b;
  color: #fff;
  text-align: center;
}
.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, .76);
}
.contact-band .hero-actions {
  justify-content: center;
}
.button.light {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.button.secondary {
  border-color: rgba(23, 49, 59, .16);
  background: #fff;
  color: var(--color-navy);
}
.faq-categories {
  display: grid;
  gap: 58px;
}
.faq-categories section {
  max-width: 900px;
  margin-inline: auto;
  width: 100%;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  text-align: center;
}
.article-grid article {
  padding: 28px;
  border-top: 5px solid var(--color-teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-tight);
}
.article-grid article:first-child {
  grid-column: span 2;
}
.article-grid h3 {
  margin: 14px 0 10px;
}
.article-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 18px;
  border-radius: 14px;
  object-fit: cover;
}
.article-grid p {
  color: var(--color-muted);
}
.article-grid a {
  color: var(--color-teal-dark);
  font-weight: 900;
}
.article-date {
  display: block;
  margin: 12px 0;
  color: var(--color-muted);
  font-size: 14px;
}
.article-header {
  padding: 68px 0 42px;
  background: #f2faf7;
}
.narrow {
  max-width: 900px;
}
.article-header h1 {
  margin: 16px 0;
}
.article-header p:not(.tag) {
  color: var(--color-muted);
  font-size: 17px;
}
.article-image {
  margin-top: 40px;
}
.article-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 54px;
  max-width: 1000px;
  padding-block: 54px 90px;
}
.article-body section + section {
  margin-top: 48px;
}
.article-body section h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-teal);
}
.article-content > :first-child {
  margin-top: 0;
}
.article-content > :last-child {
  margin-bottom: 0;
}
.article-content h2,
.article-content h3 {
  margin-top: 48px;
}
.article-content h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-teal);
}
.article-content p,
.article-content li,
.article-content blockquote {
  color: var(--color-muted);
  line-height: 1.9;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}
.article-points,
.article-side,
.article-notice {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--color-mint);
}
.article-points {
  margin-bottom: 46px;
}
.article-points h2,
.article-side h2 {
  margin-top: 0;
  border: 0 !important;
}
.article-points ul {
  margin-bottom: 0;
  padding-left: 22px;
}
.article-side {
  position: sticky;
  top: 104px;
  height: fit-content;
}
.article-side .button,
.article-side .section-link-button {
  width: 100%;
  margin-top: 12px;
}
.article-notice {
  margin-top: 42px;
  border-left: 4px solid var(--color-coral);
  background: var(--color-coral-soft);
}
.empty-state {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.company-layout {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr);
  gap: 58px;
  align-items: start;
}
.company-data {
  margin: 0;
  border-top: 1px solid rgba(23, 49, 59, .14);
}
.company-data > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(23, 49, 59, .14);
}
.company-data dt {
  color: var(--color-navy);
  font-weight: 900;
}
.company-data dd {
  margin: 0;
}
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--color-navy);
  font-weight: 900;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 49, 59, .22);
  border-radius: 10px;
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  font-weight: 500;
}
.form-grid textarea {
  min-height: 160px;
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(19, 184, 170, .18);
  border-color: var(--color-teal);
}
.required {
  display: inline-flex;
  width: fit-content;
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--color-coral-soft);
  color: #b34639;
  font-size: 11px;
  font-weight: 900;
}
.field-error {
  color: #b42318;
  font-weight: 800;
}
.form-alert {
  padding: 16px 18px;
  border-left: 4px solid #b42318;
  background: #fff0ef;
  color: #8b1a12;
  font-weight: 800;
}
.form-submit {
  margin-top: 28px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.confirm-list {
  margin-top: 24px;
  border-top: 1px solid rgba(23, 49, 59, .14);
}
.confirm-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(23, 49, 59, .14);
}
.confirm-list dt {
  font-weight: 900;
}
.confirm-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.form-complete {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--color-mint);
}
.contact-options {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: var(--radius);
  background: #f1faf7;
  box-shadow: var(--shadow-tight);
}
.contact-options h2 {
  margin-top: 0;
}
.contact-option {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--color-navy);
}
.contact-option strong {
  font-size: 20px;
}
.contact-option span {
  color: var(--color-muted);
  font-size: 13px;
}
.line-option strong {
  color: #087d55;
}
.contact-options .section-link-button {
  width: 100%;
  margin-top: 18px;
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(160px, .6fr) minmax(220px, .8fr);
  align-items: start;
  padding-block: 18px;
}
.footer-logo {
  max-width: 210px;
  height: auto;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
}
.site-footer address {
  margin-top: 6px;
  color: rgba(255, 255, 255, .7);
  font-style: normal;
}
.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-nav a,
.footer-contact a {
  color: #a8f1d0;
  font-weight: 800;
}
.footer-contact span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

@media(max-width: 920px) {
  .header-inner {
    position: relative;
  }
  .site-menu {
    display: block;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-menu summary {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0 15px;
    border: 1px solid rgba(23, 49, 59, .16);
    border-radius: 999px;
    background: #fff;
    color: var(--color-navy);
  }
  .site-menu nav {
    position: absolute;
    z-index: 20;
    top: calc(100% - 8px);
    right: 0;
    width: min(300px, calc(100vw - 28px));
    display: grid;
    padding: 14px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }
  .site-menu nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(23, 49, 59, .08);
    color: var(--color-navy);
    font-weight: 900;
  }
  .page-hero-grid,
  .company-layout,
  .form-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .page-hero-grid {
    gap: 34px;
  }
  .page-hero figure {
    max-width: 720px;
  }
  .cards.four,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-side,
  .contact-options {
    position: static;
  }
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media(max-width: 680px) {
  .page-hero {
    padding-block: 46px;
  }
  .page-hero h1 br {
    display: none;
  }
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }
  .proof,
  .cards.two,
  .cards.three,
  .cards.four,
  .steps,
  .article-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .article-grid article:first-child,
  .form-grid .full {
    grid-column: auto;
  }
  .cards article,
  .results article,
  .note,
  .article-points,
  .article-side,
  .contact-options {
    padding: 22px;
  }
  .steps li {
    min-height: 0;
  }
  .results dl > div,
  .company-data > div,
  .confirm-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .article-layout {
    padding-block: 36px 62px;
  }
  .article-image img {
    aspect-ratio: 4 / 3;
  }
  .form-actions,
  .form-actions .button,
  .form-submit {
    width: 100%;
  }
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-inner > div:first-child {
    grid-column: auto;
  }
}

/* Balanced visual richness for lower pages. */
.content-icon {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  padding: 2px;
  border: 1px solid rgba(19, 184, 170, .14);
  border-radius: 16px;
  background: #f2fbf7;
  object-fit: contain;
  box-shadow: var(--shadow-icon);
  margin: 0 auto;
}

.content-icon.small {
  width: 34px;
  height: 34px;
  padding: 1px;
  border-radius: 9px;
}
.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.heading-with-icon > div,
.heading-with-icon > h2,
.heading-with-icon > h3 {
  min-width: 0;
}
.heading-with-icon .section-title {
  flex: 1;
  margin-block: 0;
}
.heading-with-icon > .content-icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
}
.cards article > .content-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
}
.steps .content-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 13px;
}
.illustration-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-block: -28px 28px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.illustration-step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.illustration-step:last-child {
  border-right: 0;
}
.illustration-step .content-icon {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, .24);
  box-shadow: var(--shadow-icon);
}
.illustration-step strong,
.illustration-step span {
  display: block;
}
.illustration-step strong {
  line-height: 1.45;
}
.illustration-step span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}
.article-points .heading-with-icon {
  margin-bottom: 14px;
}
.article-points .heading-with-icon h2 {
  margin: 0;
}
.article-side > .content-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}
.contact-option {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.contact-option .content-icon {
  width: 58px;
  height: 58px;
  grid-row: 1 / span 2;
  border-radius: 12px;
}
.contact-option > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.page-hero figure,
.article-image img {
  box-shadow: var(--shadow-photo);
}
.proof > div,
.cards article,
.steps li,
.note,
.results article,
.article-grid article,
.article-points,
.article-side,
.contact-options,
.form-complete {
  box-shadow: var(--shadow-card);
}
.section.navy .cards article,
main > .page-hero ~ .section .faq-grid details,
.form-grid input,
.form-grid select,
.form-grid textarea {
  box-shadow: none;
}
main > .page-hero ~ .section .faq-grid details {
  border: 1px solid rgba(19, 184, 170, .18);
  border-left-width: 5px;
}

@media(max-width: 920px) {
  .illustration-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .illustration-step:nth-child(2) {
    border-right: 0;
  }
  .illustration-step:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }
}

@media(max-width: 680px) {
  .content-icon {
    width: 72px;
    height: 72px;
  }
  .content-icon.small {
    width: 80px;
    height: 80px;
  }
  .heading-with-icon {
    align-items: flex-start;
  }
  .heading-with-icon > .content-icon {
    width: 54px;
    height: 54px;
  }
  .illustration-strip {
    grid-template-columns: 1fr;
    margin-block: -16px 18px;
  }
  .illustration-step,
  .illustration-step:nth-child(2),
  .illustration-step:last-child {
    grid-column: auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .illustration-step:last-child {
    border-bottom: 0;
  }
  .results article {
    padding: 20px;
  }
  .results header.heading-with-icon {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 18px;
  }
  .results header.heading-with-icon > .content-icon {
    width: 56px;
    height: 56px;
    border-radius: 13px;
  }
  .results header .tag {
    min-height: 24px;
    margin-bottom: 5px;
    padding: 2px 9px;
    font-size: 12px;
  }
  .results header h3 {
    font-size: 18px;
  }
  .results dl {
    gap: 10px;
    margin: 18px 0;
  }
  .results dl > div {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }
  .results dt {
    grid-template-columns: 80px auto;
    gap: 12px;
  }
  .results dt .content-icon.small {
    width: 80px;
    height: 80px;
  }
  .results dd {
    font-size: 15px;
    line-height: 1.75;
  }
  .results blockquote {
    padding: 16px 16px 16px 18px;
  }
}
