﻿:root {
  --ink: #162f3c;
  --navy: #075f78;
  --blue: #16b4d8;
  --blue-dark: #075f78;
  --blue-soft: #e9faff;
  --orange: #ff9f1c;
  --band-bg: #075f78;
  --band-bg-alt: #0ea5c6;
  --orange-dark: #e67800;
  --orange-soft: #fff2e4;
  --line: #06c755;
  --paper: #f7fbfc;
  --white: #ffffff;
  --muted: #5a6f7a;
  --border: rgba(7, 95, 120, 0.16);
  --shadow: 0 18px 44px rgba(22, 47, 60, 0.14);
  --max: 1120px;
  --wide: 1440px;
  --header: 128px;
  --mobile-cta-size: 44px;
  --mobile-cta-icon: 23px;
  --mobile-band-font: 0.68rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  min-width: min(320px, 100%);
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  overflow-y: auto;
}

body.menu-open {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(7, 95, 120, 0.12);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: none;
  min-height: 20px;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--band-bg), var(--band-bg-alt));
  color: var(--white);
  font-size: var(--mobile-band-font);
  font-weight: 800;
  line-height: 1;
}

.top-strip span {
  white-space: nowrap;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--wide), 100%);
  min-height: 90px;
  margin: 0 auto;
  padding: 14px 48px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 350px;
}

.brand-caption {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-caption-sub {
  font-size: 0.96em;
}

.brand img {
  width: 210px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.phone-panel {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 64px;
}

.mini-label {
  display: grid;
  place-items: center;
  width: 50px;
  min-height: 50px;
  border: 1px solid #d4eef5;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.phone-panel strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.phone-panel small {
  display: block;
  margin-top: 5px;
  color: #536178;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta-line {
  background: var(--line);
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.2);
}

.cta-line:hover {
  background: #05b34c;
}

.cta-mail {
  background: var(--blue-dark);
  box-shadow: 0 12px 24px rgba(7, 95, 120, 0.2);
}

.cta-mail:hover {
  background: #064f65;
}

.cta-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0;
  line-height: 1;
}

.cta-icon::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203.5c5%200%209%203.25%209%207.25S17%2018%2012%2018c-.7%200-1.36-.06-2-.18L5%2020.5l1.32-4.12C4.25%2015.08%203%2013.05%203%2010.75%203%206.75%207%203.5%2012%203.5Z%27%20fill%3D%27black%27/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.mail-mark {
  position: relative;
  width: 22px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mail-mark::before,
.mail-mark::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 12px;
  height: 2px;
  background: currentColor;
}

.mail-mark::before {
  left: 1px;
  transform: rotate(35deg);
  transform-origin: left center;
}

.mail-mark::after {
  right: 1px;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.nav-bar {
  display: flex;
  justify-content: center;
  min-height: 38px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-weight: 900;
}

.nav-bar a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.92rem;
  line-height: 1;
}

.nav-bar a:first-child {
  border-left: 0;
}

.nav-bar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-actions,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - var(--header) - 80px);
  background: linear-gradient(135deg, #0b8db0 0%, var(--blue) 58%, var(--blue-dark) 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 76px 64px;
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 42px;
  font-size: 1rem;
  font-weight: 900;
}

.hero-kicker span {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero h1 > span {
  display: block;
}

.hero-title-chunk {
  display: inline-block;
  white-space: nowrap;
}

.hero-particle {
  display: inline-block;
  font-size: 0.62em;
  line-height: 1;
  vertical-align: -0.04em;
}

.hero-lead {
  position: relative;
  margin: 34px 0 18px;
  padding-left: 32px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.45;
}

.hero-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 6px;
  background: rgba(255, 255, 255, 0.35);
}

.visual-credential {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 4;
  width: min(330px, calc(100% - 84px));
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 250, 255, 0.92));
  box-shadow: 0 24px 46px rgba(31, 49, 66, 0.24);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.visual-credential::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #ffc45a);
}

.visual-credential span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.visual-credential strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.35;
}

.visual-credential small {
  display: block;
  margin-top: 7px;
  color: #536178;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 0;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 249, 252, 0.88));
  box-shadow: 0 14px 28px rgba(4, 36, 48, 0.16), inset 0 -2px 0 rgba(255, 159, 28, 0.36);
  color: var(--blue-dark);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-free span {
  color: var(--blue-dark);
}

.hero-free strong {
  color: var(--orange-dark);
  font-size: 1.16em;
  line-height: 1;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-buttons .cta {
  min-width: 168px;
}

.hero-credential-note {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(4, 36, 48, 0.16);
  font-weight: 900;
}

.hero-credential-note span {
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-credential-note small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #fbfeff;
  background-image: radial-gradient(rgba(55, 67, 96, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero-visual img {
  width: min(104%, 820px);
  max-width: none;
  max-height: calc(100svh - var(--header) - 80px);
  object-fit: contain;
  object-position: bottom center;
}

.hero-visual-photo {
  min-height: min(720px, calc(100svh - var(--header)));
  background: #eef3f8;
}

.hero-visual-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.hero.hero-full-photo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  min-height: calc(100svh - var(--header));
  padding: clamp(52px, 7vh, 88px) clamp(24px, 5vw, 72px);
  overflow: hidden;
  background: var(--blue-dark);
  isolation: isolate;
}

.hero.hero-full-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: auto;
  background:
    linear-gradient(90deg, rgba(4, 36, 48, 0.82) 0%, rgba(4, 54, 70, 0.56) 34%, rgba(4, 54, 70, 0.16) 54%, rgba(4, 54, 70, 0) 76%),
    linear-gradient(180deg, rgba(6, 36, 48, 0.04) 0%, rgba(6, 36, 48, 0.12) 100%);
  clip-path: none;
  pointer-events: none;
}

.hero.hero-full-photo .hero-copy {
  position: relative;
  z-index: 3;
  justify-content: center;
  width: min(720px, 54vw);
  min-height: auto;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 41, 54, 0.76), rgba(7, 95, 120, 0.56));
  box-shadow: 0 26px 70px rgba(10, 27, 36, 0.32);
  backdrop-filter: blur(12px);
}

.hero.hero-full-photo .hero-kicker {
  margin-bottom: 22px;
  color: #ffb13b;
  font-size: clamp(0.84rem, 0.9vw, 0.96rem);
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(10, 27, 36, 0.22);
}

.hero.hero-full-photo h1 {
  max-width: 11.4em;
  font-size: clamp(2.58rem, 3.95vw, 3.55rem);
  line-height: 1.18;
}

.hero.hero-full-photo .hero-lead {
  max-width: 37em;
  margin: 24px 0 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.13vw, 1.16rem);
  font-weight: 800;
  line-height: 1.78;
}

.hero.hero-full-photo .hero-lead::before {
  display: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: rgba(3, 37, 48, 0.62);
  box-shadow: 0 14px 30px rgba(4, 36, 48, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.hero-proof li::before {
  content: "QUALIFIED";
  display: block;
  margin-bottom: 4px;
  color: #ffb13b;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.hero.hero-full-photo .hero-free {
  margin-top: 20px;
  padding: 9px 16px;
  font-size: 1.04rem;
}

.hero.hero-full-photo .hero-buttons {
  margin-top: 18px;
}

.hero.hero-full-photo .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero.hero-full-photo .hero-visual img {
  position: absolute;
  inset: 0 -4vw 0 auto;
  width: calc(100% + 4vw);
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: right 16%;
  transform: none;
  filter: contrast(1.04) saturate(1.05);
}

@media (max-width: 1320px) and (min-width: 921px) {
  .hero.hero-full-photo .hero-copy {
    width: min(720px, 56vw);
  }

  .hero.hero-full-photo .hero-visual img {
    inset: 0 -8vw 0 auto;
    width: calc(100% + 8vw);
  }
}

.hero.hero-full-photo .visual-note,
.hero.hero-full-photo .visual-credential {
  display: none;
}

.visual-note {
  position: absolute;
  top: 86px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(55, 67, 96, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(55, 67, 96, 0.06);
}

.visual-note span {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--blue);
}

.visual-note p {
  margin: 0;
  color: #7b8799;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.visual-note strong {
  color: var(--ink);
  font-size: 0.95rem;
}

@media (min-width: 921px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: clamp(140px, 17vh, 176px);
    padding-bottom: 56px;
  }

  .hero h1 > span {
    white-space: nowrap;
  }

  .hero-visual {
    align-items: flex-end;
  }

  .hero-visual img {
    position: relative;
    z-index: 1;
    width: min(126%, 900px);
    max-height: none;
    transform: translateX(3%);
  }

  .hero-visual-photo img {
    width: 100%;
    transform: none;
  }

  .visual-note {
    z-index: 2;
    top: 54px;
    left: 38px;
  }

  .visual-credential {
    bottom: 54px;
    right: 38px;
  }
}

@media (min-width: 1321px) {
  .hero-visual img {
    width: min(132%, 980px);
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .hero-visual img {
    width: min(152%, 780px);
  }
}

.section {
  padding: 86px 24px;
}

.section[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--paper);
}

.section-deep {
  background: linear-gradient(180deg, var(--blue-dark), #064f65);
  color: var(--white);
}

.section-contact {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.invert p,
.section-heading.invert .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.heading-nowrap {
  white-space: nowrap;
}

.heading-particle {
  display: inline-block;
  font-size: 0.62em;
  line-height: 1;
  vertical-align: -0.04em;
}

.section-deep h2,
.section-deep h3 {
  color: var(--white);
}

.section-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-deep .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.prose p {
  margin: 0 0 20px;
  color: #4c5a72;
  font-weight: 700;
}

.prose p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.quick-grid,
.scene-grid,
.scene-note-grid,
.stats-grid,
.voice-grid,
.item-grid,
.result-grid,
.case-grid,
.area-hub {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.scene-card,
.quick-card,
.stat,
.voice,
.item-grid article,
.case-card,
.area-hub-card,
.contact-form,
.contact-side {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 50, 74, 0.06);
}

.feature-card {
  min-height: 240px;
  padding: 28px;
}

.quick-check {
  padding-top: 58px;
}

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-grid-wide .quick-card {
  min-height: 250px;
}

.quick-card {
  position: relative;
  min-height: 236px;
  padding: 26px;
  overflow: hidden;
}

.quick-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.quick-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
}

.quick-card-price h3 {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  white-space: nowrap;
}

.quick-card p {
  margin: 0;
  color: #546278;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.75;
}

.quick-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.quick-card a::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.quick-card-price strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 14px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #eefaff;
  color: var(--blue-dark);
}

.feature-icon::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.feature-icon-assessment::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M9%203h6l1%202h3v16H5V5h3l1-2Z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M9%2010h6M9%2014h3M14%2017l1.5%201.5L19%2015%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.feature-icon-shield::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203l7%203v5c0%205-3%208-7%2010-4-2-7-5-7-10V6l7-3Z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M8.5%2012l2.2%202.2L15.8%209%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.feature-icon-items::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%208l8-4%208%204-8%204-8-4Z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M4%208v8l8%204%208-4V8M12%2012v8%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.feature-card h3,
.item-grid h3,
.case-card h3,
.voice h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.35;
}

.feature-card p,
.scene-card p,
.item-grid p,
.case-card p,
.result-card p,
.voice p {
  margin: 0;
  color: #546278;
  font-size: 0.95rem;
  font-weight: 700;
}

.behavior-strip {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 159, 28, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.11), rgba(255, 255, 255, 0.94));
}

.behavior-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.behavior-strip p {
  margin: 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.75;
}

.advisor-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(55, 67, 96, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(25, 54, 84, 0.1);
}

.advisor-photo-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #edf7fb;
}

.advisor-photo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-photo-copy h2,
.advisor-photo-copy h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 1.62rem;
  line-height: 1.35;
}

.advisor-photo-copy > p:not(.eyebrow) {
  margin: 0;
  color: #546278;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.85;
}

.advisor-photo-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.advisor-photo-copy li {
  position: relative;
  padding-left: 20px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.6;
}

.advisor-photo-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.service-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
  align-items: center;
  margin: 30px 0 22px;
  padding: 20px;
  border: 1px solid rgba(55, 67, 96, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #f4fbfd);
  box-shadow: 0 18px 40px rgba(25, 54, 84, 0.1);
}

.service-photo-band-care {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.service-photo-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #edf7fb;
}

.service-photo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-copy h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.36;
}

.service-photo-copy > p:not(.eyebrow) {
  margin: 0;
  color: #546278;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.85;
}

.service-photo-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-photo-points li {
  display: grid;
  min-height: 32px;
  place-items: center;
  border: 1px solid rgba(18, 151, 191, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.scene-section {
  position: relative;
}

.scene-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scene-card {
  min-height: 226px;
  padding: 24px;
}

.scene-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.scene-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 145, 214, 0.35);
  box-shadow: 0 18px 36px rgba(28, 54, 88, 0.12);
}

.scene-card-link:focus-visible {
  outline: 3px solid rgba(34, 145, 214, 0.45);
  outline-offset: 3px;
}

.scene-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eefaff;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.scene-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.35;
}

.scene-card p {
  line-height: 1.78;
}

.scene-notice {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(55, 67, 96, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(55, 67, 96, 0.05), rgba(22, 180, 216, 0.09));
}

.scene-notice h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
}

.scene-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scene-note-grid section {
  padding: 18px;
  border: 1px solid rgba(55, 67, 96, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.scene-note-grid h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.scene-note-grid p {
  margin: 0;
  color: #546278;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.75;
}

.scene-related {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #f7fbfc;
  border: 1px solid rgba(55, 67, 96, 0.1);
}

.scene-related p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.scene-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scene-related a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(34, 145, 214, 0.22);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
}

.scene-related a span {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.scene-info-grid,
.scene-decision-grid,
.partner-support-grid {
  display: grid;
  gap: 14px;
}

.scene-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scene-info-grid article,
.partner-support-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(55, 67, 96, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(28, 54, 88, 0.08);
}

.scene-info-grid h3,
.partner-support-grid h3,
.scene-decision-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.4;
}

.scene-info-grid p,
.partner-support-grid p,
.scene-decision-panel li,
.partner-support-note {
  margin: 0;
  color: #546278;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.75;
}

.scene-decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 901px) {
  .scene-decision .section-heading.center {
    max-width: 1040px;
  }

  .scene-decision #decision-title {
    white-space: nowrap;
  }
}

.scene-decision-panel {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(55, 67, 96, 0.12);
  background: #f7fbfc;
  overflow: hidden;
}

.scene-decision-panel > span {
  position: absolute;
  right: 18px;
  top: 50%;
  z-index: 0;
  color: rgba(34, 145, 214, 0.14);
  font-size: 12rem;
  font-weight: 900;
  line-height: 0.78;
  transform: translateY(-50%);
  pointer-events: none;
}

.scene-decision-caution > span {
  color: rgba(240, 162, 58, 0.18);
}

.scene-decision-panel h3,
.scene-decision-panel ul {
  position: relative;
  z-index: 1;
}

.scene-decision-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.scene-decision-panel li {
  position: relative;
  padding-left: 18px;
}

.scene-decision-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.scene-decision-caution li::before {
  background: var(--orange);
}

.partner-support {
  position: relative;
}

.partner-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-support-grid article {
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
}

.partner-support-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.partner-support-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(34, 145, 214, 0.08);
  color: var(--navy);
}

.local-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(22, 180, 216, 0.26);
  border-radius: 8px;
  background: #f7fbff;
}

.local-note-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6f8fc;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.local-note h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.4;
}

.local-note p:not(.local-note-label) {
  margin: 0;
  color: #46566f;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.85;
}

.local-note p:not(.local-note-label) + p:not(.local-note-label) {
  margin-top: 8px;
}

.local-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-note li {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(28, 54, 88, 0.08);
}

.local-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.local-intent-grid article {
  padding: 20px;
  border: 1px solid rgba(55, 67, 96, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(28, 54, 88, 0.08);
}

.local-intent-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eefaff;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.local-intent-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.4;
}

.local-intent-grid p {
  margin: 0;
  color: #546278;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.75;
}

.priority-depth {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(55, 67, 96, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(28, 54, 88, 0.08);
}

.priority-depth-head {
  display: grid;
  gap: 8px;
  max-width: 900px;
}

.priority-depth-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.4;
}

.priority-depth-head p:not(.local-note-label) {
  margin: 0;
  color: #46566f;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.85;
}

.priority-zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.priority-zone-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eefaff;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.priority-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.priority-case-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid #e2ebf5;
  border-radius: 8px;
  background: #f7fbfc;
}

.priority-case-grid article > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.priority-case-grid h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}

.priority-case-grid p {
  margin: 0;
  color: #546278;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.75;
}

.compare-wrap {
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink);
}

.compare-table th,
.compare-table td {
  padding: 22px 20px;
  border: 1px solid #e3ebf5;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  font-weight: 800;
}

.compare-table td {
  position: relative;
}

.compare-table td span {
  display: block;
  padding-left: 42px;
}

.compare-table td::before {
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.compare-good::before {
  content: "\2713";
  background: #edfaff;
  color: var(--blue-dark);
}

.compare-mid::before {
  content: "\2013";
  background: #fff7e6;
  color: #b9770e;
}

.compare-bad::before {
  content: "!";
  background: #fff0f0;
  color: #c2413b;
}

.compare-table thead th {
  background: var(--blue-soft);
  color: var(--navy);
}

.compare-table thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  box-shadow: inset 0 -4px 0 #ffb13b;
}

.compare-table tbody td:first-of-type {
  color: var(--blue-dark);
  background: linear-gradient(135deg, #e8fbff 0%, #f9fdff 100%);
}

.compare-table tbody td:first-of-type::before {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 0 0 2px rgba(73, 169, 191, 0.18);
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.stat {
  min-height: 176px;
  padding: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.stat strong {
  display: block;
  margin: 10px 0;
  color: var(--navy);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.05;
}

.stat small {
  font-size: 1.1rem;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.voice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice {
  padding: 24px;
}

.voice .voice-tag {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item-grid article {
  min-height: 132px;
  padding: 24px;
}

.area-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.priority-area-links {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(22, 180, 216, 0.28);
  border-radius: 8px;
  background: #f7fbff;
}

.priority-area-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.priority-area-copy p {
  margin: 0;
  color: #46566f;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.7;
}

.priority-area-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.priority-area-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(28, 54, 88, 0.08);
}

.priority-area-link-list a:hover {
  color: var(--blue-dark);
}

.area-hub-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 50, 74, 0.06);
}

.area-hub-card-primary {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-color: rgba(22, 180, 216, 0.34);
  background: linear-gradient(135deg, rgba(22, 180, 216, 0.1), rgba(255, 255, 255, 0.98) 58%);
}

.area-hub-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.area-hub-head h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
}

.area-hub-head h3 a {
  color: inherit;
}

.area-hub-head h3 a:hover,
.area-link-list a:hover {
  color: var(--blue-dark);
}

.area-hub-head p {
  margin: 0;
  color: #546278;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.75;
}

.area-link-group {
  margin-top: 18px;
}

.area-link-group h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.area-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  padding: 0 11px;
  border: 1px solid #dbe8f7;
  border-radius: 6px;
  background: #f7fbfc;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.note-line {
  margin: 24px 0 0;
  color: #59657a;
  font-weight: 800;
  text-align: center;
}

.activity-section {
  position: relative;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.activity-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 50, 74, 0.06);
}

.activity-card time {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.activity-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.activity-card h3 {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
}

.activity-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: #546278;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
}

.result-section {
  position: relative;
}

.result-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.result-card {
  overflow: hidden;
  border: 1px solid rgba(55, 67, 96, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(28, 54, 88, 0.08);
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-soft);
}

.result-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eefaff;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.result-meta span:first-child {
  background: var(--blue-dark);
  color: var(--white);
}

.result-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
}

.result-card p {
  font-size: 0.84rem;
  line-height: 1.65;
}

.result-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eefaff;
  color: #46566f;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.7;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-soft);
}

.case-card div {
  padding: 18px;
}

.case-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.flow-photo-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 42px rgba(3, 27, 44, 0.18);
}

.flow-photo-copy h3 {
  margin: 10px 0 12px;
  color: var(--white);
  font-size: 1.52rem;
  line-height: 1.36;
}

.flow-photo-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.85;
}

.flow-photo-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.12);
}

.flow-photo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 268px;
  padding: 34px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(7, 19, 43, 0.18);
  color: var(--navy);
  isolation: isolate;
}

.flow-list li::before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 6px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 10px 18px rgba(255, 159, 28, 0.22);
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-top: 5px solid rgba(185, 221, 255, 0.95);
  border-right: 5px solid rgba(185, 221, 255, 0.95);
  transform: translateY(-50%) rotate(45deg);
}

.flow-list span {
  position: absolute;
  right: 14px;
  bottom: 2px;
  z-index: 0;
  color: rgba(55, 67, 96, 0.18);
  font-size: clamp(6.4rem, 8vw, 8.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.flow-list h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
}

.flow-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #536178;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
}

.social-panel {
  display: grid;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.social-copy {
  max-width: min(1000px, 100%);
}

.social-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.35;
}

.social-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 1000px;
  color: #546278;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.9;
  text-wrap: pretty;
}

.social-copy-line {
  display: block;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(55, 67, 96, 0.12);
  border-radius: 8px;
  background: #f7fbfc;
  box-shadow: 0 14px 30px rgba(28, 54, 88, 0.08);
}

.social-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.social-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 145, 214, 0.35);
  box-shadow: 0 18px 36px rgba(28, 54, 88, 0.12);
}

.social-card-link:focus-visible {
  outline: 3px solid rgba(34, 145, 214, 0.45);
  outline-offset: 3px;
}

.social-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  background: #0f1419;
}

.social-card-icon-instagram {
  background: var(--white);
}

.social-card-logo {
  display: block;
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.social-card-icon-instagram .social-card-logo {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
}

.social-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
}

.social-card p {
  margin: 0;
  color: #546278;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.75;
}

.social-status {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eefaff;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}

.faq-list {
  display: grid;
  gap: 38px;
}

.faq-category h3 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 16px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.4;
}

.faq-category h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 4px;
  height: 1.3em;
  border-radius: 99px;
  background: var(--blue);
}

.faq-items {
  border-top: 1px solid var(--border);
}

.faq-category details {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-category summary {
  position: relative;
  list-style: none;
  padding: 18px 52px 18px 42px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.55;
  cursor: pointer;
}

.faq-category summary::-webkit-details-marker {
  display: none;
}

.faq-category summary::before {
  content: "Q";
  position: absolute;
  left: 2px;
  top: 18px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.55;
}

.faq-category summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--blue-dark);
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-category details[open] summary::after {
  content: "-";
}

.faq-category details p {
  margin: 0;
  padding: 0 20px 20px 42px;
  color: #536178;
  font-weight: 700;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.contact-side {
  padding: 34px;
}

.contact-side h2 {
  margin-bottom: 18px;
}

.contact-side > p:not(.eyebrow) {
  margin: 0 0 26px;
  color: #536178;
  font-weight: 800;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.direct-contact a {
  display: block;
  padding: 18px;
  border: 1px solid #dce9f6;
  border-radius: 8px;
  background: var(--paper);
}

.direct-contact strong,
.direct-contact span {
  display: block;
}

.direct-contact strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.direct-contact span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 900;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4f5d73;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form label span {
  color: #dc2626;
  font-size: 0.72rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9e3f0;
  border-radius: 8px;
  background: #fbfeff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(34, 184, 230, 0.2);
}

.check-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.check-label span {
  color: #4f5d73 !important;
  font-size: 0.88rem !important;
}

.form-note,
.form-error,
.form-success {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-note {
  color: var(--muted);
}

.form-error {
  color: #dc2626;
}

.form-success {
  color: #047857;
}

.form-submit {
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(255, 159, 28, 0.24);
}

.form-submit:hover {
  background: var(--orange-dark);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: default;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 58px 24px 34px;
  border-top: 0;
  background: linear-gradient(180deg, var(--blue-dark) 0%, #064f65 100%);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(7, 19, 43, 0.22);
}

.footer-logo img {
  width: 150px;
}

.footer-lead {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.85;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(185, 221, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8f1f7;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-company {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.site-footer dl div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer dl .footer-address {
  grid-template-columns: 118px 1fr;
  gap: 18px;
}

.site-footer dt,
.site-footer dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer dt {
  color: #b7e3ec;
}

.site-footer dd {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer dd a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(185, 221, 255, 0.45);
  text-underline-offset: 4px;
}

.site-footer .footer-address span {
  display: block;
}

.copyright {
  width: min(var(--max), 100%);
  margin: 34px auto 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  background: linear-gradient(90deg, var(--band-bg), var(--band-bg-alt));
  color: var(--white);
  padding: 0 8px;
  font-size: var(--mobile-band-font);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.sticky-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr var(--mobile-cta-size) var(--mobile-cta-size);
  gap: 6px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(22, 47, 60, 0.22);
}

.sticky-actions a {
  min-height: var(--mobile-cta-size);
  height: var(--mobile-cta-size);
  border-radius: 8px;
}

.sticky-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  background: var(--blue);
  color: var(--white);
}

.sticky-phone::before {
  content: "";
  width: var(--mobile-cta-icon);
  height: var(--mobile-cta-icon);
  flex: 0 0 var(--mobile-cta-icon);
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6.6%204.6%209%204l2%204.8-1.7%201.1c1%202%202.7%203.8%204.8%204.8L15.2%2013l4.8%202-.6%202.4c-.2.9-1%201.6-2%201.6C10.5%2019%205%2013.5%205%206.6c0-1%20.7-1.8%201.6-2Z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.sticky-phone strong {
  font-size: 1.46rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.sticky-mail,
.sticky-line,
.mobile-action {
  position: relative;
  display: grid;
  place-items: center;
}

.sticky-mail {
  background: var(--blue-dark);
}

.sticky-line {
  background: var(--line);
}

.sticky-mail::before,
.sticky-line::before,
.mobile-action::before {
  content: "";
  display: block;
  width: var(--mobile-cta-icon);
  height: var(--mobile-cta-icon);
  background: var(--white);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.sticky-mail::before,
.mobile-action.mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%206h16v12H4z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27m4.5%207%207.5%206%207.5-6%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.sticky-line::before,
.mobile-action.line::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%203.5c5%200%209%203.25%209%207.25S17%2018%2012%2018c-.7%200-1.36-.06-2-.18L5%2020.5l1.32-4.12C4.25%2015.08%203%2013.05%203%2010.75%203%206.75%207%203.5%2012%203.5Z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

@media (max-width: 1320px) and (min-width: 921px) {
  .hero-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

  .hero-lead {
    font-size: 1.38rem;
  }

  .visual-note {
    display: none;
  }

  .visual-credential {
    right: 28px;
    bottom: 44px;
    width: min(300px, calc(100% - 56px));
  }
}

@media (min-width: 921px) {
  .hero h1.hero-title--area {
    max-width: 10.4em;
    font-size: clamp(2.55rem, 3.6vw, 3.05rem);
  }
}

@media (max-width: 1180px) {
  .header-main {
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand {
    gap: 14px;
    min-width: 350px;
  }

  .brand img {
    width: 210px;
  }

  .brand-caption {
    font-size: 0.76rem;
  }

  .phone-panel strong {
    font-size: 1.65rem;
  }

  .nav-bar a {
    padding: 0 18px;
  }

  .hero-copy {
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-free {
    font-size: 1.28rem;
    padding: 9px 16px;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1110px) and (min-width: 921px) {
  .brand {
    min-width: 210px;
  }

  .brand-caption {
    display: none;
  }
}

@media (max-width: 1000px) and (min-width: 921px) {
  .header-main {
    height: 98px;
  }

  .hero-free {
    gap: 6px;
    font-size: 1.1rem;
    padding: 9px 12px;
  }

  .hero.hero-full-photo .hero-copy {
    width: min(580px, 56vw);
  }

  .hero.hero-full-photo .hero-visual img {
    inset: 0 -10vw 0 auto;
    width: calc(100% + 10vw);
  }

  .header-actions {
    gap: 8px;
  }

  .phone-panel {
    grid-template-columns: 44px 1fr;
    gap: 8px;
    min-height: 56px;
  }

  .mini-label {
    width: 44px;
    min-height: 44px;
    font-size: 0.68rem;
  }

  .phone-panel strong {
    font-size: 1.42rem;
  }

  .phone-panel small {
    margin-top: 3px;
    font-size: 0.66rem;
  }

  .cta {
    min-height: 50px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .cta-icon {
    width: 26px;
    height: 26px;
    margin-right: 6px;
    font-size: 0.48rem;
  }

  .mail-mark {
    width: 20px;
    height: 14px;
    margin-right: 7px;
  }

  .nav-bar a {
    padding: 0 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 90px;
  }

  body {
    padding-bottom: 72px;
  }

  .top-strip {
    display: flex;
    flex-wrap: nowrap;
  }

  .header-main {
    min-height: 70px;
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    gap: 4px;
    min-width: 0;
  }

  .brand-caption {
    display: none;
  }

  .brand img {
    width: min(158px, calc(100vw - 180px));
  }

  .header-actions,
  .nav-bar {
    display: none;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-action,
  .mobile-menu {
    width: var(--mobile-cta-size);
    height: var(--mobile-cta-size);
    border-radius: 8px;
  }

  .mobile-action.line {
    background: var(--line);
  }

  .mobile-action.mail {
    background: var(--blue-dark);
  }

  .mobile-menu {
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: var(--blue);
  }

  .mobile-menu::before {
    content: "";
    display: block;
    width: var(--mobile-cta-icon);
    height: var(--mobile-cta-icon);
    background: var(--white);
    mask-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%207h16M4%2012h16M4%2017h16%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  .mobile-menu span {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 16px 18px;
    border-top: 1px solid #edf2f7;
    background: var(--white);
    box-shadow: 0 22px 32px rgba(38, 50, 74, 0.16);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid #edf2f7;
    color: var(--ink);
    font-weight: 900;
  }

  .hero {
    position: relative;
    display: block;
    min-height: min(650px, calc(100svh - var(--header) - 12px));
    overflow: hidden;
    background: linear-gradient(135deg, #0b8db0 0%, var(--blue) 58%, var(--blue-dark) 100%);
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 0;
    height: 48%;
    background: #fbfeff;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .hero.hero-full-photo::before {
    inset: 0;
    z-index: 1;
    height: auto;
    background:
      linear-gradient(90deg, rgba(4, 36, 48, 0.82) 0%, rgba(4, 54, 70, 0.56) 34%, rgba(4, 54, 70, 0.16) 54%, rgba(4, 54, 70, 0) 76%),
      linear-gradient(180deg, rgba(6, 36, 48, 0.04) 0%, rgba(6, 36, 48, 0.12) 100%);
    clip-path: none;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    min-height: auto;
    padding: 62px 20px 262px;
    color: var(--white);
  }

  .hero.hero-full-photo {
    justify-items: start;
    min-height: min(660px, calc(100svh - var(--header) - 12px));
    padding: 42px 18px 118px;
  }

  .hero.hero-full-photo .hero-copy {
    width: min(410px, 68vw);
    padding: 22px;
  }

  .hero.hero-full-photo .hero-visual img {
    inset: 0;
    width: 100%;
    object-position: 60% 16%;
    filter: contrast(1.04) saturate(1.05);
  }

  .hero-kicker {
    display: block;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-kicker span {
    display: block;
    margin-top: 2px;
    margin-left: 0;
    color: #d8f1f7;
    font-size: 0.64rem;
  }

  .hero h1 {
    max-width: 10.7em;
    font-size: clamp(2.08rem, 9.6vw, 2.44rem);
    line-height: 1.14;
    text-shadow: 0 2px 14px rgba(28, 54, 88, 0.16);
  }

  .hero.hero-full-photo h1 {
    max-width: none;
    font-size: clamp(1.64rem, 5.8vw, 2.04rem);
  }

  .hero h1 > span {
    white-space: nowrap;
  }

  .hero.hero-full-photo h1 > span {
    white-space: normal;
  }

  .hero h1.hero-title--area {
    max-width: min(100%, 13.6em);
    font-size: clamp(1.38rem, 6.1vw, 1.56rem);
  }

  .hero h1.hero-title--area > span {
    white-space: nowrap;
  }

  .hero h1 .hero-particle {
    font-size: 1em;
    vertical-align: baseline;
  }

  .hero-lead {
    display: block;
    max-width: 18em;
    margin: 14px 0 0;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero.hero-full-photo .hero-lead {
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.58;
  }

  .hero-proof {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-proof li {
    min-height: 44px;
    padding: 8px 10px 8px 12px;
    border-left-width: 3px;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .hero-proof li::before {
    margin-bottom: 3px;
    font-size: 0.5rem;
  }

  .hero-lead::before {
    display: none;
  }

  .hero-free {
    display: none;
  }

  .hero-buttons {
    display: flex;
  }

  .hero-buttons .cta {
    flex: 1;
    min-height: 48px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    min-height: 0;
    overflow: visible;
    background: transparent;
    background-image: none;
  }

  .hero-visual img {
    position: absolute;
    right: -94px;
    bottom: -24px;
    z-index: 1;
    width: min(134vw, 520px);
    max-width: none;
    max-height: none;
    filter: drop-shadow(0 18px 26px rgba(38, 50, 74, 0.2));
  }

  .visual-note {
    top: auto;
    left: 18px;
    bottom: 25px;
    z-index: 4;
    max-width: 166px;
    padding: 8px 10px;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 20px rgba(38, 50, 74, 0.08);
    backdrop-filter: blur(5px);
  }

  .visual-credential {
    left: 18px;
    right: auto;
    bottom: 30px;
    z-index: 4;
    width: min(258px, calc(100vw - 36px));
    padding: 12px 12px 11px;
    box-shadow: 0 18px 32px rgba(31, 49, 66, 0.22);
  }

  .visual-credential span {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .visual-credential strong {
    margin-top: 7px;
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .visual-credential small {
    margin-top: 5px;
    font-size: 0.66rem;
    line-height: 1.42;
  }

  .visual-note span {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .visual-note p {
    font-size: 0.62rem;
  }

  .visual-note strong {
    font-size: 0.76rem;
  }

  .section {
    padding: 66px 22px;
  }

  .split,
  .faq-layout,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .behavior-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .behavior-strip span {
    justify-content: flex-start;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
  }

  .advisor-photo-band {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
    padding: 16px;
  }

  .advisor-photo-media {
    aspect-ratio: 4 / 3;
  }

  .advisor-photo-copy h2,
  .advisor-photo-copy h3 {
    font-size: 1.34rem;
  }

  .service-photo-band,
  .service-photo-band-care {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 22px 0 20px;
    padding: 16px;
  }

  .service-photo-media {
    aspect-ratio: 4 / 3;
  }

  .service-photo-copy h3 {
    font-size: 1.3rem;
  }

  .service-photo-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-photo-band {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
  }

  .flow-photo-copy h3 {
    font-size: 1.32rem;
  }

  .flow-photo-media {
    aspect-ratio: 4 / 3;
  }

  .heading-nowrap {
    font-size: clamp(1.56rem, 7vw, 1.8rem);
  }

  .compare-wrap {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-table {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody {
    display: grid;
    gap: 14px;
  }

  .compare-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .compare-table th,
  .compare-table td {
    padding: 0;
    border: 0;
    text-align: left;
  }

  .compare-table tbody th {
    display: block;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .compare-table td {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 10px;
    align-items: start;
    min-height: 44px;
    padding: 11px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .compare-table td::before {
    position: static;
    display: inline-grid;
    align-items: center;
    justify-content: start;
    width: auto;
    height: auto;
    min-height: 22px;
    border-radius: 0;
    background: transparent;
    color: #c8d4e9;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    transform: none;
  }

  .compare-table td span {
    padding-left: 0;
  }

  .compare-table tbody td:nth-of-type(1)::before {
    content: "ATLAS";
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: 0 0 0 2px rgba(158, 239, 255, 0.32);
  }

  .compare-table tbody td:nth-of-type(1) {
    grid-template-columns: 88px 1fr;
    margin: 8px 10px 10px;
    padding: 13px 14px;
    border-top: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  }

  .compare-table tbody td:nth-of-type(1) span {
    color: var(--white);
    font-size: 0.9rem;
  }

  .compare-table td:nth-of-type(2)::before {
    content: "OTHER";
    color: #ffd58c;
  }

  .compare-table td:nth-of-type(3)::before {
    content: "SELF";
    color: #ffaaa7;
  }

  #areas-title {
    font-size: 1.6rem;
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .result-card-body {
    gap: 8px;
    padding: 12px;
  }

  .result-card h3 {
    font-size: 0.92rem;
  }

  .result-card p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .feature-grid,
  .quick-grid,
  .scene-grid,
  .scene-note-grid,
  .scene-info-grid,
  .scene-decision-grid,
  .partner-support-grid,
  .local-note,
  .local-intent-grid,
  .priority-case-grid,
  .priority-area-links,
  .activity-grid,
  .stats-grid,
  .voice-grid,
  .item-grid,
  .case-grid,
  .area-hub,
  .scene-related,
  .social-panel,
  .social-card-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .quick-card,
  .scene-card,
  .scene-notice,
  .scene-info-grid article,
  .scene-decision-panel,
  .partner-support-grid article,
  .local-note,
  .priority-depth,
  .priority-case-grid article,
  .activity-card,
  .stat,
  .voice,
  .item-grid article,
  .area-hub-card,
  .scene-related,
  .social-card,
  .contact-side,
  .contact-form {
    padding: 22px;
  }

  .social-panel {
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .scene-related > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scene-related a {
    justify-content: space-between;
    min-height: 44px;
  }

  .scene-decision-panel {
    min-height: auto;
  }

  .scene-decision-panel > span {
    right: 12px;
    top: 50%;
    font-size: 8rem;
  }

  .partner-support-note {
    font-size: 0.86rem;
  }

  .social-copy h2 {
    font-size: 1.45rem;
  }

  .social-copy p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .social-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
    gap: 12px;
  }

  .social-card-icon {
    width: 48px;
    height: 48px;
    font-size: 0.98rem;
  }

  .social-card strong {
    font-size: 1rem;
  }

  .social-card p {
    font-size: 0.84rem;
  }

  .area-hub-card-primary {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .local-note h3 {
    font-size: 1.12rem;
  }

  .local-note p:not(.local-note-label) {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .local-note li {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .local-intent-grid article {
    padding: 18px;
  }

  .local-intent-grid h3 {
    font-size: 0.98rem;
  }

  .local-intent-grid p {
    font-size: 0.84rem;
  }

  .priority-depth-head h3 {
    font-size: 1.1rem;
  }

  .priority-depth-head p:not(.local-note-label) {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .priority-zone-list {
    gap: 7px;
    margin-top: 14px;
  }

  .priority-zone-list span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .priority-area-links {
    padding: 18px;
  }

  .priority-area-copy p {
    font-size: 0.84rem;
  }

  .priority-area-link-list {
    gap: 7px;
  }

  .priority-area-link-list a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .priority-case-grid article {
    min-height: auto;
  }

  .priority-case-grid h4 {
    font-size: 0.96rem;
  }

  .priority-case-grid p {
    font-size: 0.84rem;
  }

  .area-link-list {
    gap: 7px;
  }

  .area-link-list a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .feature-card,
  .flow-list li {
    min-height: 214px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
  }

  .feature-card .feature-icon {
    grid-column: 1;
    grid-row: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
  }

  .feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }

  .feature-card p {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .activity-grid {
    gap: 12px;
  }

  .activity-card {
    gap: 7px 10px;
  }

  .activity-card time {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .activity-card > span {
    min-height: 24px;
    font-size: 0.82rem;
  }

  .activity-card h3 {
    font-size: 1.02rem;
  }

  .flow-list span {
    right: 12px;
    bottom: 0;
    font-size: 6.9rem;
  }

  .flow-list li {
    padding: 28px 24px 26px;
  }

  .flow-list li::before {
    margin-bottom: 36px;
  }

  .flow-list li::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-company {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    padding-top: 22px;
  }

  .footer-lead {
    max-width: none;
  }

  .footer-tags {
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
  }

  .footer-tags span {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-height: 34px;
    padding: 5px 8px;
    font-size: 0.74rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .site-footer dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer dl .footer-address {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sticky-cta {
    display: block;
  }
}

@media (max-width: 380px) {
  .top-strip {
    font-size: 0.68rem;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  #areas-title {
    font-size: 1.48rem;
  }

  .hero h1 {
    font-size: clamp(1.94rem, 9.6vw, 2.18rem);
  }

  .hero-free {
    display: none;
  }

  .visual-note {
    display: block;
    bottom: 18px;
    max-width: 152px;
    padding: 8px 9px;
  }

  .visual-credential {
    bottom: 24px;
    width: min(236px, calc(100vw - 30px));
    padding: 10px 10px 9px;
  }

  .visual-credential strong {
    font-size: 0.8rem;
  }

  .visual-credential small {
    display: none;
  }

  .visual-note span {
    display: none;
  }

  .visual-note p {
    font-size: 0.6rem;
  }

  .visual-note strong {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .sticky-phone strong {
    font-size: 1.16rem;
  }

  .sticky-phone {
    gap: 6px;
    padding: 0 8px;
  }

  .sticky-phone::before {
    width: var(--mobile-cta-icon);
    height: var(--mobile-cta-icon);
    flex-basis: var(--mobile-cta-icon);
  }
}

@media (max-width: 340px) {
  #areas-title {
    font-size: 1.36rem;
  }

  .brand-caption {
    display: none;
  }
}
