@charset "UTF-8";
/* =========================================================
   CleanX Pro LP  —  株式会社ファンガス研究所
   制作: 株式会社FUTSU
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* color */
  --red: #f5000c;
  --red-2: #ff3340;
  --red-3: #ff000c;
  --red-dark: #7e0008;
  --red-deep: #120306;
  --ink: #0a0a0a;
  --ink-soft: #0f0f0f;
  --gray: #8c9097;
  --gray-2: #c7cad0;
  --gray-3: #b9bcc2;
  --gray-4: #5b5e64;
  --quote: #5a5a5a;
  --bg: #ffffff;
  --bg-cyan: #edfcff;
  --bg-soft: #f5f6f8;
  --card-dark: #141418;
  --card-dark-2: #15151a;
  --input-dark: #0d0d10;
  --line: rgba(0, 0, 0, .09);
  --line-soft: rgba(0, 0, 0, .07);
  --line-dark: rgba(255, 255, 255, .07);

  /* type */
  --f-head: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --f-body: "Noto Sans JP", sans-serif;
  --f-en: "Anton", "Zen Kaku Gothic New", sans-serif;

  /* layout */
  --container: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 84px;

  /* effect */
  --grad-red: linear-gradient(180deg, #f5000c 0%, #7e0008 100%);
  --shadow-btn: 0 14px 30px -16px rgba(245, 0, 12, .65);
  --shadow-card: 0 18px 40px -28px rgba(15, 18, 22, .25);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Shared Layout ---------- */
.section { padding-block: clamp(64px, 9vw, 104px); }
.section__inner { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section--cyan { background: var(--bg-cyan); }

.section__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(36px, 5vw, 52px); }

/* eyebrow */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow__bar { width: 24px; height: 2px; background: var(--red); flex: none; }
.eyebrow__en { font-family: var(--f-en); font-weight: 400; font-size: 13px; letter-spacing: .24em; color: var(--gray); line-height: 1; }
.eyebrow__sub { font-family: var(--f-body); font-weight: 500; font-size: 12px; letter-spacing: .06em; color: var(--gray-2); line-height: 1; }

/* headline */
.headline {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(26px, 1.1rem + 2.3vw, 42px);
  line-height: 1.34;
  letter-spacing: .01em;
  color: var(--ink);
}
.accent { color: var(--red); }

/* button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--f-head); font-weight: 700; font-size: 17px; line-height: 1;
  color: #fff; text-decoration: none;
  background: var(--grad-red);
  border: 1px solid rgba(255, 51, 64, .5);
  padding: 18px 34px;
  box-shadow: var(--shadow-btn);
  transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 20px 38px -16px rgba(245, 0, 12, .7); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 11px 20px; font-size: 13px; box-shadow: none; }
.btn--block { width: 100%; padding: 18px; }
.btn__arrow { font-family: var(--f-en); font-weight: 400; font-size: 1.05em; }
.btn__icon { display: inline-flex; }
.btn__icon svg { width: 18px; height: 18px; }

.ctarow { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(32px, 5vw, 44px); }
.ctarow--center, .ctarow:not(.ctarow--left) { justify-content: center; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 22px -16px rgba(0, 0, 0, .4); border-bottom-color: var(--line-soft); }
.header__inner {
  height: var(--header-h);
  width: min(100% - var(--gutter) * 2, 1440px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo img { height: 56px; width: auto; }
.gnav { display: flex; align-items: center; gap: 28px; }
.gnav__list { display: flex; align-items: center; gap: 28px; }
.gnav__link {
  font-family: var(--f-head); font-weight: 500; font-size: 14px; color: var(--ink);
  text-decoration: none; position: relative; padding: 4px 0;
}
.gnav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease); }
.gnav__link:hover::after { width: 100%; }

/* hamburger */
.navtoggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; position: relative; }
.navtoggle__bar { position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.navtoggle__bar:nth-child(1) { top: 15px; }
.navtoggle__bar:nth-child(2) { top: 21px; }
.navtoggle__bar:nth-child(3) { top: 27px; }
.navtoggle.is-open .navtoggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle.is-open .navtoggle__bar:nth-child(2) { opacity: 0; }
.navtoggle.is-open .navtoggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed; top: var(--header-h); right: 0; z-index: 99;
  width: min(320px, 84vw); height: calc(100dvh - var(--header-h));
  background: #fff; border-left: 1px solid var(--line);
  transform: translateX(105%); transition: transform .35s var(--ease);
  padding: 28px 24px; overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__link { font-family: var(--f-head); font-weight: 500; font-size: 16px; text-decoration: none; padding: 14px 8px; border-bottom: 1px solid var(--line-soft); }
.drawer__cta { margin-top: 20px; }
.drawer-overlay { position: fixed; inset: 0; z-index: 98; background: rgba(0, 0, 0, .4); opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
body.is-locked { overflow: hidden; }

/* =========================================================
   01 HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden; background: #fff;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(32px, 4vw, 52px) var(--gutter) clamp(52px, 6vw, 68px);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 52% at 86% -6%, rgba(245, 0, 12, .12), transparent 68%),
    radial-gradient(50% 42% at 24% 112%, rgba(245, 0, 12, .07), transparent 70%);
}
.hero__inner {
  position: relative; z-index: 1; flex: 1 1 auto;
  width: 100%; max-width: 900px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: clamp(20px, 2.6vw, 30px);
}
.hero__logo { width: min(440px, 76%); }
.hero__logo img { width: 100%; height: auto; }
.hero__title {
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(30px, 2vw + 1.6rem, 52px);
  line-height: 1.3; letter-spacing: .01em; color: var(--ink);
}
.hero__lead { font-size: clamp(14px, 1.1vw + .4rem, 17px); line-height: 1.95; color: var(--ink); }
.hero__note { font-family: var(--f-body); font-weight: 500; font-size: 12px; letter-spacing: .14em; color: var(--ink); }
.hero__spec {
  position: relative; z-index: 1; text-align: center; margin-top: clamp(28px, 4vw, 44px);
  font-family: var(--f-body); font-weight: 500; font-size: clamp(10px, 1vw, 11px);
  letter-spacing: .14em; color: var(--ink);
}
.hero__scroll {
  position: absolute; right: clamp(16px, 4vw, 40px); bottom: 18px; z-index: 1;
  font-family: var(--f-en); font-size: 11px; letter-spacing: .3em; color: var(--gray);
  writing-mode: vertical-rl;
}

/* =========================================================
   Cards grid (shared)
   ========================================================= */
.cards { display: grid; gap: 18px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* 02 problem cards */
.pcard, .bcard {
  background: #fff; border: 1px solid var(--line);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pcard:hover, .bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(0,0,0,.12); }
.pcard__title { font-family: var(--f-head); font-weight: 700; font-size: 19px; line-height: 1.48; color: var(--ink); }
.pcard__text { font-size: 14px; line-height: 1.85; color: var(--gray); }
.bcard__title { font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 1.48; color: var(--ink); }
.bcard__text { font-size: 13.5px; line-height: 1.85; color: var(--gray); }

/* =========================================================
   04 LINEUP
   ========================================================= */
.lineup { display: flex; flex-direction: column; gap: 20px; }
.lineup__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lcard {
  background: var(--card-dark); border: 1px solid var(--line-dark);
  padding: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.lcard__img { width: 100%; aspect-ratio: 1672 / 941; overflow: hidden; background: #1b1b20; }
.lcard__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lcard__name { font-family: var(--f-en); font-size: 32px; letter-spacing: .02em; color: #fff; line-height: 1; }
.lcard__text { font-size: 14px; line-height: 1.85; color: var(--gray); }
.tag { font-family: var(--f-en); font-size: 13px; letter-spacing: .08em; padding: 4px 12px; line-height: 1.25; }
.tag--solid { background: var(--red); color: #fff; }
.tag--outline { background: #fff; border: 1px solid rgba(245, 0, 12, .5); color: var(--red-2); }
.lineup__spec {
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 18px 22px; font-size: 13px; line-height: 1.75; color: #6b6f76;
}

/* =========================================================
   05 COMPARE
   ========================================================= */
.compare { overflow-x: auto; }
.ctable {
  width: 100%; max-width: 760px; border-collapse: collapse;
  border: 1px solid var(--line); table-layout: fixed; font-size: 14px;
}
.ctable thead th:first-child { width: 31%; }
.ctable__head {
  background: var(--card-dark-2); color: var(--gray-2);
  font-family: var(--f-head); font-weight: 700; font-size: 13px; text-align: left;
  padding: 15px 18px; vertical-align: middle;
}
.ctable__head--accent { background: var(--red-3); color: #fff; }
.ctable tbody th, .ctable tbody td { padding: 15px 18px; border-top: 1px solid var(--line); vertical-align: middle; text-align: left; }
.ctable tbody th {
  background: #fafafa; font-family: var(--f-head); font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px); color: var(--ink);
}
.ctable tbody td { color: var(--ink); }
.ctable tbody td.is-accent {
  background: rgba(245, 0, 12, .06); font-family: var(--f-head); font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px);
}

/* =========================================================
   06 EVIDENCE  (clickable categories + before/after lightbox)
   ========================================================= */
.ev2__lead { font-size: 14px; line-height: 1.85; color: var(--gray); margin-bottom: 26px; }
.ev2__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.evcase {
  width: 100%; background: #fff; border: 1px solid var(--line);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; align-items: stretch; text-align: left;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.evcase:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(245, 0, 12, .45); }
.evcase__name { font-family: var(--f-head); font-weight: 700; font-size: 16px; color: var(--ink); }
.evcase__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.evcase__tag { font-weight: 700; font-size: 11px; letter-spacing: .04em; color: var(--red); }
.evcase__tag--soon { color: var(--gray-2); }
.evcase__zoom { display: inline-flex; color: var(--gray); transition: color .25s var(--ease); }
.evcase__zoom svg { width: 18px; height: 18px; }
.evcase:hover .evcase__zoom { color: var(--red); }
.evcase--ready { border-top: 2px solid var(--red); }
.evcase--soon { background: #fbfbfc; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 40px); }
.lightbox[hidden] { display: none; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(10, 10, 12, .82); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.is-open .lightbox__overlay { opacity: 1; }
.lightbox__panel {
  position: relative; background: #fff; width: min(920px, 100%); max-height: 88vh; overflow: auto;
  opacity: 0; transform: translateY(14px) scale(.985); transition: opacity .35s var(--ease), transform .35s var(--ease);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6);
}
.lightbox.is-open .lightbox__panel { opacity: 1; transform: none; }
.lightbox__head { position: sticky; top: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; background: #fff; border-bottom: 1px solid var(--line); }
.lightbox__title { display: flex; align-items: center; gap: 12px; }
.lightbox__bar { width: 22px; height: 2px; background: var(--red); flex: none; }
.lightbox__titletext { font-family: var(--f-head); font-weight: 900; font-size: clamp(17px, 2.4vw, 21px); color: var(--ink); }
.lightbox__close { width: 42px; height: 42px; flex: none; border: 1px solid var(--line); background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.lightbox__body { padding: 24px; }
.lbpair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lbpair + .lbpair { margin-top: 24px; }
.lbpair__col { position: relative; margin: 0; }
.lbpair__col img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--bg-soft); }
.lbpair__label { position: absolute; top: 10px; left: 10px; font-family: var(--f-en); font-size: 11px; letter-spacing: .12em; color: #fff; background: rgba(10, 10, 12, .82); padding: 4px 10px; }
.lbpair__label--after { background: var(--red); }
.lbpair__cap { margin-top: 16px; font-size: 13px; line-height: 1.8; color: var(--gray); }
.lb-soon { padding: 48px 24px; text-align: center; }
.lb-soon strong { color: var(--red); }
.lb-soon p { color: var(--gray); font-size: 15px; line-height: 1.9; }

/* =========================================================
   07 HOW TO
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.step {
  background: var(--card-dark); border: 1px solid var(--line-dark);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
}
.step__badge { align-self: flex-start; font-family: var(--f-en); font-size: 13px; letter-spacing: .1em; color: #fff; background: var(--grad-red); padding: 4px 12px; line-height: 1.25; }
.step__img { width: 100%; aspect-ratio: 342 / 184; overflow: hidden; }
.step__img img { width: 100%; height: 100%; object-fit: cover; }
.step__title { font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 1.5; color: #fff; }
.step__text { font-size: 13.5px; line-height: 1.8; color: var(--gray); }

/* =========================================================
   08 COST
   ========================================================= */
.costcompare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.costcard {
  background: var(--card-dark); border: 1px solid var(--line-dark);
  padding: clamp(26px, 3vw, 34px) 30px; text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center;
}
.costcard--accent { background: var(--red-deep); border-color: rgba(245, 0, 12, .4); }
.costcard__label { font-family: var(--f-head); font-weight: 700; font-size: 15px; color: var(--gray-2); }
.costcard__price { font-family: var(--f-head); font-weight: 900; font-size: clamp(30px, 5vw, 44px); line-height: 1.1; color: #fff; }
.costcard--accent .costcard__price { color: var(--red-2); }
.costcard__note { font-size: 12px; color: var(--gray-4); }
.costcompare__arrow { font-family: var(--f-en); font-size: 34px; color: var(--red); align-self: center; }
.costcompare__foot { margin-top: 20px; font-size: 13px; line-height: 1.75; color: var(--gray); }

/* =========================================================
   09 DOUBTS
   ========================================================= */
.qalist { display: flex; flex-direction: column; gap: 14px; }
.qa { background: var(--card-dark); border: 1px solid var(--line-dark); padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.qa__q { font-family: var(--f-head); font-weight: 700; font-size: 17px; line-height: 1.5; color: #fff; display: flex; gap: 10px; align-items: baseline; }
.qa__mark { font-family: var(--f-en); font-size: 18px; color: var(--red); flex: none; }
.qa__a { font-size: 14px; line-height: 1.85; color: var(--gray); padding-left: 26px; }

/* =========================================================
   10 VOICES
   ========================================================= */
.voices__lead { font-weight: 700; font-size: 15px; color: #595959; margin-bottom: 26px; }
.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vcard {
  position: relative; background: #fff; border: 1px solid var(--line);
  padding: 48px 34px 30px; box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vcard:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(15,18,22,.4); }
.vcard::before { content: ""; position: absolute; top: 30px; left: 34px; width: 28px; height: 3px; background: #e60012; }
.vcard__cat { font-family: var(--f-body); font-weight: 700; font-size: 12px; letter-spacing: .05em; color: #e60012; }
.vcard__no { position: absolute; top: 46px; right: 34px; font-family: var(--f-body); font-weight: 700; font-size: 12px; color: #cfcfcf; }
.vcard__title { font-family: var(--f-body); font-weight: 700; font-size: 21px; line-height: 1.5; color: var(--ink-soft); margin: 14px 0 16px; }
.vcard__quote { font-size: 14.5px; line-height: 1.9; color: var(--quote); }
.vcard__by { font-size: 12px; color: #9a9a9a; margin-top: 18px; }
.caution { margin-top: 24px; background: #f7f7f8; border: 1px solid var(--line-soft); border-left: 4px solid #e60012; padding: 22px 26px; }
.caution__title { font-weight: 700; font-size: 13px; color: #e60012; margin-bottom: 8px; }
.caution__text { font-size: 12.5px; line-height: 1.8; color: #6a6a6a; }

/* =========================================================
   11 TRUST  (dark cards)
   ========================================================= */
.tcard { background: var(--card-dark); border: 1px solid var(--line-dark); padding: 30px 26px; display: flex; flex-direction: column; gap: 12px; }
.tcard__title { font-family: var(--f-head); font-weight: 700; font-size: 19px; line-height: 1.48; color: #fff; }
.tcard__text { font-size: 14px; line-height: 1.85; color: var(--gray); }
.tcard__tel { display: inline-flex; align-items: center; gap: 6px; }
.tcard__icon { display: inline-flex; color: var(--red-2); }
.tcard__icon svg { width: 15px; height: 15px; }
.tcard__tel a { color: var(--gray-2); text-decoration: none; }
.tcard__tel a:hover { color: #fff; }

/* =========================================================
   12 FAQ
   ========================================================= */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--f-head); font-weight: 700; font-size: 16px; line-height: 1.5; color: var(--ink);
}
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--red); transition: transform .3s var(--ease); }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq__a > p { padding: 0 4px 24px; font-size: 14.5px; line-height: 1.9; color: #333; }

/* =========================================================
   13 FORM
   ========================================================= */
.formsec { background: #fff; }
.formsec__inner { width: min(780px, 100% - var(--gutter) * 2); margin-inline: auto; display: flex; flex-direction: column; gap: 24px; }
.formsec .section__head { margin-bottom: 0; }
.formsec__ribbon { background: var(--red-deep); border: 1px solid rgba(245, 0, 12, .4); color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 15px; text-align: center; padding: 15px; }
.formsec__title { font-family: var(--f-head); font-weight: 900; font-size: clamp(24px, 4vw, 38px); line-height: 1.34; text-align: center; }
.cform { background: var(--card-dark); border: 1px solid var(--line-dark); padding: clamp(24px, 4vw, 46px); display: flex; flex-direction: column; gap: 22px; }
.cform__field { display: flex; flex-direction: column; gap: 9px; }
.cform__label { display: flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 700; font-size: 14px; color: #e7e9ee; }
.badge { font-family: var(--f-body); font-weight: 500; font-size: 11px; letter-spacing: .06em; padding: 2px 8px; line-height: 1.5; }
.badge--req { background: var(--red); color: #fff; }
.badge--opt { border: 1px solid rgba(255, 255, 255, .2); color: var(--gray); }
.cform input, .cform select, .cform textarea {
  width: 100%; background: var(--input-dark); border: 1px solid rgba(255, 255, 255, .1);
  color: #e7e9ee; font-family: var(--f-body); font-size: 14px; padding: 13px 15px; line-height: 1.6;
  transition: border-color .2s, box-shadow .2s;
}
.cform textarea { resize: vertical; min-height: 110px; }
.cform input::placeholder, .cform textarea::placeholder { color: #55585e; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 2px rgba(245, 0, 12, .22); }
.cform select {
  -webkit-appearance: none; appearance: none; color: #c7cad0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c9097' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px;
}
.cform__choices { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 2px; }
.choice { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-2); cursor: pointer; user-select: none; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__mark { width: 16px; height: 16px; border: 1px solid var(--gray); flex: none; position: relative; transition: border-color .2s, background .2s; }
.choice__mark--radio { border-radius: 50%; }
.choice input:focus-visible ~ .choice__mark { outline: 2px solid var(--red); outline-offset: 2px; }
.choice input:checked ~ .choice__mark { border-color: var(--red); background: var(--red); }
.choice__mark--radio::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .2s; }
.choice input:checked ~ .choice__mark--radio::after { opacity: 1; }
.choice__mark--check::after { content: ""; position: absolute; left: 5px; top: 1px; width: 4px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform .2s; }
.choice input:checked ~ .choice__mark--check::after { transform: rotate(45deg) scale(1); }
.choice--agree { margin-top: 2px; }
.cform__msg { font-size: 14px; color: #fff; background: rgba(245, 0, 12, .14); border: 1px solid rgba(245, 0, 12, .4); padding: 14px 16px; }

/* =========================================================
   14 FOOTER
   ========================================================= */
.footer { background: #fff; padding: clamp(48px, 7vw, 72px) 0 40px; border-top: 1px solid var(--line-soft); }
.footer__inner { width: min(1296px, 100% - clamp(24px, 6vw, 72px) * 2); margin-inline: auto; display: flex; flex-direction: column; gap: 36px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__logo { height: 92px; width: auto; }
.footer__desc { font-size: 13px; line-height: 1.8; color: var(--gray); margin-top: 18px; }
.footer__menu { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer__menu-title { font-family: var(--f-en); font-size: 12px; letter-spacing: .16em; color: var(--ink); margin-bottom: 2px; }
.footer__menu a { font-size: 13.5px; text-decoration: none; color: var(--ink); transition: color .2s; }
.footer__menu a:hover { color: var(--red); }
.footer__hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.footer__copy { font-size: 12px; line-height: 1.7; color: var(--gray-4); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .ev2__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .gnav { display: none; }
  .navtoggle { display: block; }
  .header__logo img { height: 40px; }

  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .lineup__row { grid-template-columns: 1fr; }
  .lcard__name { font-size: 28px; }
  .ev2__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; }

  .costcompare { grid-template-columns: 1fr; }
  .costcompare__arrow { transform: rotate(90deg); justify-self: center; }

  .ctarow .btn { width: 100%; }
  .footer__top { flex-direction: column; gap: 32px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 28px; }
  .vcard { padding: 44px 24px 28px; }
  .vcard::before, .vcard__cat { left: 24px; }
  .vcard__no { right: 24px; }
  .qa__a { padding-left: 0; }
  .cform__choices { gap: 12px 18px; }
  .lbpair { grid-template-columns: 1fr; }
}

/* =========================================================
   ADDITIONS — form submit states / SP line breaks / legal page
   ========================================================= */
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__pplink { color: var(--red-2); text-decoration: underline; text-underline-offset: 2px; }
.cform__pplink:hover { color: #fff; }
.cform__msg--ok { background: rgba(34, 197, 94, .15); border-color: rgba(34, 197, 94, .55); }
.cform__msg--err { background: rgba(245, 0, 12, .15); border-color: rgba(245, 0, 12, .5); }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* SP: collapse desktop-only line breaks so text wraps naturally */
@media (max-width: 767px) {
  .hero__lead br,
  .pcard__text br,
  .bcard__title br,
  .bcard__text br,
  .lcard__text br,
  .step__text br,
  .qa__a br,
  .tcard__text br,
  .faq__a br,
  .footer__desc br { display: none; }
}

/* Legal / privacy page */
.subheader { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid var(--line-soft); }
.subheader__inner { width: min(100% - var(--gutter) * 2, 1440px); margin-inline: auto; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.subheader__logo { display: inline-flex; }
.subheader__logo img { height: 52px; width: auto; }
.subheader__home { font-family: var(--f-head); font-weight: 500; font-size: 14px; color: var(--ink); text-decoration: none; }
.subheader__home:hover { color: var(--red); }
.legal { padding-block: clamp(44px, 6vw, 76px); }
.legal__inner { width: min(820px, 100% - var(--gutter) * 2); margin-inline: auto; }
.legal__eyebrow { margin-bottom: 16px; }
.legal__title { font-family: var(--f-head); font-weight: 900; font-size: clamp(24px, 4vw, 34px); line-height: 1.4; }
.legal__lead { color: var(--gray); font-size: 14px; line-height: 1.95; margin: 14px 0 8px; }
.legal h2 { font-family: var(--f-head); font-weight: 700; font-size: clamp(17px, 2.4vw, 20px); line-height: 1.5; margin: 40px 0 12px; padding-left: 14px; border-left: 3px solid var(--red); }
.legal h3 { font-family: var(--f-head); font-weight: 700; font-size: 15px; margin: 22px 0 8px; }
.legal p { font-size: 14px; line-height: 1.95; color: #333; margin: 0 0 12px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 1.45em; }
.legal li { font-size: 14px; line-height: 1.9; color: #333; margin-bottom: 5px; }
.legal ul li { list-style: disc; }
.legal ol li { list-style: decimal; }
.legal__meta { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--gray); line-height: 1.9; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--red); text-decoration: none; }
.legal__back:hover { text-decoration: underline; }
