:root {
  --ink: #17232e;
  --muted: #65727d;
  --subtle: #edf3f5;
  --surface: #ffffff;
  --line: #06c755;
  --line-dark: #078f4b;
  --line-soft: rgba(6, 199, 85, 0.1);
  --coral: #ed7f6f;
  --coral-soft: rgba(237, 127, 111, 0.12);
  --blue: #4b95b5;
  --blue-soft: rgba(75, 149, 181, 0.13);
  --gold: #b58a36;
  --gold-soft: rgba(181, 138, 54, 0.13);
  --border: rgba(23, 35, 46, 0.1);
  --shadow: 0 18px 44px rgba(23, 35, 46, 0.1);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  background: #f8fbfc;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 35, 46, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.35;
  text-decoration: none;
}

.brand-mark,
.line-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--line-dark);
  background: var(--line-soft);
  border: 1px solid rgba(6, 199, 85, 0.24);
  border-radius: 50%;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.header-cta,
.button,
.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-cta,
.button-line,
.mini-cta {
  color: #ffffff;
  background: var(--line);
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.26);
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.button:hover,
.header-cta:hover,
.mini-cta:hover {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(23, 35, 46, 0.16);
}

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero-checklist.png");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.74) 62%, rgba(248, 251, 252, 0.96) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 96px;
}

.hero-copy-block {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--line-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 3.15rem;
  font-weight: 850;
  line-height: 1.14;
}

.title-line {
  display: block;
}

.title-last {
  font-size: 0.86em;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: #33414d;
  font-size: 1.08rem;
  font-weight: 680;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 18px;
}

.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #245141;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 199, 85, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 820;
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 35, 46, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-label {
  margin: 0 0 14px;
  color: var(--line-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-check-list,
.plain-checks,
.route-card ul,
.fit-column ul,
.line-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-check-list li,
.plain-checks li,
.route-card li,
.fit-column li,
.line-card li {
  position: relative;
  padding-left: 22px;
  color: #40505d;
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.62;
}

.hero-check-list li::before,
.plain-checks li::before,
.route-card li::before,
.fit-column li::before,
.line-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--line);
  border-radius: 50%;
}

.mini-cta {
  width: 100%;
  margin-top: 20px;
}

.check-preview {
  display: grid;
  gap: 10px;
}

.preview-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  background: #f8fbfc;
  border: 1px solid rgba(23, 35, 46, 0.08);
  border-radius: 8px;
}

.preview-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-row strong {
  font-size: 0.9rem;
  line-height: 1.45;
}

.intent-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(23, 35, 46, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intent-item {
  min-height: 104px;
  padding: 20px;
  background: #ffffff;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.intent-item + .intent-item {
  border-left: 1px solid rgba(23, 35, 46, 0.08);
}

.intent-item:hover {
  transform: translateY(-2px);
  background: #f7fcfa;
}

.intent-item span {
  display: block;
  width: max-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.intent-item strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.4;
}

.photo-strip-section {
  padding: 78px 0 84px;
  background: #ffffff;
}

.photo-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.photo-strip-head h2 {
  max-width: 640px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.25;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.88fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.photo-tile,
.route-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #edf3f5;
  border: 1px solid rgba(23, 35, 46, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 35, 46, 0.07);
}

.photo-tile-large {
  grid-row: span 2;
}

.photo-tile-wide {
  grid-column: span 2;
}

.photo-tile img,
.route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.side-photo-grid,
.warning-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.side-photo,
.warning-photo,
.inline-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #edf3f5;
  border: 1px solid rgba(23, 35, 46, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 35, 46, 0.07);
}

.side-photo img,
.warning-photo img,
.inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-photo,
.warning-photo {
  height: 170px;
}

.inline-photo {
  margin-top: 24px;
  height: 230px;
}

.warning-photo {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.side-photo figcaption,
.warning-photo figcaption,
.inline-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.section {
  padding: 96px 0;
}

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

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.3rem;
  font-weight: 850;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.warning-copy p,
.route-card p,
.final-cta p {
  color: var(--muted);
  font-size: 1.02rem;
}

.sticky-heading {
  position: sticky;
  top: 104px;
}

.sample-section {
  background: #ffffff;
  padding-top: 88px;
}

.sample-layout,
.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.sample-sheet {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 35, 46, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sheet-head,
.sheet-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
}

.sheet-head {
  color: #ffffff;
  background: #17352d;
}

.sheet-head span,
.sheet-head strong,
.sheet-row span,
.sheet-row p {
  display: flex;
  align-items: center;
  min-height: 58px;
  margin: 0;
  padding: 14px 18px;
}

.sheet-head span {
  color: #8de4b2;
  font-size: 0.78rem;
  font-weight: 900;
}

.sheet-head strong {
  font-size: 1.02rem;
}

.sheet-row + .sheet-row {
  border-top: 1px solid rgba(23, 35, 46, 0.08);
}

.sheet-row span {
  color: var(--line-dark);
  background: #f8fbfc;
  font-size: 0.84rem;
  font-weight: 900;
}

.sheet-row p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 690;
}

.problem {
  background:
    linear-gradient(90deg, rgba(216, 236, 246, 0.55) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  background-size: 84px 100%, auto;
}

.problem-layout,
.routes-layout,
.faq-layout,
.policy-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 46px;
  align-items: start;
}

.pain-grid,
.route-list,
.faq-list,
.policy-grid {
  display: grid;
  gap: 14px;
}

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

.pain-card,
.compare-card,
.route-card,
.step-card,
.faq-item,
.policy-item,
.photo-card,
.trust-card {
  background: #ffffff;
  border: 1px solid rgba(23, 35, 46, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 35, 46, 0.06);
}

.pain-card {
  min-height: 216px;
  padding: 22px;
}

.pain-card span,
.compare-card span,
.route-head span,
.policy-item span,
.fit-column span,
.trust-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 2px 8px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.pain-card:nth-child(2n) span,
.route-card:nth-child(2n) .route-head span {
  color: #ad554a;
  background: var(--coral-soft);
}

.pain-card:nth-child(3n) span,
.route-card:nth-child(3n) .route-head span {
  color: #327f9d;
  background: var(--blue-soft);
}

.pain-card h3,
.compare-card h3,
.route-card h3,
.step-card h3,
.policy-item h3,
.trust-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.45;
}

.pain-card p,
.compare-card p,
.step-card p,
.faq-item p,
.policy-item p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.warning {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(75, 149, 181, 0.16) 0%, transparent 54%),
    linear-gradient(135deg, #14222c 0%, #163b34 100%);
}

.warning .eyebrow {
  color: #8de4b2;
}

.warning-layout,
.cost-layout,
.language-layout,
.line-layout,
.fit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.warning-copy p {
  color: #dce8eb;
}

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

.warning-board div {
  min-height: 154px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.warning-board span {
  display: block;
  margin-bottom: 12px;
  color: #8de4b2;
  font-size: 0.78rem;
  font-weight: 900;
}

.warning-board strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.55;
}

.solution {
  background: #ffffff;
}

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

.compare-card {
  position: relative;
  min-height: 196px;
  padding: 24px;
  overflow: hidden;
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--line);
}

.compare-card:nth-child(2)::before {
  background: var(--coral);
}

.compare-card:nth-child(3)::before {
  background: var(--blue);
}

.route-section {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(6, 199, 85, 0.1), transparent 48%),
    #f8fbfc;
}

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

.trust-card {
  min-height: 192px;
  padding: 22px;
}

.route-card {
  padding: 24px;
}

.route-photo {
  height: 188px;
  margin: -6px -6px 18px;
  box-shadow: none;
}

.route-primary {
  border-color: rgba(6, 199, 85, 0.22);
  box-shadow: 0 18px 42px rgba(6, 199, 85, 0.12);
}

.route-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.route-head h3 {
  max-width: 540px;
}

.route-card p {
  margin: 0 0 18px;
}

.route-card ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.route-card li {
  min-height: 36px;
  padding: 7px 10px;
  color: #33414d;
  background: #f8fbfc;
  border: 1px solid rgba(23, 35, 46, 0.08);
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.route-card li::before {
  display: none;
}

.cost-section {
  background:
    linear-gradient(135deg, rgba(237, 127, 111, 0.12), transparent 48%),
    #fffefe;
}

.cost-table {
  overflow: hidden;
  border: 1px solid rgba(23, 35, 46, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cost-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 62px;
}

.cost-row + .cost-row {
  border-top: 1px solid rgba(23, 35, 46, 0.08);
}

.cost-row span {
  display: flex;
  align-items: center;
  padding: 16px 20px;
}

.cost-row span:first-child {
  color: var(--ink);
  background: #f8fbfc;
  font-weight: 850;
}

.cost-row span:last-child {
  color: var(--muted);
  font-weight: 690;
}

.cost-row-head span {
  color: #ffffff !important;
  background: #17352d !important;
  font-weight: 900;
}

.language-section {
  background: #ffffff;
}

.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.plain-checks {
  margin-top: 22px;
}

.line-section {
  background:
    linear-gradient(90deg, rgba(216, 236, 246, 0.55) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f7fcfa 0%, #ffffff 100%);
  background-size: 84px 100%, auto;
}

.line-section .button {
  margin-top: 24px;
}

.line-mock {
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(23, 35, 46, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.line-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 16px;
  border-bottom: 1px solid rgba(23, 35, 46, 0.08);
}

.line-mock-header strong,
.line-mock-header small {
  display: block;
  line-height: 1.35;
}

.line-mock-header small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.line-chat {
  display: grid;
  gap: 12px;
  padding: 18px 8px 8px;
}

.bubble,
.line-card {
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(23, 35, 46, 0.06);
}

.bubble {
  max-width: 84%;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.65;
}

.bubble-bot {
  justify-self: start;
  background: #f8fbfc;
  border: 1px solid rgba(23, 35, 46, 0.08);
}

.bubble-user {
  justify-self: end;
  color: #ffffff;
  background: var(--line);
}

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

.choice-grid span {
  min-height: 40px;
  padding: 9px 10px;
  color: #245141;
  background: var(--line-soft);
  border: 1px solid rgba(6, 199, 85, 0.18);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
}

.line-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(6, 199, 85, 0.18);
}

.line-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 2px 8px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.line-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.45;
}

.line-card ul {
  margin-top: 12px;
}

.plan-section {
  background:
    linear-gradient(135deg, rgba(75, 149, 181, 0.11), transparent 46%),
    #ffffff;
}

.plan-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: start;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 35, 46, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 35, 46, 0.06);
}

.plan-featured {
  border-color: rgba(6, 199, 85, 0.28);
  box-shadow: 0 20px 46px rgba(6, 199, 85, 0.14);
}

.plan-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 2px 8px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.42;
}

.plan-card p,
.plan-card small {
  color: var(--muted);
  font-size: 0.94rem;
}

.plan-card p {
  margin: 0 0 16px;
}

.plan-card small {
  display: block;
  margin: 16px 0 0;
  line-height: 1.65;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  min-height: 38px;
  padding: 8px 10px;
  color: #33414d;
  background: #f8fbfc;
  border: 1px solid rgba(23, 35, 46, 0.08);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.45;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.fit-section {
  background: #ffffff;
}

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

.fit-column {
  min-height: 280px;
  padding: 24px;
  border-radius: 8px;
}

.fit-good {
  background: #f7fcfa;
  border: 1px solid rgba(6, 199, 85, 0.18);
}

.fit-not {
  background: #fff8f7;
  border: 1px solid rgba(237, 127, 111, 0.18);
}

.fit-not span {
  color: #ad554a;
  background: var(--coral-soft);
}

.fit-not li::before {
  background: var(--coral);
}

.steps {
  background: #f8fbfc;
}

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

.step-card {
  position: relative;
  min-height: 204px;
  padding: 24px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--line);
}

.step-card:nth-child(2)::before {
  background: var(--coral);
}

.step-card:nth-child(3)::before {
  background: var(--blue);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 8px;
  font-weight: 900;
}

.step-card small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-left: 8px;
  padding: 0 9px;
  color: var(--line-dark);
  background: rgba(6, 199, 85, 0.08);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  vertical-align: top;
}

.faq {
  background: #ffffff;
}

.faq-list {
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
  box-shadow: none;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 850;
  line-height: 1.5;
}

.faq-item p {
  padding: 0 0 20px;
}

.policy {
  background: #f8fbfc;
}

.policy-item {
  padding: 22px 24px;
  box-shadow: none;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 20px;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(16, 43, 36, 0.86), rgba(16, 43, 36, 0.86)),
    url("assets/photo-online-consult.jpg") center / cover,
    linear-gradient(135deg, rgba(6, 199, 85, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, #102b24 0%, #0f5d3b 100%);
  text-align: center;
}

.final-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
}

.final-cta .eyebrow {
  color: #8de4b2;
}

.final-cta p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: #dce8eb;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-inner,
  .problem-layout,
  .routes-layout,
  .plan-layout,
  .sample-layout,
  .trust-layout,
  .warning-layout,
  .cost-layout,
  .language-layout,
  .line-layout,
  .fit-layout,
  .faq-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 68%, rgba(248, 251, 252, 0.94) 100%);
  }

  .hero-inner {
    gap: 24px;
    padding: 92px 0 70px;
  }

  .hero-panel {
    max-width: 720px;
  }

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

  .photo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .intent-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sticky-heading {
    position: static;
  }

  .section {
    padding: 74px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 1.95rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand span:last-child {
    max-width: 180px;
  }

  .header-cta {
    min-width: 118px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    padding: 72px 0 46px;
  }

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

  .title-last {
    font-size: 0.9em;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
  }

  .hero-panel {
    padding: 18px;
  }

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

  .intent-item {
    min-height: 86px;
    padding: 16px;
  }

  .intent-item + .intent-item {
    border-left: 0;
  }

  .intent-item:nth-child(2n) {
    border-left: 1px solid rgba(23, 35, 46, 0.08);
  }

  .intent-item:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 35, 46, 0.08);
  }

  .section {
    padding: 56px 0;
  }

  .photo-strip-section {
    padding: 48px 0 54px;
  }

  .photo-strip-head {
    display: block;
    margin-bottom: 20px;
  }

  .photo-strip-head h2 {
    font-size: 1.5rem;
  }

  .photo-strip {
    grid-auto-columns: minmax(250px, 82%);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 12px;
    margin-inline: -14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 14px 16px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .photo-strip::-webkit-scrollbar {
    display: none;
  }

  .photo-tile,
  .photo-tile-large {
    grid-row: auto;
    grid-column: auto;
    height: 230px;
    scroll-snap-align: start;
  }

  .side-photo,
  .warning-photo {
    height: 150px;
  }

  .inline-photo {
    height: 210px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 1.62rem;
  }

  .section-heading.centered {
    text-align: left;
  }

  .pain-grid,
  .compare-grid,
  .plan-grid,
  .trust-grid,
  .warning-board,
  .fit-board,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .route-card ul {
    grid-template-columns: 1fr;
  }

  .route-head {
    display: block;
  }

  .cost-row,
  .cost-row-head,
  .sheet-head,
  .sheet-row {
    grid-template-columns: 1fr;
  }

  .cost-row span:first-child {
    padding-bottom: 6px;
  }

  .cost-row span:last-child {
    padding-top: 6px;
  }

  .sheet-head span,
  .sheet-row span {
    min-height: 0;
    padding-bottom: 6px;
  }

  .sheet-head strong,
  .sheet-row p {
    min-height: 0;
    padding-top: 6px;
  }

  .photo-card img {
    min-height: 300px;
  }

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

  .fit-column {
    min-height: 0;
  }

  .step-card {
    min-height: 0;
  }

  .final-cta {
    padding: 68px 20px 84px;
  }

  .site-footer {
    display: grid;
    width: min(100% - 28px, var(--max));
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }

}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.72rem;
  }

  .header-cta {
    min-width: 104px;
    font-size: 0.72rem;
  }

  .brand span:last-child {
    max-width: 150px;
  }
}
