:root {
  --font-geist-sans:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  --navy: #063f6f;
  --navy-deep: #052f51;
  --navy-ink: #0b2c43;
  --teal: #078977;
  --teal-dark: #006b5c;
  --teal-soft: #e8f5f2;
  --copper: #bd7b2f;
  --copper-dark: #9d611f;
  --copper-soft: #f8efe3;
  --ink: #17252e;
  --muted: #60717b;
  --line: #dfe8ec;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --max: 1180px;
  --shadow: 0 16px 50px rgba(12, 49, 70, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "YuGothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.82;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-feature-settings: "palt" 1;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.content-width {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.section-space {
  padding-block: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 228, 234, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 285px;
  max-width: 100%;
}
.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: #344b59;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--teal);
  transition: right 0.24s ease;
}
.desktop-nav a:hover::after {
  right: 0;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #006e78);
  box-shadow: 0 9px 22px rgba(7, 137, 119, 0.22);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(7, 137, 119, 0.28);
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: #f5f9fa;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(4, 93, 128, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(5, 97, 132, 0.025),
    0 0 0 150px rgba(5, 97, 132, 0.025);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(600px, calc(100% - 54px));
  margin-left: max(32px, calc((100vw - 1180px) / 2));
  padding: 74px 0 92px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--navy-ink);
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.22;
  font-weight: 750;
  letter-spacing: 0.035em;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
}
.hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #4d626e;
  font-size: 17px;
  line-height: 2;
  font-weight: 550;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #007a84);
  box-shadow: 0 12px 28px rgba(3, 126, 112, 0.22);
}
.button-primary:hover {
  box-shadow: 0 16px 34px rgba(3, 126, 112, 0.3);
}
.button-outline {
  color: var(--navy-ink);
  border: 1px solid #c9d9df;
  background: rgba(255, 255, 255, 0.8);
}
.button-outline:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: #fff;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.hero-phone > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #c4d8df;
  border-radius: 50%;
  background: #fff;
}
.hero-phone > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-phone small {
  color: #748791;
  font-size: 11px;
  font-weight: 700;
}
.hero-phone strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.045em;
}

.hero-visual {
  position: relative;
  min-width: 0;
  background: #dce8ea;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 27%;
  background: linear-gradient(
    90deg,
    #f5f9fa 0%,
    rgba(245, 249, 250, 0.72) 35%,
    transparent 100%
  );
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(0deg, rgba(4, 38, 57, 0.28), transparent);
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: 54px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 250px;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  color: #fff;
  background: rgba(4, 48, 73, 0.76);
  backdrop-filter: blur(10px);
}
.hero-badge strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.hero-badge strong small {
  margin-left: 2px;
  font-size: 14px;
}
.hero-badge span {
  padding-left: 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
}
.hero-scroll {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #78909a;
  font-size: 9px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.hero-scroll span {
  width: 1px;
  height: 42px;
  background: #8da3ad;
}

.section-heading {
  margin-bottom: 52px;
}
.section-heading.centered {
  width: min(calc(100% - 48px), 850px);
  margin-inline: auto;
  text-align: center;
}
.section-heading.centered .section-kicker::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 0 4px 12px;
  background: currentColor;
}
.section-heading h2,
.strength h2,
.evidence h2,
.company h2,
.contact-cta h2 {
  margin-bottom: 20px;
  color: var(--navy-ink);
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.46;
  letter-spacing: 0.035em;
  font-weight: 750;
}
.section-heading > p:last-child,
.section-heading.centered > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.concerns {
  position: relative;
  background: #fff;
}
.concerns::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 125px;
  background: var(--mist);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}
.concern-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.concern-card {
  min-height: 248px;
  padding: 29px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(9, 54, 76, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.concern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(9, 54, 76, 0.12);
}
.concern-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  overflow: visible;
}
.concern-icon img {
  display: block;
  width: 76px;
  height: 76px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}
.concern-card span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.concern-card h3 {
  margin: 7px 0 12px;
  color: var(--navy-ink);
  font-size: 19px;
  line-height: 1.5;
}
.concern-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.services {
  position: relative;
  background: var(--mist);
  overflow: hidden;
}
.services::before {
  content: "SERVICE";
  position: absolute;
  top: 110px;
  right: -20px;
  color: rgba(5, 65, 96, 0.035);
  font-size: 150px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.services > .section-heading {
  position: relative;
}
.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: stretch;
  margin-bottom: 84px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-feature.reverse {
  grid-template-columns: 51% 49%;
}
.service-feature.reverse .service-photo {
  order: 2;
}
.service-feature.reverse .service-copy {
  order: 1;
}
.service-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 40, 54, 0.23), transparent 52%);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-feature:hover .service-photo img {
  transform: scale(1.025);
}
.service-number {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 18px;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.08em;
}
.service-copy {
  padding: 54px 58px 50px;
}
.service-label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.teal-text {
  color: var(--teal-dark);
}
.copper-text {
  color: var(--copper-dark);
}
.navy-text {
  color: var(--navy);
}
.service-title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}
.service-title-row h3 {
  margin: 0;
  color: var(--navy-ink);
  font-size: 43px;
  line-height: 1.25;
  letter-spacing: 0.055em;
}
.service-title-row span {
  color: #93a4ac;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.service-copy h4 {
  margin: 0 0 18px;
  color: #273b46;
  font-size: 20px;
  line-height: 1.6;
}
.service-copy > p:not(.service-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}
.benefit-list {
  margin: 26px 0 29px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.benefit-list li {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
  padding: 14px 0 14px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  top: 12px;
  font-weight: 900;
}
.teal-list li::before {
  color: var(--teal);
}
.copper-list li::before {
  color: var(--copper);
}
.benefit-list b {
  color: #28404c;
}
.benefit-list span {
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 800;
}
.text-link span:last-child {
  transition: transform 0.2s ease;
}
.text-link:hover span:last-child {
  transform: translate(3px, -3px);
}
.service-note {
  margin-top: -50px;
  color: #82919a;
  font-size: 11px;
  text-align: right;
}

.solution-guide {
  background: #fff;
}
.guide-table {
  overflow: hidden;
  border: 1px solid #dbe6ea;
  border-radius: 8px;
  box-shadow: 0 15px 45px rgba(8, 48, 68, 0.07);
}
.guide-head,
.guide-table > a {
  display: grid;
  grid-template-columns: 1.35fr 1.5fr 140px;
  align-items: center;
  gap: 25px;
}
.guide-head {
  padding: 15px 24px;
  color: #fff;
  background: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.guide-table > a {
  min-height: 80px;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  transition: background 0.2s ease;
}
.guide-table > a:hover {
  background: #f4f9fa;
}
.guide-table > a > span:first-child {
  color: #263d49;
  font-weight: 700;
}
.guide-table > a > span:nth-child(2) {
  color: var(--muted);
}
.guide-table b {
  justify-self: end;
  min-width: 92px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}
.teal-pill {
  color: var(--teal-dark);
  background: var(--teal-soft);
}
.copper-pill {
  color: var(--copper-dark);
  background: var(--copper-soft);
}
.navy-pill {
  color: var(--navy);
  background: #e9f0f5;
}

.strength {
  position: relative;
  color: #fff;
  background: linear-gradient(125deg, #062d49 0%, #075766 100%);
  overflow: hidden;
}
.strength::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.02),
    0 0 0 155px rgba(255, 255, 255, 0.018);
}
.strength-glow {
  position: absolute;
  top: -170px;
  left: 33%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(0, 175, 159, 0.12);
  filter: blur(80px);
}
.strength-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 52px;
  align-items: center;
}
.section-kicker.light {
  color: #72d7ca;
}
.strength h2 {
  color: #fff;
}
.strength-intro > p:not(.section-kicker) {
  margin-bottom: 28px;
  color: #c9d9df;
  font-size: 16px;
  line-height: 2;
}
.button-light {
  color: var(--navy-deep);
  background: #fff;
}
.strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.17);
}
.strength-cards article {
  min-height: 390px;
  padding: 46px 34px;
  background: rgba(4, 42, 62, 0.78);
}
.strength-cards article:nth-child(2) {
  background: rgba(5, 55, 72, 0.84);
}
.strength-cards span {
  display: block;
  margin-bottom: 64px;
  color: #71d3c8;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.strength-cards h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 22px;
  line-height: 1.65;
}
.strength-cards p {
  margin: 0;
  color: #bfd0d6;
  font-size: 14px;
  line-height: 1.95;
}

.evidence {
  background: #fff;
}
.evidence-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}
.evidence-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}
.evidence-copy .text-link {
  margin-top: 17px;
}
.evidence-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 320px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.evidence-image {
  overflow: hidden;
}
.evidence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evidence-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  background: var(--teal);
  text-align: center;
}
.evidence-data > p {
  margin-bottom: 17px;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.data-ring {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.09);
}
.data-ring strong {
  font-size: 20px;
  line-height: 1.3;
}
.evidence-data > span {
  font-size: 10px;
  line-height: 1.7;
}
.evidence-caption {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 20px 28px;
  background: #fff;
}
.evidence-caption b {
  color: var(--navy-ink);
  font-size: 15px;
}
.evidence-caption span {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.process {
  background: var(--mist);
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: #b4cbd3;
}
.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}
.process-grid article > span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border: 1px solid #8fb8bd;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 7px 18px rgba(10, 70, 86, 0.08);
  font-size: 12px;
  font-weight: 800;
}
.process-grid h3 {
  margin-bottom: 10px;
  color: var(--navy-ink);
  font-size: 16px;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.support {
  background: #fff;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}
.split-heading > p {
  padding-bottom: 10px;
  line-height: 2;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.support-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 30px;
  min-height: 280px;
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(9, 54, 76, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(9, 54, 76, 0.11);
}
.support-index {
  grid-column: 2;
  align-self: end;
  margin-bottom: 15px;
  color: #8b9ba4;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.support-art {
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}
.support-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-grid h3 {
  grid-column: 2;
  margin-bottom: 12px;
  color: var(--navy-ink);
  font-size: 22px;
  line-height: 1.55;
}
.support-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.column {
  background: var(--mist);
}
.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.column-list {
  border-top: 1px solid #cddce2;
}
.column-list article {
  display: grid;
  grid-template-columns: 120px 100px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid #cddce2;
  transition:
    padding 0.2s ease,
    background 0.2s ease;
}
.column-list article:hover {
  padding-inline: 14px;
  background: #fff;
}
.column-list time {
  color: #8899a2;
  font-size: 11px;
}
.column-list > article > span {
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}
.column-list h3 {
  margin: 0;
  color: #29404b;
  font-size: 16px;
}
.column-list b {
  color: var(--teal);
}

.company {
  background: #fff;
}
.company-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 74px;
  align-items: center;
}
.company-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.company-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 44, 66, 0.42), transparent 58%);
}
.company-visual > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 65% center;
}
.company-visual > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}
.company-visual strong {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.company-visual span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 700;
}
.company-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 2.05;
}
.company-copy dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.company-copy dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.company-copy dt {
  color: #78909b;
}
.company-copy dd {
  margin: 0;
  color: #344a56;
  font-weight: 600;
}

.contact-cta {
  position: relative;
  padding-block: 94px;
  color: #fff;
  background: linear-gradient(120deg, #06436d 0%, #08756f 100%);
  overflow: hidden;
}
.contact-watermark {
  position: absolute;
  right: -30px;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(84px, 13vw, 190px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.contact-cta h2 {
  margin-bottom: 17px;
  color: #fff;
}
.contact-layout > div:first-child > p:last-child {
  margin: 0;
  color: #d3e4e8;
  font-size: 15px;
  line-height: 1.9;
}
.contact-actions {
  display: grid;
  gap: 12px;
}
.contact-actions > a {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 17px;
  min-height: 90px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(5px);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.contact-actions > a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.18);
}
.contact-actions > a > span:first-child {
  font-size: 21px;
}
.contact-actions > a > span:nth-child(2) {
  display: grid;
}
.contact-actions small {
  color: #c9e2e2;
  font-size: 10px;
}
.contact-actions b {
  font-size: 19px;
  letter-spacing: 0.035em;
}

footer {
  color: #d3dde2;
  background: #082c45;
}
.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-block: 76px;
}
.footer-logo {
  width: 310px;
  padding: 12px 18px;
  border-radius: 5px;
  background: #fff;
}
.footer-brand > p {
  margin: 22px 0 0;
  color: #9fb1bb;
  font-size: 12px;
  line-height: 1.8;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links b {
  margin-bottom: 9px;
  color: #fff;
  font-size: 12px;
}
.footer-links a {
  color: #aebdc5;
  font-size: 11px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #819aa7;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.footer-bottom a {
  color: #c7d4da;
}

/* Floating service shortcuts */
.floating-service-nav {
  position: fixed;
  inset: 0;
  z-index: 42;
  pointer-events: none;
}
.floating-service {
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 214px;
  padding: 18px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 34px rgba(5, 40, 60, 0.22);
  backdrop-filter: blur(10px);
  transform: translateY(-38%);
  pointer-events: auto;
  transition:
    width 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
.floating-service:hover {
  width: 84px;
  box-shadow: 0 18px 42px rgba(5, 40, 60, 0.3);
}
.floating-guripika {
  left: 0;
  border-radius: 0 12px 12px 0;
  background: rgba(0, 126, 111, 0.94);
}
.floating-barrier {
  right: 0;
  border-radius: 12px 0 0 12px;
  background: rgba(164, 99, 27, 0.94);
}
.floating-service small,
.floating-service strong,
.floating-service span {
  writing-mode: vertical-rl;
}
.floating-service small {
  margin-bottom: 12px;
  opacity: 0.76;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.floating-service strong {
  font-size: 17px;
  letter-spacing: 0.12em;
}
.floating-service span {
  margin-top: 13px;
  opacity: 0.9;
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Detail pages */
.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 64px;
  color: #718791;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.breadcrumbs a:hover {
  color: var(--teal);
}
.sub-hero {
  position: relative;
  overflow: hidden;
  background: #f2f8f8;
}
.sub-hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.sub-hero-grid > div:first-child {
  align-self: center;
  padding: 80px 70px 80px 0;
}
.sub-hero h1,
.simple-sub-hero h1 {
  margin: 0 0 26px;
  color: var(--navy-ink);
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1.34;
  letter-spacing: 0.035em;
}
.sub-hero-grid > div:first-child > p:not(.section-kicker) {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.sub-hero-image {
  position: relative;
  overflow: hidden;
}
.sub-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(242, 248, 248, 0.22),
    transparent 30%
  );
}
.sub-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.copper-sub {
  background: #fbf6ef;
}
.copper-sub .sub-hero-image::after {
  background: linear-gradient(
    90deg,
    rgba(251, 246, 239, 0.22),
    transparent 30%
  );
}
.copper-button {
  color: #fff;
  background: linear-gradient(135deg, var(--copper), #98601e);
  box-shadow: 0 12px 28px rgba(157, 97, 31, 0.22);
}
.simple-sub-hero {
  padding: 84px 0 100px;
  background: linear-gradient(135deg, #f3f8f9, #fff);
}
.simple-sub-hero .breadcrumbs {
  margin-bottom: 80px;
}
.simple-sub-hero p:last-child {
  max-width: 750px;
  color: var(--muted);
  line-height: 2;
}
.detail-section {
  padding-block: 110px;
  background: #fff;
}
.detail-mist {
  background: var(--mist);
}
.lead-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: start;
}
.lead-grid h2,
.compare-grid h2,
.company-detail-grid h2,
.profile-layout h2,
.contact-info-panel h2 {
  margin: 0;
  color: var(--navy-ink);
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.5;
}
.lead-grid > div:last-child {
  padding-top: 34px;
}
.lead-grid > div:last-child p,
.company-detail-grid > div:last-child > p:not(.section-kicker),
.detail-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 2.15;
}
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-card-grid article {
  min-height: 290px;
  padding: 42px 36px;
  border-top: 4px solid var(--teal);
  background: #fff;
  box-shadow: var(--shadow);
}
.detail-card-grid article > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.detail-card-grid h3 {
  margin: 44px 0 16px;
  color: var(--navy-ink);
  font-size: 21px;
  line-height: 1.5;
}
.detail-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.copper-cards article {
  border-top-color: var(--copper);
}
.copper-cards article > span {
  color: var(--copper);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.compare-photo {
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
}
.compare-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.method-list {
  margin: 34px 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.method-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.method-list b {
  color: var(--navy-ink);
  font-size: 14px;
}
.method-list span,
.legal-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.place-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 34px 0;
}
.place-grid div {
  padding: 17px 18px;
  border: 1px solid #eadbc8;
  border-radius: 5px;
  color: var(--copper-dark);
  background: var(--copper-soft);
  font-size: 13px;
  font-weight: 700;
}
.company-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.company-detail-photo {
  min-height: 570px;
  overflow: hidden;
}
.company-detail-photo img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.company-detail-grid h2 {
  margin-bottom: 28px;
}
.profile-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 100px;
}
.profile-table {
  margin: 0;
  border-top: 1px solid #cddce2;
}
.profile-table > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #cddce2;
}
.profile-table dt {
  color: #748994;
  font-size: 12px;
}
.profile-table dd {
  margin: 0;
  color: #344b58;
  font-size: 15px;
  font-weight: 600;
}
.contact-page-section {
  background: var(--mist);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.contact-info-panel {
  position: sticky;
  top: 120px;
  padding: 40px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #08776e);
}
.contact-info-panel h2 {
  margin-bottom: 35px;
  color: #fff;
}
.contact-info-panel h2 {
  font-size: clamp(30px, 2.6vw, 38px);
}
.contact-info-panel > p {
  margin: 28px 0 0;
  color: #d8e7e9;
  font-size: 12px;
  line-height: 1.9;
}
.contact-phone-large {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.contact-phone-large small {
  color: #c8dcdf;
  font-size: 10px;
  font-weight: 500;
}
.contact-form {
  padding: 48px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 44px rgba(9, 54, 76, 0.08);
}
.contact-form > label,
.form-row label {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--navy-ink);
  font-size: 13px;
  font-weight: 700;
}
.contact-form label span b {
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 99px;
  color: #fff;
  background: var(--teal);
  font-size: 9px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cad8de;
  border-radius: 4px;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
  outline: none;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(7, 137, 119, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.privacy-check {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  font-weight: 500 !important;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.form-submit {
  border: 0;
  cursor: pointer;
}
.form-note {
  margin: 16px 0 0;
  color: var(--teal-dark);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .header-contact {
    padding-inline: 16px;
  }
  .brand {
    width: 250px;
  }
  .hero {
    grid-template-columns: 50% 50%;
  }
  .hero-copy {
    margin-left: 34px;
  }
  .strength-layout {
    gap: 44px;
  }
  .strength-cards article {
    padding-inline: 20px;
  }
  .support-card {
    grid-template-columns: 130px 1fr;
    padding: 30px;
  }
  .support-art {
    width: 130px;
  }
}

@media (max-width: 930px) {
  .section-space {
    padding-block: 86px;
  }
  .content-width {
    width: min(calc(100% - 40px), var(--max));
  }
  .header-inner {
    width: calc(100% - 34px);
    height: 72px;
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .header-contact {
    display: none;
  }
  .brand {
    width: 245px;
  }
  .mobile-menu {
    position: relative;
    display: block;
  }
  .mobile-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    position: absolute;
    width: 19px;
    height: 1px;
    background: var(--navy);
    transition: transform 0.2s ease;
  }
  .mobile-menu summary span:first-child {
    transform: translateY(-4px);
  }
  .mobile-menu summary span:last-child {
    transform: translateY(4px);
  }
  .mobile-menu[open] summary span:first-child {
    transform: rotate(45deg);
  }
  .mobile-menu[open] summary span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-menu nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 35px rgba(8, 49, 70, 0.13);
  }
  .mobile-menu nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-ink);
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-menu nav a:last-child {
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    width: min(calc(100% - 40px), 720px);
    margin: 0 auto;
    padding: 80px 0 48px;
  }
  .hero h1 {
    font-size: clamp(48px, 10vw, 70px);
  }
  .hero-visual {
    height: 510px;
  }
  .hero-visual::before {
    width: 100%;
    height: 22%;
    background: linear-gradient(180deg, #f5f9fa, transparent);
  }
  .hero-scroll {
    display: none;
  }
  .concern-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-photo {
    order: 1;
  }
  .service-feature.reverse .service-copy {
    order: 2;
  }
  .service-photo {
    min-height: 500px;
  }
  .service-copy {
    padding: 48px;
  }
  .strength-layout {
    grid-template-columns: 1fr;
  }
  .strength-cards article {
    min-height: 270px;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  .evidence-copy {
    max-width: 620px;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  .process-grid::before {
    display: none;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .company-grid {
    grid-template-columns: 1fr;
  }
  .company-copy {
    max-width: 700px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }
  .sub-hero-grid > div:first-child {
    padding-right: 0;
  }
  .sub-hero-image {
    height: 520px;
  }
  .lead-grid,
  .compare-grid,
  .company-detail-grid,
  .profile-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-info-panel {
    position: static;
  }
  .floating-service-nav {
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 64px;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(5, 40, 60, 0.14);
  }
  .floating-service {
    position: static;
    top: auto;
    width: auto;
    min-height: 64px;
    padding: 8px 14px;
    border-radius: 0;
    transform: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    text-align: left;
  }
  .floating-service:hover {
    width: auto;
    transform: none;
  }
  .floating-service small,
  .floating-service strong,
  .floating-service span {
    writing-mode: horizontal-tb;
    margin: 0;
  }
  .floating-service small {
    display: none;
  }
  .floating-service strong {
    font-size: 15px;
  }
  .floating-service span {
    font-size: 10px;
    justify-self: end;
  }
  .floating-barrier {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }
  .footer-bottom {
    margin-bottom: 64px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }
  .section-space {
    padding-block: 70px;
  }
  .content-width {
    width: calc(100% - 36px);
  }
  .brand {
    width: 220px;
  }
  .header-inner {
    width: calc(100% - 28px);
  }
  .hero-copy {
    width: calc(100% - 36px);
    padding: 62px 0 38px;
  }
  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .eyebrow::before,
  .section-kicker::before {
    width: 28px;
  }
  .hero h1 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.25;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
    min-height: 54px;
  }
  .hero-phone {
    margin-top: 4px;
  }
  .hero-phone > span:last-child {
    display: grid;
    gap: 4px;
  }
  .hero-phone strong {
    font-size: 18px;
  }
  .hero-visual {
    height: 390px;
  }
  .hero-badge {
    right: 18px;
    bottom: 18px;
    min-width: 0;
    padding: 13px 16px;
  }
  .hero-badge strong {
    font-size: 32px;
  }
  .hero-badge span {
    font-size: 9px;
  }

  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading.centered {
    width: calc(100% - 36px);
    text-align: left;
  }
  .section-heading.centered .section-kicker::after {
    display: none;
  }
  .section-heading h2,
  .strength h2,
  .evidence h2,
  .company h2,
  .contact-cta h2 {
    font-size: 30px;
    line-height: 1.48;
  }
  .section-heading.centered br {
    display: none;
  }
  .concern-grid {
    grid-template-columns: 1fr;
  }
  .concern-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 23px 21px;
  }
  .concern-icon {
    width: 56px;
    height: 56px;
    margin: 0;
  }
  .concern-icon img {
    width: 56px;
    height: 56px;
  }
  .concern-card h3 {
    margin-top: 5px;
  }
  .services::before {
    font-size: 72px;
  }
  .service-feature {
    width: calc(100% - 24px);
    margin-bottom: 50px;
  }
  .service-photo {
    min-height: 310px;
  }
  .service-number {
    left: 18px;
    bottom: 13px;
    font-size: 50px;
  }
  .service-copy {
    padding: 31px 23px 34px;
  }
  .service-title-row {
    gap: 12px;
  }
  .service-title-row h3 {
    font-size: 34px;
  }
  .service-copy h4 {
    font-size: 18px;
  }
  .benefit-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-note {
    margin-top: -24px;
    text-align: left;
  }
  .guide-table {
    border: 0;
    box-shadow: none;
  }
  .guide-head {
    display: none;
  }
  .guide-table > a {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    margin-bottom: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .guide-table > a > span:first-child {
    grid-column: 1 / -1;
  }
  .guide-table > a > span:nth-child(2) {
    font-size: 11px;
  }
  .guide-table b {
    min-width: 80px;
  }
  .strength-layout {
    gap: 40px;
  }
  .strength-cards {
    grid-template-columns: 1fr;
  }
  .strength-cards article {
    min-height: 0;
    padding: 28px 25px;
  }
  .strength-cards span {
    margin-bottom: 18px;
  }
  .strength-cards h3 br {
    display: none;
  }
  .evidence-grid {
    gap: 38px;
  }
  .evidence-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto auto;
  }
  .evidence-data {
    padding: 28px;
  }
  .evidence-caption {
    grid-column: 1;
    display: grid;
    gap: 6px;
  }
  .evidence-caption span {
    padding: 0;
    border: 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 18px;
    padding: 0 0 24px;
    text-align: left;
  }
  .process-grid article > span {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin: 0;
  }
  .process-grid h3 {
    margin: 3px 0 0;
  }
  .support-card {
    grid-template-columns: 90px 1fr;
    min-height: 0;
    gap: 0 20px;
    padding: 22px;
  }
  .support-art {
    width: 90px;
    min-height: 190px;
  }
  .support-art b {
    font-size: 30px;
  }
  .support-grid h3 {
    font-size: 19px;
  }
  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .column-list article {
    grid-template-columns: 78px 76px 1fr;
    gap: 9px;
    padding-block: 17px;
  }
  .column-list h3 {
    grid-column: 1 / 4;
    grid-row: 2;
  }
  .column-list b {
    display: none;
  }
  .company-grid {
    gap: 42px;
  }
  .company-visual,
  .company-visual > img {
    min-height: 390px;
    height: 390px;
  }
  .company-visual > div {
    right: 17px;
    bottom: 15px;
  }
  .company-visual strong {
    font-size: 40px;
  }
  .company-copy dl > div {
    grid-template-columns: 70px 1fr;
  }
  .contact-cta {
    padding-block: 70px;
  }
  .contact-actions > a {
    grid-template-columns: 34px 1fr 18px;
    padding: 14px 17px;
  }
  .contact-actions b {
    font-size: 16px;
  }
  .footer-main {
    padding-block: 55px;
  }
  .footer-logo {
    width: 100%;
    max-width: 300px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    gap: 12px;
    min-height: 80px;
  }
  .sub-hero-grid {
    width: 100%;
  }
  .sub-hero-grid > div:first-child {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 55px 0 40px;
  }
  .sub-hero h1,
  .simple-sub-hero h1 {
    font-size: 36px;
  }
  .sub-hero-image {
    height: 360px;
  }
  .breadcrumbs,
  .simple-sub-hero .breadcrumbs {
    margin-bottom: 48px;
  }
  .simple-sub-hero {
    padding: 55px 0 70px;
  }
  .detail-section {
    padding-block: 72px;
  }
  .detail-card-grid {
    grid-template-columns: 1fr;
  }
  .detail-card-grid article {
    min-height: 0;
    padding: 30px 25px;
  }
  .detail-card-grid h3 {
    margin-top: 26px;
  }
  .compare-photo,
  .compare-photo img,
  .company-detail-photo,
  .company-detail-photo img {
    min-height: 360px;
    height: 360px;
  }
  .method-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .place-grid {
    grid-template-columns: 1fr;
  }
  .profile-table > div {
    grid-template-columns: 90px 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

/* Contact Form 7 */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .privacy-check {
  display: block;
  margin-bottom: 24px;
}

.contact-form .privacy-check .wpcf7-list-item {
  margin: 0;
}

.contact-form .privacy-check label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--navy-ink);
  font-size: 13px;
  font-weight: 500;
}

.contact-form .privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}

.contact-form .wpcf7-response-output {
  margin: 20px 0 0;
}

/* =========================
   COLUMN / WordPress
========================= */

.column-list h3 a,
.column-list b a {
  color: inherit;
}

.column-list h3 a:hover {
  color: var(--teal);
}

.column-archive {
  background: var(--mist);
}

.column-pagination {
  margin-top: 48px;
}

.column-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.column-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-ink);
  font-size: 13px;
  font-weight: 700;
}

.column-pagination .page-numbers.current,
.column-pagination .page-numbers:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.column-empty {
  margin: 0;
  padding: 48px 32px;
  background: #fff;
  text-align: center;
  color: var(--muted);
}

.column-single-hero .breadcrumbs span:last-child {
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.column-single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.column-single-meta time {
  color: #8899a2;
  font-size: 12px;
}

.column-single-meta span {
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 10px;
  font-weight: 800;
}

.column-single {
  background: #fff;
}

.column-single-inner {
  width: min(calc(100% - 64px), 860px);
  margin-inline: auto;
}

.column-single-thumbnail {
  margin-bottom: 48px;
}

.column-single-thumbnail img {
  width: 100%;
  height: auto;
}

.column-single-content {
  color: #344a56;
  font-size: 16px;
  line-height: 2;
}

.column-single-content h2 {
  margin: 64px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--teal);
  color: var(--navy-ink);
  font-size: 30px;
  line-height: 1.5;
}

.column-single-content h3 {
  margin: 42px 0 18px;
  color: var(--navy-ink);
  font-size: 22px;
  line-height: 1.6;
}

.column-single-content p,
.column-single-content ul,
.column-single-content ol {
  margin-bottom: 24px;
}

.column-single-content img {
  height: auto;
}

.column-single-back {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.column-single-back a {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .column-single-inner {
    width: min(calc(100% - 36px), 860px);
  }

  .column-single-content h2 {
    margin-top: 48px;
    font-size: 25px;
  }

  .column-single-content h3 {
    font-size: 20px;
  }
}

/* =========================
   404
========================= */

.error-page {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.error-page > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .error-page__actions {
    flex-direction: column;
  }

  .error-page__actions .button {
    width: 100%;
  }
}