/* =========================================================
   Leone clean — Landing Page
   白 × Aqua Blue 基調 / LINEグリーン CTA / スマホファースト
   Recreated from the Genspark Design handoff (hifi).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700&family=Manrope:wght@500;700;800&display=swap');

/* -----------------------------------------
   DESIGN TOKENS
   ----------------------------------------- */
:root {
  /* Primary — Aqua Blue Scale */
  --blue-50:  #EAF6FB;
  --blue-100: #CFE8F5;
  --blue-200: #A4D3EE;
  --blue-300: #6DB6E4;
  --blue-400: #3897D6;
  --blue-500: #0E7DC4; /* PRIMARY */
  --blue-600: #0967A8;
  --blue-700: #08558C;
  --blue-800: #0A4470;
  --blue-900: #0B324F;

  --aqua-highlight: #33C7E0;
  --aqua-deep:      #063E63;

  /* Ink / Neutral */
  --ink:    #0F1B2D;
  --ink-2:  #465366;
  --ink-3:  #7A8698;
  --ink-4:  #A9B3C1;
  --line:   #E4EBF3;
  --line-2: #EEF3F9;

  /* Backgrounds */
  --bg:       #FFFFFF;
  --bg-soft:  #F5F9FF;
  --bg-blue:  #EAF3FF;
  --bg-ink:   #0F1B2D;

  /* Semantic / CTA */
  --line-green:     #06C755;
  --line-green-600: #05B54D;
  --line-green-700: #049942;
  --success: #12B76A;
  --warn:    #F59E0B;
  --danger:  #EF4444;

  /* Fonts */
  --font-display: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-numeric: 'Manrope', 'Zen Kaku Gothic New', sans-serif;

  /* Type scale */
  --fs-hero:    clamp(30px, 8vw, 48px);
  --fs-h2:      clamp(22px, 5vw, 28px);
  --fs-price:   clamp(32px, 8vw, 44px);

  --lh-tight:  1.25;
  --lh-normal: 1.6;

  /* Spacing (8pt) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px;

  --section-y: clamp(48px, 10vw, 88px);
  --section-x: clamp(20px, 5vw, 32px);

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --r-xl: 24px; --r-2xl: 32px; --r-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(15, 27, 45, 0.06);
  --shadow-sm:  0 2px 8px rgba(43, 127, 255, 0.06);
  --shadow-md:  0 8px 24px rgba(43, 127, 255, 0.10);
  --shadow-lg:  0 16px 40px rgba(43, 127, 255, 0.14);
  --shadow-cta: 0 8px 20px rgba(6, 199, 85, 0.35);

  /* Layout */
  --max-w:    420px;
  --cta-bar-h: 76px;

  /* Motion */
  --ease-out:  cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  220ms;
  --dur-slow:  400ms;
}

/* -----------------------------------------
   BASE
   ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--lh-normal);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  /* reserve room for the fixed CTA bar */
  padding-bottom: calc(var(--cta-bar-h) + 16px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
  text-wrap: pretty;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.tabular { font-variant-numeric: tabular-nums; }

/* -----------------------------------------
   LAYOUT HELPERS
   ----------------------------------------- */
.lc-section { padding: var(--section-y) var(--section-x); }
.lc-bg-soft { background: var(--bg-soft); }
.lc-bg-white { background: var(--bg); }
.lc-wrap { max-width: var(--max-w); margin: 0 auto; }

/* Reveal on scroll — fade + 8-12px slide only */
.lc-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.lc-reveal.is-in { opacity: 1; transform: none; }

/* -----------------------------------------
   SECTION HEADER
   ----------------------------------------- */
.lc-sec-head { text-align: center; margin-bottom: var(--sp-8); }
.lc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.lc-eyebrow::before,
.lc-eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue-500);
}
.lc-sec-title {
  font-weight: 900;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.35;
  margin: 12px 0 8px;
}
.lc-sec-sub { font-size: 14px; color: var(--ink-3); }
.lc-hl {
  color: var(--blue-600);
  position: relative;
  display: inline-block;
}
.lc-hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 8px;
  background: var(--blue-100);
  border-radius: 2px;
  z-index: -1;
}

/* -----------------------------------------
   BUTTONS
   ----------------------------------------- */
.lc-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--line-green);
  color: #fff;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.lc-btn-line svg { flex-shrink: 0; }
.lc-btn-line:hover { background: var(--line-green-600); }
.lc-btn-line:active { transform: scale(0.98); background: var(--line-green-700); }
.lc-btn-line--sm { padding: 10px 18px; font-size: 13px; gap: 6px; }
.lc-btn-line--lg { padding: 18px 30px; font-size: 17px; gap: 10px; }
.lc-btn-line--full { width: 100%; }

/* -----------------------------------------
   HEADER
   ----------------------------------------- */
.lc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out);
}
.lc-header.is-scrolled { border-bottom-color: var(--line); }

.lc-header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 56px;
}
.lc-brand { display: flex; align-items: center; }
.lc-brand img { height: 28px; width: auto; }
.lc-header-spacer { flex: 1; }

.lc-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.lc-icon-btn:hover { background: var(--blue-50); }

.lc-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.lc-menu-btn:hover { background: var(--bg-soft); }

.lc-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4px 16px 16px;
}
.lc-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
}
.lc-nav a:hover { color: var(--blue-600); }

/* -----------------------------------------
   HERO (split)
   ----------------------------------------- */
.lc-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.lc-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(180deg, var(--blue-50), var(--blue-100));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.lc-hero-bubbles {
  position: absolute;
  top: 0; right: 0;
  width: 70%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
  object-fit: cover;
}
.lc-hero-inner {
  position: relative;
  padding: 72px var(--section-x) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.lc-hero-eyebrow {
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lc-hero h1 {
  font-weight: 900;
  font-size: clamp(30px, 8.4vw, 44px);
  line-height: 1.22;
  margin: 0 0 16px;
}
.lc-marker {
  background: linear-gradient(180deg, transparent 62%, var(--blue-200) 62%);
  padding: 0 4px;
  color: var(--ink);
}
.lc-hero-lead {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Before / After */
.lc-ba {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 200px;
  display: flex;
  margin-bottom: 24px;
}
.lc-ba-half {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
}
.lc-ba-half--before { background: linear-gradient(135deg, #8b7d70, #5a4f45); }
.lc-ba-half--after {
  background: linear-gradient(135deg, #7fb2ff, #0E7DC4);
  justify-content: flex-end;
}
.lc-ba-tag {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
}
.lc-ba-tag--after { background: var(--line-green); color: #fff; }
.lc-ba-slash {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 0;
  border-left: 3px solid #fff;
  transform: translateX(-50%) skewX(-14deg);
  box-shadow: 0 0 12px rgba(0, 0, 0, .15);
}

.lc-chips {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.lc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}
.lc-chip svg { color: var(--blue-500); flex-shrink: 0; }

/* -----------------------------------------
   PROBLEMS
   ----------------------------------------- */
.lc-check-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.lc-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-2);
}
.lc-check-row:last-child { border-bottom: none; }
.lc-check-ico {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.lc-check-row span { font-size: 15px; color: var(--ink); font-weight: 500; }

.lc-problems-close { text-align: center; margin-top: var(--sp-8); }
.lc-problems-close p {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
}
.lc-problems-close .lc-hl-ink { color: var(--blue-600); }
.lc-arrow-down {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  color: var(--blue-500);
}

/* -----------------------------------------
   SERVICES
   ----------------------------------------- */
.lc-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lc-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.lc-service-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.lc-service-card--hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.lc-service-card--hot {
  background: linear-gradient(180deg, var(--blue-50), #fff);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--blue-200);
}
.lc-badge-hot {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--warn);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-family: var(--font-numeric);
  letter-spacing: .04em;
}
.lc-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.lc-service-card--hot .lc-svc-ico {
  background: var(--blue-100);
  color: var(--blue-700);
}
.lc-svc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.lc-svc-price { display: flex; align-items: baseline; gap: 2px; }
.lc-svc-price .cur {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-600);
}
.lc-svc-price .num {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 22px;
  color: var(--blue-600);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.lc-svc-price .tilde { font-size: 11px; color: var(--ink-3); font-weight: 700; }
.lc-svc-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
}

/* -----------------------------------------
   PRICING (table v2 — categorised)
   ----------------------------------------- */
.lc-price-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lc-price-cat {
  background: var(--blue-50);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--blue-700);
  border-bottom: 1px solid var(--line-2);
}
.lc-price-cat--hot {
  background: linear-gradient(90deg, var(--blue-100), var(--blue-50));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.lc-price-row {
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 30px;
  position: relative;
  border-bottom: 1px solid var(--line-2);
}
.lc-price-row:last-child { border-bottom: none; }
/* ∟ L-shaped hierarchy line */
.lc-price-row::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 8px;
  height: 50%;
  border-left: 1.5px solid var(--blue-200);
  border-bottom: 1.5px solid var(--blue-200);
  border-bottom-left-radius: 6px;
}
.lc-price-row--hot { background: var(--blue-50); }
.lc-price-label { flex: 1; }
.lc-price-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.lc-price-note { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.lc-price-val { text-align: right; white-space: nowrap; }
.lc-price-val .amt {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 18px;
  color: var(--blue-600);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.lc-price-row--hot .lc-price-val .amt {
  font-size: 22px;
  color: var(--blue-700);
}
.lc-price-val .tilde { font-size: 11px; color: var(--ink-3); font-weight: 700; margin-left: 2px; }
.lc-price-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
}
.lc-tag {
  display: inline-block;
  font-family: var(--font-numeric);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.lc-tag--deal { background: var(--warn); }
.lc-tag--new { background: var(--line-green); }
.lc-price-note-foot {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 12px;
  text-align: center;
}

/* -----------------------------------------
   SIMULATOR
   ----------------------------------------- */
.lc-sim { padding: 0; overflow: hidden; }
.lc-sim-body { padding: 18px 20px; }
.lc-sim-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
}
.lc-sim-row:last-child { border-bottom: none; }
.lc-sim-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lc-sim-info { flex: 1; min-width: 0; }
.lc-sim-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.lc-sim-price {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-600);
  font-variant-numeric: tabular-nums;
}
.lc-sim-price--hot { color: var(--blue-700); }
.lc-counter { display: flex; align-items: center; gap: 6px; }
.lc-counter button {
  width: 30px;
  height: 30px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-numeric);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.lc-counter button:hover:not(:disabled) { background: var(--blue-50); }
.lc-counter button:disabled { color: var(--ink-4); cursor: not-allowed; }
.lc-counter .count {
  width: 24px;
  text-align: center;
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.lc-sim-total {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lc-sim-total-label { font-size: 12px; opacity: .85; font-weight: 700; }
.lc-sim-total-amt {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.lc-sim-total-amt .tilde { font-size: 14px; opacity: .85; margin-left: 4px; }

/* -----------------------------------------
   STEPS (vertical)
   ----------------------------------------- */
.lc-steps { position: relative; }
.lc-steps::before {
  content: "";
  position: absolute;
  left: 19px; top: 20px; bottom: 20px;
  width: 2px;
  background: var(--blue-100);
}
.lc-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.lc-step:last-child { margin-bottom: 0; }
.lc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(43, 127, 255, .3);
  flex-shrink: 0;
  z-index: 1;
}
.lc-step-card {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.lc-step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.lc-step-head svg { color: var(--blue-500); flex-shrink: 0; }
.lc-step-head h3 {
  font-weight: 700;
  font-size: 15px;
}
.lc-step-card p { font-size: 12px; color: var(--ink-2); line-height: 1.6; }

/* -----------------------------------------
   REASONS
   ----------------------------------------- */
.lc-reasons { display: flex; flex-direction: column; gap: 12px; }
.lc-reason {
  padding: 18px;
  display: flex;
  gap: 14px;
}
.lc-reason-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(43, 127, 255, .28);
}
.lc-reason h3 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.lc-reason p { font-size: 12.5px; color: var(--ink-2); line-height: 1.65; }

/* -----------------------------------------
   FAQ
   ----------------------------------------- */
.lc-faq-list { display: flex; flex-direction: column; gap: 8px; }
.lc-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.lc-faq-item.is-open {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.lc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lc-faq-mark {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-500);
  width: 20px;
  flex-shrink: 0;
}
.lc-faq-qtext {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}
.lc-faq-toggle { color: var(--ink-3); flex-shrink: 0; display: flex; }
.lc-faq-a {
  padding: 0 16px 16px 44px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.7;
  display: flex;
  gap: 8px;
}
.lc-faq-a .lc-faq-mark { margin-left: -32px; }

/* -----------------------------------------
   FINAL CTA
   ----------------------------------------- */
.lc-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 60%, var(--blue-400) 100%);
  color: #fff;
}
.lc-final-bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  pointer-events: none;
}
.lc-final-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.lc-final-eyebrow {
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .85;
  margin-bottom: 10px;
}
.lc-final h2 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.3;
  margin: 0 0 12px;
}
.lc-final-lead { font-size: 14px; opacity: .92; margin-bottom: 28px; line-height: 1.7; }
.lc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
}
.lc-divider span:first-child,
.lc-divider span:last-child { flex: 1; height: 1px; background: rgba(255, 255, 255, .3); }
.lc-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  text-decoration: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.lc-phone-btn:hover { background: rgba(255, 255, 255, .25); }
.lc-phone-btn .num {
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.lc-phone-btn .hours { font-size: 11px; opacity: .85; }
.lc-final-checks {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: .9;
}

/* -----------------------------------------
   FOOTER
   ----------------------------------------- */
.lc-footer {
  background: var(--bg-ink);
  color: #fff;
  padding: 40px var(--section-x) 32px;
}
.lc-footer-inner { max-width: var(--max-w); margin: 0 auto; }
.lc-footer-logo { height: 32px; width: auto; margin-bottom: 16px; }
.lc-footer-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 20px;
}
.lc-footer-table {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}
.lc-footer-table dt { color: rgba(255, 255, 255, .5); margin: 0; }
.lc-footer-table dd { margin: 0; }
.lc-footer-table .num { font-family: var(--font-numeric); font-weight: 700; font-variant-numeric: tabular-nums; }
.lc-footer-table .hours { opacity: .55; font-weight: 500; margin-left: 6px; font-size: 11px; }
.lc-footer-links {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
}
.lc-footer-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}
.lc-footer-links a:hover { color: #fff; }
.lc-copy {
  font-family: var(--font-numeric);
  font-size: 10.5px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .06em;
  margin-top: 12px;
}

/* -----------------------------------------
   FIXED CTA BAR
   ----------------------------------------- */
.lc-fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 27, 45, .06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.lc-fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  border-radius: 14px;
  text-decoration: none;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}
.lc-fixed-btn:active { transform: scale(0.98); }
.lc-fixed-btn .row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.lc-fixed-btn .sub {
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font-body);
}
.lc-fixed-btn--phone {
  background: #fff;
  color: var(--blue-700);
  box-shadow: inset 0 0 0 1.5px var(--blue-500);
}
.lc-fixed-btn--phone .num {
  font-family: var(--font-numeric);
  font-weight: 800;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.lc-fixed-btn--phone .sub { opacity: .85; }
.lc-fixed-btn--line {
  background: var(--line-green);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.lc-fixed-btn--line:hover { background: var(--line-green-600); }
.lc-fixed-btn--line .sub { opacity: .9; }

/* Desktop — the bundle ships a mobile-first design,
   so present it as a centred mobile frame on wide screens. */
@media (min-width: 720px) {
  body { background: #EDF3F9; }
  .lc-page {
    background: var(--bg);
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(15, 27, 45, .08);
    /* `clip` (not `hidden`) — does not create a scroll container,
       so the sticky header keeps working on desktop. */
    overflow: clip;
  }
  .lc-fixed-cta { max-width: 480px; margin: 0 auto; }
}
