*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === Clean modern palette (white + neutral gray + 朱赤) === */

  /* Backgrounds: pure white + cool light gray for variation */
  --off-white: #FFFFFF;
  --warm-white: #F8F9FB;        /* very light cool gray (almost white) */
  --cream: #EEF1F5;             /* slightly deeper light gray */
  --sakura: #F8F9FB;            /* alias light gray (legacy refs) */
  --sakura-deep: #EEF1F5;       /* alias */
  --light-greige: #EEF1F5;
  --greige: #D1D5DB;

  /* Text: cool slate charcoal (modern, professional) */
  --charcoal: #1F2937;          /* deep slate */
  --ink: #111827;               /* near-black slate */
  --text: #1F2937;
  --text-soft: #6B7280;         /* neutral gray sub-text */
  --olive: #9CA3AF;             /* light gray for muted */

  /* Brand: 朱赤 (Japanese vermilion) — bright & energetic */
  --coral: #EE7344;             /* brighter, more orange (生き生きとした朱) */
  --coral-dark: #D85B30;        /* darker for hover */
  --coral-light: #F8A584;       /* peachy light */

  /* Subtle accent: warm gold (used sparingly) */
  --gold: #C8A061;
  --gold-light: #D8B985;
  --gold-soft: #F0E5C8;

  /* Legacy aliases — all map to coral for the brand color */
  --pine: #D85B45;
  --pine-dark: #B14535;
  --pine-light: #E07F6E;
  --pine-soft: #F8DAD2;
  --bronze: #D85B45;
  --bronze-dark: #B14535;
  --sage: #D85B45;
  --hope: #D85B45;

  --serif: 'Noto Serif JP', 'Georgia', serif;
  --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --en: 'EB Garamond', 'Georgia', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,245,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--greige);
  height: 68px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo span {
  font-family: var(--en);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--olive);
  display: block;
  letter-spacing: 0.12em;
  margin-top: -2px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-size: 0.8rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 400;
  opacity: 0.75;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 1; }
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: #fff;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}
.btn-line:hover { background: #05b34c; transform: translateY(-1px); }
.btn-consult {
  display: inline-flex;
  align-items: center;
  background: var(--coral);
  color: #fff;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-consult:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-consult:hover { background: var(--bronze-dark); transform: translateY(-1px); }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--charcoal);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--greige);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.header-tel:hover { border-color: var(--charcoal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--greige);
  z-index: 99;
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-greige);
}
.mobile-nav .mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.mob-ctas a {
  text-align: center;
  border: none;
  border-radius: 4px;
  padding: 13px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

/* HERO - full-bleed cinematic */
.hero {
  min-height: calc(100vh - 68px);
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 35%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(17,24,39,0.92) 0%, rgba(17,24,39,0.78) 38%, rgba(17,24,39,0.3) 72%, rgba(17,24,39,0.05) 100%),
    linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(17,24,39,0.45) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: 760px;
  padding: 100px 0 140px;
  color: #fff;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
.hero h1 .accent,
.hero-h1-accent {
  color: var(--coral-light);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after,
.hero-h1-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--coral-light);
  opacity: 0.9;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.95;
  color: #ffffff;
  margin-bottom: 44px;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.hero-sub strong {
  color: var(--coral-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-meta {
  margin-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-meta-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral-light);
  border-radius: 50%;
}
.credential-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero .cred-badge {
  font-size: 0.72rem;
  color: #F5EBD8;
  border: 1px solid rgba(245,235,216,0.45);
  background: rgba(20,18,15,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.cred-badge {
  font-size: 0.72rem;
  color: var(--pine);
  border: 1px solid var(--pine);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--coral);
  color: #fff;
  padding: 22px 44px;
  border-radius: 6px;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(224,122,95,0.45);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(224,122,95,0.55);
}
.btn-primary.ink { background: var(--charcoal); box-shadow: 0 6px 22px rgba(38,35,31,0.35); }
.btn-primary.ink:hover { background: #15130f; box-shadow: 0 10px 30px rgba(38,35,31,0.45); }
.hero .btn-line {
  font-size: 0.95rem;
  padding: 17px 32px;
  box-shadow: 0 8px 28px rgba(6,199,85,0.35);
}
.hero .btn-line:hover { box-shadow: 0 12px 36px rgba(6,199,85,0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 400;
  border: 1px solid var(--greige);
  background: transparent;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--charcoal); transform: translateY(-2px); }
.hero .btn-secondary {
  color: #06C755;
  background: #fff;
  border: 1px solid #fff;
  padding: 17px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.hero .btn-secondary:hover {
  background: #06C755;
  color: #fff;
  border-color: #06C755;
  box-shadow: 0 12px 36px rgba(6,199,85,0.4);
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F5EBD8;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 14px 4px;
  font-weight: 500;
  border-bottom: 1px solid rgba(245,235,216,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.btn-phone:hover { border-color: var(--gold); color: var(--gold); }
.btn-phone strong {
  font-family: var(--en);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.hero-note {
  margin-top: 26px;
  font-size: 0.75rem;
  color: #D8CBB0;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,235,216,0.8);
  font-family: var(--en);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  font-style: italic;
}
.scroll-indicator {
  text-decoration: none;
}
.scroll-indicator:hover { color: var(--gold); }
.scroll-indicator .scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(245,235,216,0.1) 0%, rgba(245,235,216,0.8) 100%);
  position: relative;
  overflow: hidden;
  display: block;
}
.scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* BEFORE / AFTER */
.ba-section {
  background: var(--off-white);
  padding: 110px 0 100px;
}
.ba-section .section-title { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.ba-section .ba-accent { color: var(--coral); }
.ba-section .section-lead { max-width: 720px; margin-bottom: 60px; }
.ba-pair {
  margin-top: 56px;
  padding: 36px;
  background: var(--warm-white);
  border-radius: 8px;
  border: 1px solid rgba(31,41,55,0.06);
}
.ba-pair + .ba-pair { margin-top: 32px; }
.ba-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ba-tag {
  background: var(--charcoal);
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ba-meta-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.ba-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  position: relative;
}
.ba-process::before,
.ba-process::after {
  content: '→';
  align-self: center;
  width: 38px;
  height: 38px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(199,90,74,0.4);
  grid-row: 1;
}
.ba-process::before { grid-column: 2; }
.ba-process::after { grid-column: 4; }
.ba-step {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31,41,55,0.06);
  display: flex;
  flex-direction: column;
}
.ba-step:nth-of-type(1) { grid-column: 1; }
.ba-step:nth-of-type(2) { grid-column: 3; }
.ba-step:nth-of-type(3) { grid-column: 5; }
.ba-step img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.ba-step figcaption {
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.6;
  background: #fff;
  flex: 1;
}
.ba-step figcaption strong {
  display: block;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.ba-label.during {
  background: rgba(199,90,74,0.65);
}
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-style: italic;
  padding: 5px 14px;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
}
.ba-label.before { background: rgba(31,41,55,0.85); }
.ba-label.after { background: var(--coral); }
.ba-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed rgba(31,41,55,0.15);
}
.ba-num {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-num strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ba-num span {
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* TRUST STRIP - light */
.trust-strip {
  background: var(--cream);
  padding: 44px 0;
  position: relative;
  border-top: 1px solid rgba(31,41,55,0.08);
  border-bottom: 1px solid rgba(31,41,55,0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.trust-item {
  text-align: center;
  padding: 4px 20px;
  border-right: 1px solid rgba(47,55,68,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pine);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.trust-num small {
  font-size: 0.7rem;
  color: var(--olive);
  letter-spacing: 0.12em;
  margin-left: 4px;
  font-weight: 400;
}
.trust-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  line-height: 1.55;
}
.trust-label strong {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.trust-label span {
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.trust-num svg {
  color: var(--pine);
  display: inline-block;
  vertical-align: middle;
}

/* DIAGNOSE LEAD MAGNET */
/* === PRICE GUIDE === */
.price-guide {
  background: var(--off-white);
  padding: 100px 0;
}
.price-guide .section-title .accent { color: var(--coral); }
.price-table {
  margin: 40px auto 0;
  max-width: 760px;
  border: 1px solid var(--light-greige);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(31,41,55,0.06);
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.9fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--light-greige);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even):not(.price-head) { background: var(--warm-white); }
.price-head {
  background: var(--charcoal) !important;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.price-head .price-amount { color: #fff; }
.price-type {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.98rem;
}
.price-head .price-type { color: #fff; }
.price-amount {
  color: var(--coral);
  font-size: 0.95rem;
}
.price-amount strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.price-days {
  color: var(--text-soft);
  font-size: 0.88rem;
  text-align: right;
}
.price-head .price-days { color: rgba(255,255,255,0.85); }
.price-note {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.85;
}
.price-note strong { color: var(--coral); }
.price-cta {
  text-align: center;
  margin-top: 48px;
}
.price-cta-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 24px;
}
.btn-phone-dark {
  border: 1px solid var(--charcoal) !important;
  color: var(--charcoal) !important;
  background: transparent !important;
}
.btn-phone-dark:hover {
  background: var(--charcoal) !important;
  color: #fff !important;
}
@media (max-width: 640px) {
  .price-guide { padding: 64px 0; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 4px 12px; padding: 14px 16px; }
  .price-days { display: none; }
  .price-head .price-days { display: none; }
  .price-amount strong { font-size: 1.15rem; }
  .price-type { font-size: 0.9rem; }
  .price-cta-text { font-size: 0.95rem; }
}

.diagnose {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--warm-white) 100%);
  padding: 110px 0;
  position: relative;
}
.diagnose-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.diagnose-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 18px 0 24px;
  letter-spacing: 0.02em;
}
.diagnose-title .accent { color: var(--coral); }
.diagnose-lead {
  color: #4d4944;
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 36px;
}
.diagnose-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.diagnose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.d-card {
  background: #fff;
  padding: 28px 24px;
  border: 1px solid rgba(63,122,108,0.18);
  border-radius: 6px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.d-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31,42,51,0.1);
  border-color: var(--pine);
}
.d-card-num {
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 14px;
}
.d-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.d-card-by {
  font-size: 0.72rem;
  color: var(--pine);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
}
.d-card-desc {
  font-size: 0.78rem;
  color: #6a655e;
  line-height: 1.7;
}

/* CASHBACK BAND */
.cashback-band {
  padding: 64px 0;
  background: var(--charcoal);
  color: #F5EBD8;
  position: relative;
  overflow: hidden;
}
.cashback-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,122,95,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cashback-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cashback-tag {
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--coral-light);
  font-style: italic;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 8px 0;
  border-left: 2px solid var(--coral);
  padding-left: 14px;
}
.cashback-headline {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.cashback-headline strong { font-weight: 600; }
.cashback-zero {
  color: var(--coral-light);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 4px;
}
.cashback-desc {
  color: #C8BFAE;
  font-size: 0.85rem;
  line-height: 1.85;
  margin: 0;
}
.cashback-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  padding: 18px 30px;
  border: 2px solid var(--coral);
  border-radius: 6px;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(224,122,95,0.35);
}
.cashback-btn:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224,122,95,0.45);
}

/* SERVICE BADGE (price etc.) */
.service-badge {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: #fff;
  background: var(--coral);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  font-weight: 600;
}

/* IMAGE PLACEHOLDERS */
.img-placeholder {
  background: var(--light-greige);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(139,110,87,0.06) 6px,
    rgba(139,110,87,0.06) 7px
  );
}
.img-placeholder .label {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--olive);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding: 16px;
  white-space: pre-line;
}

/* SECTIONS */
section {
  padding: 96px 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--pine);
  font-style: italic;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--pine);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 0.9rem;
  line-height: 1.95;
  color: #555;
  max-width: 600px;
  margin-bottom: 56px;
}

/* CONCERNS */
.concerns-bg {
  background: var(--warm-white);
}
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 52px;
}
.concern-card {
  background: var(--off-white);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s;
  height: 100%;
}
.concern-card:hover { transform: translateY(-3px); }
.concern-num {
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.concern-text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 400;
}

/* REASONS */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--greige);
  border: 1px solid var(--greige);
  margin-top: 56px;
}
.reason-item {
  background: var(--off-white);
  padding: 48px 36px;
  height: 100%;
}
.reason-num {
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 500;
  color: var(--pine-soft);
  line-height: 1;
  margin-bottom: 20px;
}
.reason-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.reason-body {
  font-size: 0.82rem;
  line-height: 1.9;
  color: #666;
}

/* CREDENTIALS - light, warm */
.credentials-bg {
  background: var(--warm-white);
  position: relative;
}
.credentials-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(216,91,69,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(31,41,55,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.credentials-bg > .container { position: relative; z-index: 1; }
.credentials-bg .section-label { color: var(--pine); }
.credentials-bg .section-label::before { background: var(--pine); }
.credentials-bg .section-title { color: var(--charcoal); }
.credentials-bg .section-lead { color: var(--text-soft); }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.cred-card {
  background: #fff;
  border: 1px solid rgba(63,122,108,0.18);
  border-radius: 6px;
  padding: 40px 36px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  height: 100%;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(31,42,51,0.1);
  border-color: var(--pine);
}
.cred-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--pine);
  opacity: 0.95;
}
.cred-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-title-badge {
  font-size: 0.7rem;
  color: #fff;
  background: var(--coral);
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.cred-desc {
  font-size: 0.83rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-top: 12px;
}

/* SERVICES */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 52px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--greige);
}
.services-list > :nth-child(even) .service-img { order: 1; }
.services-list > :nth-child(even) .service-info { order: 0; }
.service-img {
  height: 280px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-info {
  background: var(--off-white);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-num {
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--pine);
  font-weight: 500;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.55;
  letter-spacing: 0.03em;
}
.service-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #666;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--coral);
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { color: var(--coral-dark); }
.service-link:hover { gap: 10px; }

/* CASES */
.cases-bg { background: var(--warm-white); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--greige);
  margin-top: 52px;
}
.case-card {
  background: var(--off-white);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 20px rgba(31,41,55,0.06);
  display: flex;
  flex-direction: column;
}
.case-img { height: 220px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: #fff;
  background: var(--coral);
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.case-title {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.case-quote {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--coral);
  padding: 6px 0 6px 14px;
  margin-bottom: 18px;
}
.case-story {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.case-story > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
}
.case-story dt {
  font-family: var(--en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--coral);
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  padding-top: 2px;
}
.case-story dt::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 6px;
}
.case-story dd {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text);
}
.case-story dd strong {
  color: var(--coral);
  font-weight: 700;
}
.case-desc {
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--text-soft);
}

/* MESSAGE */
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  margin-top: 52px;
  background: var(--greige);
}
.message-img { height: 520px; overflow: hidden; }
.message-img img { width: 100%; height: 100%; object-fit: cover; }
.message-img .img-placeholder { width: 100%; height: 100%; }
.message-content {
  background: var(--off-white);
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.message-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.message-body {
  font-size: 0.875rem;
  line-height: 2.05;
  color: #555;
  margin-bottom: 36px;
}
.message-sig {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--greige);
  padding-top: 20px;
}

/* FLOW */
.flow-bg { background: var(--warm-white); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--greige);
  z-index: 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pine);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(63,122,108,0.25);
}
.flow-step-title {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.55;
  letter-spacing: 0.03em;
  white-space: pre-line;
}
.flow-cta {
  text-align: center;
  margin-top: 48px;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--greige);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.faq-toggle {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--olive);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-toggle::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-a-text {
  font-size: 0.85rem;
  line-height: 1.95;
  color: #666;
  padding-right: 40px;
}

/* COLUMNS */
.columns-bg { background: var(--warm-white); }
.columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--greige);
  margin-top: 52px;
}
.col-card {
  background: var(--off-white);
  padding: 28px 28px 32px;
  transition: transform 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.col-card:hover { transform: translateY(-4px); }
.col-tag {
  font-size: 0.68rem;
  color: var(--olive);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.col-title {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.col-arrow {
  font-family: var(--en);
  font-size: 0.78rem;
  color: var(--coral);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* FINAL CTA */
.final-cta-bg {
  background: var(--charcoal);
  padding: 120px 0;
}
.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.final-cta-label {
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--greige);
  font-style: italic;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.final-cta-label::before, .final-cta-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--olive);
}
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.final-cta-body {
  font-size: 0.875rem;
  line-height: 1.95;
  color: #999;
  margin-bottom: 52px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.cta-big {
  padding: 18px 36px;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-big:hover { transform: translateY(-2px); }
.cta-big.primary { background: var(--coral); color: #fff; box-shadow: 0 8px 24px rgba(224,122,95,0.4); }
.cta-big.primary:hover { background: var(--coral-dark); box-shadow: 0 12px 32px rgba(224,122,95,0.5); }
.cta-big.primary:hover { background: var(--bronze-dark); }
.cta-big.line-btn { background: #06C755; color: #fff; }
.cta-big.line-btn:hover { background: #05b34c; }
.cta-big.outline { background: transparent; color: var(--off-white); border: 1px solid rgba(255,255,255,0.25); }
.cta-big.outline:hover { border-color: rgba(255,255,255,0.6); }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-item { text-align: center; }
.contact-item-label {
  font-size: 0.65rem;
  color: #777;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.contact-item-val {
  font-family: var(--en);
  font-size: 1.3rem;
  color: var(--off-white);
  letter-spacing: 0.05em;
}
.contact-item-val.small { font-size: 0.9rem; }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo-f {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-brand .logo-en {
  font-family: var(--en);
  font-size: 0.65rem;
  color: var(--olive);
  letter-spacing: 0.14em;
  font-style: italic;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.85;
}
.footer-company {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: #888;
  line-height: 1.85;
}
.footer-company-name {
  color: var(--off-white);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer-col h4 {
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.78rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright {
  font-family: var(--en);
  font-size: 0.68rem;
  color: #555;
  letter-spacing: 0.08em;
}

/* MOBILE CTA BAR */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
}
.mob-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.mob-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 4px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.mob-bar-btn.consult { background: var(--coral); color: #fff; }
.mob-bar-btn.line { background: #06C755; color: #fff; }
.mob-bar-btn.tel { background: rgba(255,255,255,0.08); color: var(--off-white); }

/* === JAY ABRAHAM CONVERSION ELEMENTS === */

/* URGENCY BANNER */
.urgency-banner {
  background: linear-gradient(90deg, var(--coral-dark) 0%, var(--coral) 100%);
  color: #fff;
  padding: 12px 0;
  position: relative;
  z-index: 80;
  margin-top: 68px;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
}
.urgency-tag {
  background: rgba(0,0,0,0.18);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  white-space: nowrap;
}
.urgency-msg {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.urgency-msg strong { color: #fff7e8; font-weight: 700; }

/* HERO BADGE & CHECKS */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(199,90,74,0.4);
}
.hero-badge strong {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
}
.hero-badge.soft {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 0.78rem;
  font-weight: 500;
}
.hero-badge.soft strong {
  color: var(--coral-light);
  font-size: 0.88rem;
  font-family: var(--sans);
  font-weight: 700;
}
.hero-checks {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-checks li {
  font-size: 0.88rem;
  color: #fff;
  padding-left: 26px;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  line-height: 1.7;
}
.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral-light);
  font-weight: 700;
  font-size: 1rem;
}
.hero-checks strong { color: var(--coral-light); font-weight: 700; }

/* CASHBACK TIERS */
.cashback-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.cashback-tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cashback-tier.highlight {
  background: rgba(199,90,74,0.18);
  border-color: var(--coral);
}
.cashback-tier-when {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  flex: 1;
}
.cashback-tier-amount {
  font-size: 0.78rem;
  color: var(--coral-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cashback-tier.highlight .cashback-tier-amount {
  color: #fff;
}
.cashback-tier-amount strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

/* CASHBACK REASON */
.cashback-reason {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--coral);
  border-radius: 4px;
}
.cashback-reason-label {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--coral-light);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.cashback-reason p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
}
.cashback-reason strong {
  color: #fff;
  font-weight: 600;
}

/* FOUNDER LETTER */
.founder-section {
  background: var(--warm-white);
  padding: 110px 0;
}
.founder-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-img {
  position: sticky;
  top: 100px;
}
.founder-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.founder-img-caption {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-align: center;
}
.founder-img-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-top: 4px;
}
.founder-letter {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}
.founder-letter p {
  margin-bottom: 20px;
}
.founder-greeting {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 28px;
}
.founder-letter strong {
  color: var(--charcoal);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(224,160,80,0.25) 60%);
  padding: 0 2px;
}
.founder-close {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(0,0,0,0.15);
}
.founder-sig {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--coral);
  display: inline-block;
}
.founder-sig-name {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.founder-sig-jp {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 4px;
  letter-spacing: 0.08em;
}
.founder-sig-roles {
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--cream);
  padding: 110px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  border-top: 3px solid var(--coral);
}
.testimonial-stars {
  color: var(--coral);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--charcoal);
  flex: 1;
  font-family: var(--serif);
  font-weight: 500;
}
.testimonial-quote strong {
  background: linear-gradient(transparent 60%, rgba(224,160,80,0.3) 60%);
  font-weight: 700;
  padding: 0 2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-info {
  flex: 1;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-meta {
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* COMPARISON TABLE */
.comparison-section {
  background: var(--off-white);
  padding: 110px 0;
}
.comparison-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
.comparison-table thead th {
  padding: 18px 14px;
  text-align: center;
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0,0,0,0.1);
}
.comparison-table thead th.us-col {
  background: var(--coral);
  color: #fff;
  font-size: 0.95rem;
}
.comparison-table tbody th {
  padding: 16px 18px;
  background: var(--warm-white);
  color: var(--charcoal);
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(0,0,0,0.08);
  width: 22%;
}
.comparison-table tbody td {
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.comparison-table tbody td.us-col {
  background: rgba(224,160,80,0.08);
  color: var(--coral);
  font-weight: 700;
  font-size: 1rem;
}
.comparison-table tbody td.us-col strong {
  color: var(--coral-dark);
  font-size: 1rem;
}

/* === LINE PRIMARY CTA === */
.btn-primary.btn-line-primary {
  background: #06C755;
  color: #fff;
  box-shadow: 0 10px 32px rgba(6,199,85,0.45);
  padding: 20px 36px;
  font-size: 1rem;
  gap: 14px;
  border-radius: 8px;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
}
.btn-primary.btn-line-primary:hover {
  background: #05A847;
  box-shadow: 0 16px 40px rgba(6,199,85,0.55);
}
.btn-primary.btn-line-primary strong {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 2px;
  font-weight: 700;
}
.btn-primary.btn-line-primary svg {
  flex-shrink: 0;
}

.hero .btn-secondary.btn-phone-secondary {
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  color: rgba(255,255,255,0.95) !important;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}
.hero .btn-secondary.btn-phone-secondary:hover {
  background: rgba(0,0,0,0.4) !important;
  border-color: var(--coral-light) !important;
  color: var(--coral-light) !important;
}

.cta-big.cta-big-line {
  background: #06C755 !important;
  color: #fff !important;
  font-size: 1.05rem;
  padding: 20px 40px;
  box-shadow: 0 8px 28px rgba(6,199,85,0.4);
  white-space: normal;
}
.cta-big.cta-big-line:hover {
  background: #05A847 !important;
  box-shadow: 0 12px 36px rgba(6,199,85,0.5);
}
.cta-big.cta-big-line strong {
  background: rgba(255,255,255,0.18);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 4px;
}

/* === Mobile sticky bar - LINE primary === */
.mob-bar-inner.mob-bar-line-primary {
  grid-template-columns: 2.6fr 1fr;
}
.mob-bar-btn.mob-bar-line-main {
  font-size: 0.84rem;
  font-weight: 700;
  padding: 11px 8px;
  letter-spacing: 0.02em;
  gap: 6px;
}
.mob-bar-btn.mob-bar-line-main span {
  font-size: 0.82rem;
}

/* === HERO CTA NOTE === */
.hero-cta-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-cta-note strong { color: var(--coral-light); font-weight: 700; }

/* === AUTHORITY BAR === */
.authority-bar {
  background: var(--charcoal);
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,154,79,0.2);
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.authority-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  justify-content: center;
}
.authority-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.authority-item strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* === BONUS STACK === */
.bonus-stack {
  margin: 24px 0 28px;
  background: rgba(199,90,74,0.06);
  border: 1px dashed var(--coral);
  border-radius: 6px;
  padding: 20px 22px;
}
.bonus-stack-label {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.bonus-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 0.84rem;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(199,90,74,0.25);
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-num {
  font-family: var(--en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--coral);
  font-weight: 600;
  font-style: italic;
}
.bonus-name {
  color: var(--charcoal);
  font-weight: 500;
}
.bonus-value {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 600;
  white-space: nowrap;
}

/* === PRICE GUIDE === */
.price-guide-section {
  background: var(--warm-white);
  padding: 110px 0;
}
.price-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 640px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}
.price-table thead th {
  background: var(--charcoal);
  color: #fff;
  padding: 16px 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.price-table tbody td {
  padding: 18px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text);
}
.price-table tbody td:first-child {
  text-align: left;
  background: var(--warm-white);
  font-weight: 500;
}
.price-table tbody td.zero {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}
.price-table tbody td.zero-cap {
  color: var(--coral);
  font-weight: 600;
}
.price-table-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
  letter-spacing: 0.02em;
}

/* === LOSS AVERSION === */
.loss-section {
  background: linear-gradient(180deg, var(--ink) 0%, var(--charcoal) 100%);
  padding: 110px 0;
  color: #fff;
}
.loss-section .section-label { color: var(--coral-light); }
.loss-section .section-label::before { background: var(--coral-light); }
.loss-title {
  color: #fff;
}
.loss-section .section-lead { color: rgba(255,255,255,0.78); }
.loss-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.loss-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 24px 22px;
  height: 100%;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.loss-item:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
}
.loss-when {
  font-family: var(--en);
  font-size: 0.82rem;
  color: var(--coral-light);
  letter-spacing: 0.18em;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 8px;
}
.loss-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--coral);
}
.loss-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
}
.loss-text strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.loss-highlight {
  color: var(--coral-light);
  font-weight: 700;
  background: rgba(199,90,74,0.18);
  padding: 1px 5px;
  border-radius: 2px;
}
.loss-cta-wrap {
  margin-top: 56px;
  text-align: center;
}
.loss-cta-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-height: 1.85;
}

/* === P.S. BLOCK === */
.ps-block {
  margin-top: 56px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  text-align: left;
  position: relative;
}
.ps-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coral-light);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.ps-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  line-height: 2;
  letter-spacing: 0.02em;
}
.ps-body strong {
  color: var(--coral-light);
  font-weight: 700;
}
.ps-sig {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.ps-sig strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 60px; }
  .hero-inner { padding: 0 24px; min-height: calc(100vh - 60px); }
  .hero-text { padding: 60px 0 120px; max-width: 100%; }
  .hero-bg { object-position: 70% 30%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.55) 40%, rgba(20,18,15,0.75) 100%);
  }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { justify-content: center; width: 100%; }
  .hero-meta { font-size: 0.7rem; flex-wrap: wrap; }
  .hero-text { padding: 70px 0 120px; }
  .scroll-indicator { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(2n) { border-right: none; }
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .reasons-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .columns-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .services-list > :nth-child(even) .service-img { order: 0; }
  .services-list > :nth-child(even) .service-info { order: 1; }
  .service-img { height: 220px; }
  .service-info { padding: 32px 28px; }
  .message-grid { grid-template-columns: 1fr; }
  .message-img { height: 260px; }
  .message-content { padding: 40px 28px; }
  .flow-steps { grid-template-columns: 1fr; gap: 24px; }
  .flow-steps::before { display: none; }
  .flow-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; padding: 0; }
  .flow-num { margin-bottom: 0; flex-shrink: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .diagnose { padding: 72px 0; }
  .diagnose-grid { grid-template-columns: 1fr; gap: 40px; }
  .ba-section { padding: 72px 0; }
  .urgency-inner { gap: 8px; }
  .urgency-tag { font-size: 0.66rem; padding: 3px 8px; }
  .urgency-msg { font-size: 0.74rem; line-height: 1.55; }
  .hero-badge { font-size: 0.74rem; padding: 7px 14px; margin-bottom: 18px; }
  .hero-badge strong { font-size: 0.88rem; }
  .hero-checks li { font-size: 0.8rem; padding-left: 22px; }
  .cashback-reason { padding: 18px 16px; margin-top: 20px; }
  .cashback-reason p { font-size: 0.8rem; line-height: 1.8; }
  .cashback-tiers { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
  .cashback-tier { padding: 12px 14px; }
  .cashback-tier-when { font-size: 0.74rem; }
  .cashback-tier-amount { font-size: 0.74rem; }
  .cashback-tier-amount strong { font-size: 0.95rem; }
  .founder-section { padding: 72px 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-img { position: static; }
  .founder-img img { height: 420px; object-position: center 15%; }
  .founder-letter { font-size: 0.88rem; line-height: 1.95; }
  .founder-headline { font-size: 1.4rem; margin-bottom: 36px; }
  .testimonials-section { padding: 72px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .testimonial-card { padding: 24px 22px; }
  .comparison-section { padding: 72px 0; }
  .comparison-table { font-size: 0.78rem; min-width: 540px; }
  .comparison-table tbody th { font-size: 0.76rem; padding: 12px 10px; width: 24%; }
  .comparison-table tbody td { font-size: 0.85rem; padding: 12px 8px; }

  .authority-bar { padding: 20px 0; }
  .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
  .authority-item { font-size: 0.68rem; gap: 8px; justify-content: flex-start; }
  .authority-item svg { width: 20px; height: 20px; }
  .authority-item strong { font-size: 0.74rem; }

  .bonus-stack { padding: 16px 14px; margin: 18px 0 22px; }
  .bonus-stack-label { font-size: 0.85rem; }
  .bonus-list li { grid-template-columns: 60px 1fr; gap: 8px; font-size: 0.78rem; padding: 8px 0; }
  .bonus-num { font-size: 0.65rem; }

  .price-guide-section { padding: 72px 0; }
  .price-table { font-size: 0.78rem; min-width: 520px; }
  .price-table thead th { padding: 12px 8px; font-size: 0.74rem; }
  .price-table tbody td { padding: 12px 8px; }
  .price-table tbody td.zero { font-size: 1.1rem; }

  .loss-section { padding: 72px 0; }
  .loss-timeline { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .loss-item { padding: 18px 16px; }
  .loss-cta-wrap { margin-top: 36px; }
  .loss-cta-text { font-size: 0.92rem; }

  .ps-block { padding: 24px 18px; margin-top: 36px; }
  .ps-label { font-size: 1.3rem; }
  .ps-body { font-size: 0.85rem; line-height: 1.95; }
  .ps-sig { font-size: 0.85rem; }
  .ba-pair { padding: 24px 18px; }
  .ba-process {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ba-process::before,
  .ba-process::after {
    grid-column: 1 !important;
    transform: rotate(90deg);
    width: 36px;
    height: 36px;
    justify-self: center;
  }
  .ba-process::before { grid-row: 2; }
  .ba-process::after { grid-row: 4; }
  .ba-step:nth-of-type(1) { grid-column: 1 !important; grid-row: 1; }
  .ba-step:nth-of-type(2) { grid-column: 1 !important; grid-row: 3; }
  .ba-step:nth-of-type(3) { grid-column: 1 !important; grid-row: 5; }
  .ba-step img { height: 220px; }
  .ba-numbers { grid-template-columns: 1fr; gap: 14px; }
  .ba-num strong { font-size: 1.25rem; }
  .cashback-inner { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .cashback-tag { writing-mode: horizontal-tb; border-left: none; border-top: 1px solid var(--gold); padding: 10px 0 0; padding-left: 0; }
  .cashback-headline { font-size: 1.1rem; }
  .cashback-zero { font-size: 1.3rem; }
  .cashback-btn { justify-content: center; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 68px; }
  section { padding: 64px 0; }
  .container { padding: 0 24px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.95rem; line-height: 1.5; }
  .hero-sub { font-size: 0.95rem; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-big { justify-content: center; }
  .concerns-grid { grid-template-columns: 1fr; }
  .diagnose-cards { grid-template-columns: 1fr; }
  .diagnose-title { font-size: 1.35rem; }
}

/* === ARTICLE (Column) === */
.article-page { padding: 130px 0 90px; background: var(--warm-white); }
.article-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-breadcrumb { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 24px; letter-spacing: 0.02em; }
.article-breadcrumb a { color: var(--text-soft); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--coral); }
.article-tag { display: inline-block; background: var(--coral); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 3px; letter-spacing: 0.06em; margin-bottom: 18px; }
.article-title { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; color: var(--charcoal); line-height: 1.5; letter-spacing: 0.02em; margin-bottom: 16px; }
.article-meta { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--light-greige); letter-spacing: 0.02em; }
.article-lead { font-size: 1.02rem; line-height: 2; color: var(--text); margin-bottom: 40px; font-weight: 500; }
.article-body h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin: 44px 0 16px; padding-left: 14px; border-left: 4px solid var(--coral); line-height: 1.5; letter-spacing: 0.02em; }
.article-body h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--charcoal); margin: 28px 0 12px; }
.article-body p { font-size: 0.95rem; line-height: 2; color: var(--text); margin-bottom: 18px; }
.article-body strong { color: var(--coral-dark); font-weight: 700; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body li { font-size: 0.95rem; line-height: 1.95; color: var(--text); margin-bottom: 8px; }
.article-body .point-box { background: #fff; border: 1px solid var(--light-greige); border-radius: 8px; padding: 22px 24px; margin: 24px 0; }
.article-body .point-box .point-label { font-family: var(--en); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--coral); font-style: italic; font-weight: 600; margin-bottom: 8px; }
.article-body .point-box p:last-child { margin-bottom: 0; }
.article-body .warn-box { background: rgba(238,115,68,0.07); border-left: 4px solid var(--coral); border-radius: 0 6px 6px 0; padding: 18px 20px; margin: 24px 0; }
.article-body .warn-box p { margin-bottom: 0; font-size: 0.9rem; }
.article-cta { margin-top: 56px; padding: 36px 28px; background: var(--charcoal); border-radius: 12px; text-align: center; }
.article-cta-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1.6; margin-bottom: 10px; }
.article-cta-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 24px; }
.article-cta .btn-line-primary { display: inline-flex; }
.article-related { margin-top: 56px; }
.article-related-h { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 18px; }
.article-related a { display: block; padding: 14px 18px; background: #fff; border: 1px solid var(--light-greige); border-radius: 8px; margin-bottom: 10px; text-decoration: none; color: var(--charcoal); font-size: 0.9rem; font-weight: 500; transition: border-color 0.2s; }
.article-related a:hover { border-color: var(--coral); }
.article-related a span { color: var(--coral); font-family: var(--en); font-size: 0.75rem; margin-right: 8px; }

/* === CONTACT FORM === */
.contact-form {
  max-width: 560px;
  margin: 36px auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.form-row { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-label .req {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-label .opt {
  display: inline-block;
  background: #E5E7EB;
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-input {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #D7DBE0;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--charcoal);
  background: #FAFAF8;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
}
.form-input-zip { max-width: 240px; }
.form-hint {
  font-size: 0.74rem;
  color: var(--text-soft);
  margin-top: 5px;
}
select.form-input { appearance: auto; cursor: pointer; }
textarea.form-input { resize: vertical; }
.form-submit {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--coral);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  padding: 18px;
  border-radius: 10px;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(238,115,68,0.45);
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
.form-note {
  font-size: 0.74rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}
.contact-alt { margin-top: 36px; text-align: center; }
.contact-alt-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.contact-alt-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === THANKS PAGE === */
.thanks-page {
  padding: 130px 0 80px;
  background: var(--warm-white);
  min-height: 70vh;
}
.thanks-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.thanks-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(238,115,68,0.35);
}
.thanks-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 16px;
}
.thanks-lead {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 36px;
}
.thanks-lead strong { color: var(--coral-dark); }
.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
  text-align: left;
}
.thanks-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--light-greige);
  border-radius: 10px;
  padding: 16px 18px;
}
.thanks-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--en);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-step-body strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 700;
}
.thanks-step-body span {
  font-size: 0.8rem;
  color: var(--text-soft);
}
.thanks-bonus {
  background: #fff;
  border: 2px dashed var(--coral);
  border-radius: 14px;
  padding: 32px 24px;
  margin-bottom: 40px;
}
.thanks-bonus-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.thanks-bonus-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.5;
}
.thanks-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
  display: inline-block;
}
.thanks-bonus-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  font-weight: 500;
}
.thanks-bonus .btn-line-primary { display: inline-flex; }
.thanks-bonus-note {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 12px;
}
.thanks-contact { margin-bottom: 36px; }
.thanks-contact p {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.thanks-tel {
  display: block;
  font-family: var(--en);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.thanks-hours {
  font-size: 0.78rem;
  color: var(--text-soft);
}
.thanks-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.thanks-back:hover { color: var(--coral); }

/* === STICKY BAR 3分割 === */
.mob-bar-inner.mob-bar-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 8px;
}
.mob-bar-btn.form-btn {
  background: var(--coral);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .contact-form { padding: 24px 18px; }
  .contact-alt-buttons { flex-direction: column; align-items: stretch; }
  .thanks-page { padding: 110px 0 60px; }
}
