/* ============================================================
   classroom LP — Lavender redesign
   Mobile-first (~420px), light & airy aesthetic.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafe;
  --bg-tint: #f3f3fb;
  --bg-wash: #ebecf7;

  --ink: #1a1a28;
  --ink-2: #2a2a3c;
  --ink-soft: #4f4f63;
  --ink-mute: #8b8b9c;
  --line: rgba(26, 26, 40, 0.08);
  --line-2: rgba(26, 26, 40, 0.14);

  --lav: #7b7de5;          /* primary lavender (icons, accents) */
  --lav-deep: #5d5fcc;     /* deeper lavender (CTAs, emphasized text) */
  --lav-soft: #b5b6e8;     /* watermark, soft outline */
  --lav-pale: #eef0fb;     /* background tint */
  --lav-wash: #f7f7fd;     /* very pale */

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --num: "Bebas Neue", "Inter", "Noto Sans JP", sans-serif;
  --script: "Caveat", "Klee One", "Yuji Syuku", cursive;

  --mobile-w: 420px;
  --pad: 24px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 4px 14px -8px rgba(93, 95, 204, 0.18);
  --shadow-md: 0 18px 40px -22px rgba(93, 95, 204, 0.22);
  --shadow-lg: 0 28px 64px -28px rgba(93, 95, 204, 0.32);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #e8e9f2;
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

body {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
main, .site-header, .site-footer {
  background: var(--bg);
}
.page-wrap {
  width: 100%;
  max-width: var(--mobile-w);
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(93, 95, 204, 0.06), 0 30px 80px -30px rgba(93, 95, 204, 0.28);
  position: relative;
  overflow-x: clip;
  padding-bottom: 78px;
}
@media (max-width: 440px) {
  body { background: var(--bg); }
  .page-wrap { box-shadow: none; max-width: 100%; }
}

.container { padding: 0 var(--pad); }

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding: 0 26px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--lav-soft);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

.section-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-title .accent { color: var(--lav-deep); }
.section-title .mark {
  background: linear-gradient(transparent 62%, rgba(123, 125, 229, 0.22) 62%);
  padding: 0 4px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 var(--pad);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: "Inter", var(--sans);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--lav-soft);
  font-weight: 600;
  line-height: 1;
}
.brand-tag {
  font-family: "Inter", var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--lav-soft);
  margin-top: 4px;
  font-weight: 500;
  text-transform: capitalize;
}
.nav-cta {
  background: var(--lav);
  color: white;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 14px -6px rgba(123, 125, 229, 0.55);
}
.nav-cta::before {
  content: "L";
  width: 15px; height: 15px;
  background: white;
  color: var(--lav);
  border-radius: 4px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 9px;
}

/* ============================================================
   HERO — image used as-is
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  padding: 0;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-cta-wrap {
  padding: 28px var(--pad) 36px;
  background: var(--bg);
  text-align: center;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #8a8cf0, #5d5fcc);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 28px -12px rgba(93, 95, 204, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s;
  width: 100%;
}
.hero-cta:hover { transform: translateY(-1px); }
.hero-cta .arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid; place-items: center;
  font-size: 11px;
}
.hero-cta-note {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ============================================================
   Decorative brush strokes (reusable)
   ============================================================ */
.brush-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   PROBLEMS — image-only section
   ============================================================ */
.problems-img,
.manifesto-img {
  background: var(--bg);
  display: block;
}
.problems-img img,
.manifesto-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PROBLEMS — soft cards (legacy, unused)
   ============================================================ */
.problems {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--lav-wash) 100%);
  position: relative;
  overflow: hidden;
}
.problems .lead-q {
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.problems .lead-q em {
  font-style: normal;
  color: var(--lav-deep);
  font-weight: 700;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 26px;
}
.problem-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}
.problem-row .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lav-pale);
  color: var(--lav-deep);
  display: grid;
  place-items: center;
}
.problem-bridge {
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 30px 0 0;
}
.problem-bridge .accent {
  color: var(--lav-deep);
  position: relative;
  display: inline-block;
}
.problem-bridge .accent::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: -2px;
  height: 8px;
  background: rgba(123, 125, 229, 0.22);
  z-index: -1;
}

/* ============================================================
   MANIFESTO — quiet, editorial
   ============================================================ */
.manifesto {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--lav-soft);
  opacity: 0.5;
  margin-bottom: -28px;
}
.manifesto h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  color: var(--ink);
}
.manifesto h2 .em {
  color: var(--lav-deep);
  position: relative;
}
.manifesto h2 .script {
  font-family: var(--script);
  font-weight: 600;
  color: var(--lav-deep);
  font-size: 1.3em;
  line-height: 1;
  display: inline-block;
  padding: 0 8px;
}
.manifesto .body {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 2.1;
  text-align: left;
}
.manifesto .body p { margin: 0 0 16px; }
.manifesto .sign {
  margin-top: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.manifesto .sign .ja {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.manifesto .sign .en {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--lav-deep);
}

/* ============================================================
   FEATURES / WHY classroom
   ============================================================ */
.features {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--lav-wash) 0%, #ffffff 100%);
  position: relative;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(123, 125, 229, 0.12), transparent 70%);
}
.feature .num {
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature .num::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--lav);
}
.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a8cf0, #5d5fcc);
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -8px rgba(93, 95, 204, 0.5);
}
.feature h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  color: var(--ink);
}
.feature h3 .em {
  color: var(--lav-deep);
}
.feature p {
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   SERVICES — what's included
   ============================================================ */
.services {
  padding: 72px 0;
  background: var(--bg);
}
.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.svc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.svc-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lav-pale);
  color: var(--lav-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.svc-card .num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--lav-soft);
  font-weight: 600;
}
.svc-card h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.svc-card p {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap {
  padding: 72px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--lav-wash) 100%);
  position: relative;
}
.steps {
  position: relative;
  padding-left: 24px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 11px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--lav-soft), transparent);
}
.step {
  position: relative;
  padding: 0 0 28px 24px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: -19px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--lav);
  box-shadow: 0 0 0 4px rgba(123, 125, 229, 0.12);
}
.step .n {
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.step .t {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.03em;
}
.step .d {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   RESULTS / VOICE
   ============================================================ */
.results {
  padding: 72px 0;
  background: var(--bg);
}
.bignums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.bignum {
  text-align: center;
  background: var(--lav-wash);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 8px 14px;
}
.bignum .v {
  font-family: var(--num);
  font-size: 30px;
  line-height: 1;
  color: var(--lav-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}
.bignum .v .u {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--lav);
}
.bignum .l {
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 8px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.sub-label {
  text-align: center;
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--lav-deep);
  font-weight: 600;
  margin: 28px 0 22px;
}

.voices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice-card .q {
  position: absolute;
  top: 6px; right: 16px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--lav-soft);
  opacity: 0.5;
}
.voice-card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.voice-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b5b6e8, #7b7de5);
  color: white;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}
.voice-card .who {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}
.voice-card .who small {
  display: block;
  font-size: 10.5px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.voice-card .result {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--lav-deep);
  margin: 0 0 8px;
  line-height: 1.55;
}
.voice-card .txt {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--lav-wash) 0%, #ffffff 100%);
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(123, 125, 229, 0.18), transparent 70%);
}
.price-card .plan {
  text-align: center;
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.price-card .price {
  text-align: center;
  font-family: var(--num);
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-card .price .yen {
  font-size: 24px;
  color: var(--lav-deep);
  margin-right: 4px;
  vertical-align: 4px;
}
.price-card .tax {
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.price-card li {
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  line-height: 1.7;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lav-pale);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-7' fill='none' stroke='%235d5fcc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
.price-card .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(180deg, #8a8cf0, #5d5fcc);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 28px -12px rgba(93, 95, 204, 0.55);
}
.price-card .cta .arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid; place-items: center;
  font-size: 11px;
}
.price-card .micro {
  text-align: center;
  font-size: 10.5px;
  color: var(--ink-mute);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ============================================================
   PROFILE
   ============================================================ */
.profile {
  padding: 72px 0;
  background: var(--bg);
}
.profile .ph {
  margin: 0 calc(var(--pad) * -1) 28px;
  background: linear-gradient(160deg, var(--lav-pale), var(--lav-wash));
  height: 360px;
  position: relative;
  overflow: hidden;
}
.profile .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.profile .ph .nametag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: white;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.profile .ph .nametag .ja {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.profile .ph .nametag .en {
  font-family: var(--num);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--lav-deep);
  margin-top: 4px;
}
.profile h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  color: var(--ink);
}
.profile h3 .em { color: var(--lav-deep); }
.profile p.bio {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.profile .credits {
  background: var(--lav-wash);
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.profile .credits .lbl {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.profile .credits .row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile .credits .tag {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 72px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--lav-wash) 100%);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lav-pale);
  color: var(--lav-deep);
  font-family: var(--num);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--lav-deep);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a {
  padding: 0 20px 18px 60px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #6a6cd8 0%, #5d5fcc 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}
.final::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}
.final .container { position: relative; z-index: 2; }
.final .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.final .eyebrow::before,
.final .eyebrow::after {
  background: rgba(255, 255, 255, 0.5);
}
.final h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  margin: 0 0 22px;
  color: white;
}
.final .body {
  font-size: 13.5px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 32px;
}
.final .cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 26px;
  background: white;
  color: var(--lav-deep);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 38px -14px rgba(0, 0, 0, 0.35);
  width: 100%;
}
.final .cta-main .ico {
  width: 22px; height: 22px;
  background: #06c755;
  color: white;
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 12px;
}
.final .cta-main .arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lav-pale);
  display: grid; place-items: center;
  font-size: 12px;
  margin-left: auto;
}
.final .micro {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 32px var(--pad) 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer .brand {
  align-items: center;
  margin-bottom: 14px;
}
.site-footer .brand-name {
  color: var(--lav-deep);
}
.site-footer small {
  display: block;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* ============================================================
   STICKY BOTTOM CTA
   ============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--mobile-w);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -10px 28px -16px rgba(93, 95, 204, 0.25);
}
.bottom-bar .info {
  flex: 1;
  font-size: 10.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.bottom-bar .info b {
  display: block;
  color: var(--lav-deep);
  font-size: 11.5px;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}
.bottom-bar .bar-cta {
  background: linear-gradient(180deg, #8a8cf0, #5d5fcc);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(93, 95, 204, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bottom-bar .bar-cta::before {
  content: "L";
  width: 15px; height: 15px;
  background: white;
  color: var(--lav-deep);
  border-radius: 4px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 9px;
}
