:root {
  --cream: #FBF8F4;
  --cream-2: #F5EFE6;
  --rose: #C2766B;
  --rose-deep: #A85B51;
  --rose-soft: #EFD3CB;
  --sage: #6B8E83;
  --sage-deep: #4F6E64;
  --sage-soft: #DDE6E2;
  --ink: #2A2A2E;
  --ink-2: #4B4A4F;
  --sub: #6B6770;
  --line: #E8DFD3;
  --gold: #C9A961;
  --shadow-sm: 0 1px 2px rgba(42, 42, 46, 0.05);
  --shadow-md: 0 4px 16px rgba(42, 42, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(42, 42, 46, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max: 1180px;
  --pad: clamp(16px, 4vw, 32px);
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .75; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}

p {
  text-wrap: pretty;
  word-break: auto-phrase;
}

.en {
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.78em;
  color: var(--rose);
  text-transform: uppercase;
}

/* ------------ Header ------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
}
.brand-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 2px 6px rgba(168, 91, 81, 0.3);
}
.brand-mark::after {
  content: ""; position: absolute;
  inset: 8px;
  background: var(--cream);
  border-radius: 50%;
}
.brand-mark::before {
  content: ""; position: absolute;
  inset: 12px;
  background: var(--rose);
  border-radius: 50%;
  z-index: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text small { font-weight: 400; font-size: 11px; color: var(--sub); letter-spacing: 0.06em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav a.active { color: var(--rose-deep); }
.nav a.cta {
  background: var(--rose);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.nav a.cta:hover { background: var(--rose-deep); opacity: 1; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px var(--pad);
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 20px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: .25s;
  }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { font-size: 16px; }
  .nav a.cta { text-align: center; }
}

/* ------------ Hero ------------ */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 100px) var(--pad) clamp(60px, 10vw, 120px);
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(239, 211, 203, 0.7) 0%, transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(221, 230, 226, 0.7) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(107, 142, 131, 0.5); }
  100% { box-shadow: 0 0 0 10px rgba(107, 142, 131, 0); }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}
.hero h1 .accent { color: var(--rose-deep); }
.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 4px 14px rgba(168, 91, 81, 0.25);
}
.btn-primary:hover { background: var(--rose-deep); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose-deep); }
.btn-line {
  background: #06C755;
  color: white;
}
.btn-line:hover { background: #05A648; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 13px; color: var(--sub);
}
.hero-trust strong { color: var(--ink); font-weight: 700; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/3.4;
}
.hero-visual .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-visual .blob-1 {
  width: 70%; height: 70%; top: 0; right: 0;
  background: linear-gradient(135deg, var(--rose-soft), #f8e3da);
}
.hero-visual .blob-2 {
  width: 55%; height: 55%; bottom: 6%; left: 0;
  background: linear-gradient(135deg, var(--sage-soft), #e8f0eb);
}
.hero-visual .card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.hero-visual .card .icn {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-visual .card-1 { top: 12%; left: 4%; }
.hero-visual .card-1 .icn { background: var(--rose-soft); color: var(--rose-deep); }
.hero-visual .card-2 { bottom: 18%; right: 4%; }
.hero-visual .card-2 .icn { background: var(--sage-soft); color: var(--sage-deep); }
.hero-visual .card-3 { bottom: 0%; left: 18%; }
.hero-visual .card-3 .icn { background: #FAEFCE; color: var(--gold); }
.hero-visual .card strong { display: block; font-size: 13px; color: var(--ink); }
.hero-visual .card span { font-size: 11px; color: var(--sub); }

/* ------------ Stats ------------ */
.stats {
  background: white;
  border-block: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) var(--pad);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  text-align: center;
}
@media (max-width: 720px) { .stats-inner { grid-template-columns: 1fr; gap: 28px; } }
.stat .num {
  font-family: var(--font-en);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num small { font-size: 0.45em; color: var(--ink); margin-left: 4px; font-family: var(--font-jp); font-weight: 500; }
.stat .label { margin-top: 12px; font-size: 14px; color: var(--sub); }

/* ------------ Sections ------------ */
.section {
  padding: clamp(64px, 10vw, 120px) var(--pad);
}
.section.alt { background: var(--cream-2); }
.section.dark { background: var(--ink); color: var(--cream); }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .en { display: block; margin-bottom: 12px; }
.section-head h2 {
  font-size: clamp(24px, 3.6vw, 36px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}
.section.dark .section-head .en { color: var(--rose-soft); }
.section.dark .section-head p { color: rgba(251, 248, 244, 0.75); }

/* ------------ Member offer figure ------------ */
.offer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.offer-card .badge {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--rose-deep);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  margin-bottom: 16px;
}
.offer-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.offer-card .big {
  font-family: var(--font-en);
  font-size: 36px; font-weight: 700;
  color: var(--rose-deep);
  line-height: 1.1;
  margin: 12px 0 8px;
}
.offer-card .big small {
  font-size: 14px;
  color: var(--ink); font-family: var(--font-jp);
  font-weight: 500;
  margin-left: 4px;
}
.offer-card p { font-size: 14px; color: var(--sub); }
.offer-plus {
  font-family: var(--font-en);
  font-size: 32px; font-weight: 700;
  color: var(--sage);
  align-self: center;
  text-align: center;
}
.offer-foot {
  margin-top: 24px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.offer-foot strong { color: var(--rose-soft); }

/* ------------ Worry cards ------------ */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.worry-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.worry-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.worry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.worry-card .sub {
  font-size: 13px;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.worry-card p {
  font-size: 14px;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 16px;
}
.worry-card ul {
  list-style: none;
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 20px;
}
.worry-card ul li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.worry-card ul li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--rose);
  border-radius: 1px;
}
.worry-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--rose-deep);
  margin-top: auto;
}
.worry-card .more svg { transition: transform .2s; }
.worry-card:hover .more svg { transform: translateX(4px); }

/* ------------ Insurance table ------------ */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ins-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  position: relative;
}
.ins-card.featured { border-color: var(--rose); border-width: 2px; }
.ins-card.featured::before {
  content: "おすすめ";
  position: absolute; top: -10px; left: 24px;
  background: var(--rose);
  color: white;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
}
.ins-card h3 { font-size: 16px; margin-bottom: 12px; }
.ins-card .price {
  font-family: var(--font-en);
  font-size: 24px; font-weight: 700;
  color: var(--rose-deep);
  margin: 8px 0;
}
.ins-card .price small { font-size: 12px; color: var(--sub); font-family: var(--font-jp); font-weight: 500; }
.ins-card p { font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.ins-card .meta { font-size: 11px; color: var(--sub); margin-bottom: 12px; }
.ins-card .more { font-size: 13px; color: var(--rose-deep); font-weight: 600; }

/* ------------ News ------------ */
.news-list {
  display: grid;
  gap: 20px;
}
.news-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color .2s, box-shadow .2s;
}
.news-item:hover { border-color: var(--rose-soft); box-shadow: var(--shadow-sm); }
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 12px; }
}
.news-item .date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--sub);
}
.news-item .tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  font-weight: 600;
}
.news-item .tag.support { background: var(--sage-soft); color: var(--sage-deep); }
.news-item .tag.notice { background: var(--rose-soft); color: var(--rose-deep); }
.news-item .tag.event { background: #FAEFCE; color: var(--gold); }
.news-item h3 { font-size: 16px; font-weight: 600; line-height: 1.6; }
.news-item .arrow { color: var(--rose); }

/* ------------ Message ------------ */
.message-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) { .message-block { grid-template-columns: 1fr; gap: 24px; } }
.message-portrait {
  width: 180px; height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--rose-soft), var(--rose) 80%);
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.message-portrait::after {
  content: ""; position: absolute;
  inset: 14px;
  background: var(--cream);
  border-radius: 50%;
}
.message-portrait::before {
  content: ""; position: absolute;
  inset: 30px;
  background:
    radial-gradient(circle at 50% 40%, #f5d3ca 0%, #e8b5a8 60%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.message-text h3 { font-size: 22px; margin-bottom: 16px; }
.message-text p { font-size: 15px; color: var(--ink-2); margin-bottom: 14px; }
.message-text .sign { color: var(--sub); font-size: 14px; margin-top: 20px; }

/* ------------ Partners ------------ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.partner {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  font-size: 12px;
  color: var(--sub);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 96px;
}
.partner strong { color: var(--ink); font-size: 13px; font-weight: 600; }

/* ------------ FAQ ------------ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .q-mark {
  color: var(--rose-deep);
  font-family: var(--font-en);
  font-weight: 700;
  margin-right: 12px;
}
.faq-q .toggle {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q .toggle { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.9;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 22px;
}

/* ------------ CTA banner ------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center;
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-banner::before { width: 200px; height: 200px; top: -60px; right: -60px; }
.cta-banner::after { width: 140px; height: 140px; bottom: -40px; left: -40px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px; }
.cta-banner p { font-size: 15px; opacity: 0.92; margin-bottom: 28px; }
.cta-banner .btns { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-banner .btn-primary { background: white; color: var(--rose-deep); }
.cta-banner .btn-primary:hover { background: var(--cream); }
.cta-banner .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ------------ Footer ------------ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px var(--pad) 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .brand-text { color: var(--cream); }
.footer-brand p {
  font-size: 13px;
  color: rgba(251, 248, 244, 0.7);
  margin-top: 16px;
  line-height: 1.8;
}
.footer-col h4 { font-size: 13px; margin-bottom: 16px; color: var(--rose-soft); letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(251, 248, 244, 0.7); }
.footer-col ul a:hover { color: var(--rose-soft); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 248, 244, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(251, 248, 244, 0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(251, 248, 244, 0.7); margin-left: 16px; font-size: 12px; }

/* ------------ Page header (sub pages) ------------ */
.page-hero {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(239, 211, 203, 0.5) 0%, transparent 60%),
    var(--cream);
  padding: clamp(48px, 7vw, 80px) var(--pad) clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb { font-size: 12px; color: var(--sub); margin-bottom: 16px; }
.breadcrumb a { color: var(--sub); }
.breadcrumb a:hover { color: var(--rose-deep); }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}
.page-hero .lead { color: var(--ink-2); font-size: 15px; max-width: 640px; }

/* ------------ Form ------------ */
.form {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.form .row { margin-bottom: 22px; }
.form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form label .req {
  color: var(--rose);
  font-size: 11px;
  margin-left: 6px;
  font-weight: 500;
}
.form input, .form textarea, .form select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(194, 118, 107, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ------------ Misc ------------ */
.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 6vw, 64px) 0;
}
.center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }

/* lucide-style icon */
.icon-svg {
  width: 22px; height: 22px;
  stroke-width: 1.8;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.worry-card .icon .icon-svg { width: 24px; height: 24px; }

/* sub-page tables */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--cream-2);
  font-weight: 600;
  font-size: 13px;
}
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.compare-table .featured-row { background: rgba(239, 211, 203, 0.18); }
@media (max-width: 720px) {
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px; }
}

/* offer comparison */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 720px) { .before-after { grid-template-columns: 1fr; } }
.ba-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
}
.ba-card.after { background: white; border-color: var(--rose); }
.ba-card .label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--sub); margin-bottom: 12px; text-transform: uppercase; }
.ba-card.after .label { color: var(--rose-deep); }
.ba-card h4 { font-size: 16px; margin-bottom: 8px; }
.ba-card p { font-size: 13px; color: var(--ink-2); }
.ba-arrow { color: var(--rose); font-size: 28px; text-align: center; }
