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

:root {
  --ink: #09090b;
  --bg: #fafafa;
  --white: #ffffff;
  --muted: #71717a;
  --border: #e4e4e7;
  --p: #4f46e5;
  /* indigo */
  --p2: #7c3aed;
  /* violet */
  --g1: #2563eb;
  /* gen1 blue */
  --g2: #7c3aed;
  /* gen2 purple */
  --g3: #059669;
  /* gen3 green */
  --r: #dc2626;
  --y: #ca8a04;
  --shadow: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-dark: rgba(9, 9, 11, 0.85);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 3rem);
  height: 60px;
}

.nlogo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nlogo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--p), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
}

.nlogo-text {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
}

.nlinks {
  display: flex;
  gap: 2rem;
}

.nlinks a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  transition: color .15s;
}

.nlinks a:hover {
  color: var(--ink);
}

.ncta {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: .45rem 1.25rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  letter-spacing: -.01em;
}

.ncta:hover {
  opacity: .8;
}

/* ── HERO / QUIZ ── */
#hero {
  padding: 80px clamp(1rem, 5vw, 4rem) 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(79, 70, 229, .2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(124, 58, 237, .15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(5, 150, 105, .12) 0%, transparent 50%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  width: 100%;
}

/* hero before quiz starts */
.hero-pre {
  padding-bottom: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}

.h1-em {
  background: linear-gradient(90deg, #a5b4fc, #c4b5fd, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  color: rgba(255, 255, 255, .55);
  font-size: clamp(.88rem, 2vw, 1rem);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-lead strong {
  color: rgba(255, 255, 255, .85);
}

.hb-main {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .9rem 2.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  letter-spacing: -.02em;
}

.hb-main:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.hb-main-note {
  display: block;
  margin-top: .75rem;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
}

/* ── QUIZ CARD ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

#quiz-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  width: 100%;
  display: none;
  backdrop-filter: blur(12px);
}

#quiz-card.active {
  display: block;
  animation: fadeUp .32s ease;
}

/* header row */
.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.q-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .35);
  font-size: .78rem;
  cursor: pointer;
  padding: .25rem 0;
  font-family: inherit;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.q-back:hover {
  color: rgba(255, 255, 255, .7);
}

.q-back[disabled] {
  opacity: 0;
  pointer-events: none;
}

/* breadcrumb dots */
.q-path {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.qp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  transition: background .2s;
}

.qp-dot.done {
  background: rgba(99, 102, 241, .7);
}

.qp-dot.current {
  background: #fff;
  width: 9px;
  height: 9px;
}

/* type badge */
.q-type {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .65rem;
}

.qt-yn {
  color: #86efac;
}

.qt-choice {
  color: #93c5fd;
}

.qt-free {
  color: #fcd34d;
}

.quiz-q-text {
  font-size: clamp(.95rem, 2.8vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

/* YES / NO */
.yn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .5rem;
}

.yn-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  font-weight: 700;
  transition: all .15s;
}

.yn-btn:hover {
  transform: translateY(-2px);
}

.yn-yes {
  border-color: rgba(52, 211, 153, .25);
}

.yn-yes:hover {
  background: rgba(52, 211, 153, .15);
  border-color: rgba(52, 211, 153, .5);
  color: #6ee7b7;
}

.yn-no {
  border-color: rgba(239, 68, 68, .2);
}

.yn-no:hover {
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .4);
  color: #fca5a5;
}

.yn-icon {
  font-size: 1.6rem;
}

.yn-hint {
  font-size: .65rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 400;
  text-align: center;
  margin-top: .5rem;
}

/* 4-CHOICE */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.qopt {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: .85rem 1rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background .15s, border-color .15s, transform .1s;
  color: #fff;
  font-family: inherit;
}

.qopt:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .22);
  transform: translateX(2px);
}

.qopt.selected {
  background: rgba(99, 102, 241, .2);
  border-color: rgba(99, 102, 241, .55);
}

.qopt-letter {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: .05rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .45);
  transition: all .15s;
}

.qopt.selected .qopt-letter {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
}

.qopt-text {
  font-size: .84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
}

.qopt.selected .qopt-text {
  color: #fff;
}

.quiz-next {
  width: 100%;
  margin-top: 1rem;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .75rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .15s;
  font-family: inherit;
  opacity: .35;
  pointer-events: none;
}

.quiz-next.on {
  opacity: 1;
  pointer-events: all;
}

.quiz-next.on:hover {
  opacity: .85;
}

/* FREE TEXT */
.free-wrap {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.free-textarea {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  font-size: .88rem;
  line-height: 1.7;
  font-family: inherit;
  resize: none;
  min-height: 100px;
  outline: none;
  transition: border-color .15s;
}

.free-textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.free-textarea:focus {
  border-color: rgba(255, 255, 255, .4);
}

.free-note {
  font-size: .68rem;
  color: rgba(255, 255, 255, .3);
}

.free-submit {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .75rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}

.free-submit:hover {
  opacity: .85;
}

.free-skip {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .3);
  font-size: .75rem;
  cursor: pointer;
  font-family: inherit;
  margin-top: .25rem;
}

.free-skip:hover {
  color: rgba(255, 255, 255, .6);
}

/* ── RESULT CARD ── */
#result-card {
  display: none;
  width: 100%;
}

#result-card.active {
  display: block;
  animation: fadeUp .4s ease;
}

.r-stage-bar {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}

.rsb-seg {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, .1);
}

.rsb-seg.lit {
  background: linear-gradient(90deg, #818cf8, #34d399);
}

.r-gen-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 6px;
  padding: .35rem .85rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.rgt-pre {
  background: rgba(107, 114, 128, .2);
  border: 1px solid rgba(107, 114, 128, .3);
  color: #9ca3af;
}

.rgt-1 {
  background: rgba(96, 165, 250, .15);
  border: 1px solid rgba(96, 165, 250, .3);
  color: #93c5fd;
}

.rgt-1h {
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(99, 102, 241, .3);
  color: #a5b4fc;
}

.rgt-2 {
  background: rgba(168, 85, 247, .15);
  border: 1px solid rgba(168, 85, 247, .3);
  color: #d8b4fe;
}

.rgt-2h {
  background: rgba(217, 119, 6, .15);
  border: 1px solid rgba(217, 119, 6, .3);
  color: #fcd34d;
}

.rgt-3 {
  background: rgba(52, 211, 153, .15);
  border: 1px solid rgba(52, 211, 153, .3);
  color: #6ee7b7;
}

.r-title {
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.r-state-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: .6rem;
}

.r-state {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  text-align: left;
}

.r-state strong {
  color: rgba(255, 255, 255, .9);
}

.r-rec {
  background: rgba(99, 102, 241, .12);
  border: 1px solid rgba(99, 102, 241, .3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.r-rec-lbl {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(99, 102, 241, .7);
  margin-bottom: .5rem;
}

.r-rec-title {
  font-size: .95rem;
  font-weight: 800;
  color: #c7d2fe;
  margin-bottom: .25rem;
}

.r-rec-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
}

.r-free-echo {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  font-style: italic;
  display: none;
}

.r-btns {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.rb-cta {
  flex: 2;
  min-width: 140px;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}

.rb-cta:hover {
  opacity: .9;
}

.rb-retry {
  flex: 1;
  min-width: 110px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .13);
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.rb-retry:hover {
  background: rgba(255, 255, 255, .13);
}

/* hb-sub remains for scroll */
.hb-sub {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .8rem 2rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  margin-top: .75rem;
}

.hb-sub:hover {
  background: rgba(255, 255, 255, .15);
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hs-dot-1 {
  background: #60a5fa;
}

.hs-dot-2 {
  background: #c084fc;
}

.hs-dot-3 {
  background: #34d399;
}

/* ── TROUBLE (共感セクション) ── */
#trouble {
  background: var(--white);
  padding: 5rem clamp(1rem, 5vw, 4rem);
}

.trouble-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.trouble-inner .stag {
  color: var(--muted);
}

.trouble-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.trouble-inner p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: left;
}

.tg-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
}

.tg-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.tg-text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.tg-text strong {
  color: var(--ink);
  display: block;
  font-size: .88rem;
  margin-bottom: .2rem;
}

.trouble-arrow {
  font-size: 1.8rem;
  color: var(--p);
  margin: 2rem auto .5rem;
  text-align: center;
}

.trouble-sol {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--p);
  letter-spacing: -.02em;
}

/* ── SECTION BASE ── */
.stag {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}

.sh {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.sp {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  max-width: 540px;
}

section {
  padding: 5rem clamp(1rem, 5vw, 4rem);
}

.container {
  max-width: 1060px;
  margin: 0 auto;
}

/* ── ROADMAP ── */
#roadmap {
  background: var(--ink);
}

#roadmap .stag {
  color: #4b5563;
}

#roadmap .sh {
  color: #fff;
}

#roadmap .sp {
  color: #6b7280;
}

.rm-wrap {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1f2937;
  border: 1px solid #1f2937;
  border-radius: 16px;
  overflow: hidden;
}

.rm-row {
  background: var(--ink);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: stretch;
  transition: background .2s;
}

.rm-row:hover {
  background: #0f1117;
}

.rm-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid #1f2937;
  position: relative;
}

.rm-gen-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: .25rem;
  opacity: .12;
}

.rm-row:nth-child(1) .rm-gen-num {
  color: #60a5fa;
}

.rm-row:nth-child(2) .rm-gen-num {
  color: #c084fc;
}

.rm-row:nth-child(3) .rm-gen-num {
  color: #34d399;
}

.rm-gen-label {
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rm-row:nth-child(1) .rm-gen-label {
  color: #3b82f6;
}

.rm-row:nth-child(2) .rm-gen-label {
  color: #a855f7;
}

.rm-row:nth-child(3) .rm-gen-label {
  color: #10b981;
}

.rm-mid {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
}

.rm-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: -.03em;
}

.rm-desc {
  font-size: .85rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.rm-chip {
  font-size: .63rem;
  font-weight: 600;
  background: #18181b;
  border: 1px solid #27272a;
  color: #6b7280;
  padding: .2rem .6rem;
  border-radius: 5px;
}

.rm-right {
  padding: 2.5rem 2rem;
  border-left: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.rm-icon {
  font-size: 2.8rem;
  margin-bottom: .5rem;
}

.rm-who {
  font-size: .72rem;
  font-weight: 700;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

.rm-row:nth-child(1) .rm-who span {
  color: #60a5fa;
}

.rm-row:nth-child(2) .rm-who span {
  color: #c084fc;
}

.rm-row:nth-child(3) .rm-who span {
  color: #34d399;
}

/* ── WHY CLAUDE ── */
#why {
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-label {
  display: inline-block;
  background: #eef2ff;
  color: var(--p);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}

.why-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  line-height: 1.6;
}

.wl-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.wl-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .1rem;
}

.wl-text span {
  color: var(--muted);
  font-size: .8rem;
}

.why-visual {
  background: var(--ink);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.wv-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(79, 70, 229, .2), transparent);
}

.wv-label {
  color: #6b7280;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.wv-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .5rem;
  position: relative;
}

.wv-sub {
  color: #9ca3af;
  font-size: .8rem;
  line-height: 1.7;
  position: relative;
  margin-bottom: 1.5rem;
}

.wv-tools {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}

.wv-tool {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: .7rem 1rem;
}

.wv-tool-icon {
  font-size: 1.1rem;
}

.wv-tool-name {
  font-size: .8rem;
  font-weight: 700;
  color: #e5e7eb;
}

.wv-tool-desc {
  font-size: .7rem;
  color: #6b7280;
  margin-left: auto;
}

.wv-tool.highlight {
  border-color: rgba(99, 102, 241, .4);
  background: rgba(99, 102, 241, .1);
}

.wv-tool.highlight .wv-tool-name {
  color: #a5b4fc;
}

/* ── COURSES ── */
#courses {
  background: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.cc {
  background: var(--white);
  padding: 2rem;
  transition: background .15s;
  position: relative;
}

.cc:hover {
  background: #fafafa;
}

.cc-flag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .2rem .55rem;
  border-radius: 3px;
}

.flag-hot {
  background: #fef9c3;
  color: #854d0e;
}

.flag-new {
  background: #dcfce7;
  color: #166534;
}

.cc-icon {
  font-size: 1.8rem;
  margin-bottom: .75rem;
}

.cc-cat {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}

.cc-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}

.cc-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.25rem;
}

.ct {
  font-size: .63rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: .15rem .5rem;
  border-radius: 4px;
}

.cc-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: .6rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  letter-spacing: -.01em;
}

.cc-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cc.dark {
  background: var(--ink);
}

.cc.dark:hover {
  background: #0f1117;
}

.cc.dark .cc-cat,
.cc.dark .cc-desc {
  color: #6b7280;
}

.cc.dark .cc-title {
  color: #fff;
}

.cc.dark .ct {
  background: #18181b;
  border-color: #27272a;
  color: #6b7280;
}

.cc.dark .cc-btn {
  border-color: rgba(255, 255, 255, .15);
  color: #e5e7eb;
}

.cc.dark .cc-btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ── BOOKING ── */
#booking {
  background: var(--bg);
}

.booking-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.bi-left h3 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.bi-left p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.8;
}

.bi-right {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bkc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color .2s;
}

.bkc:hover {
  border-color: var(--p);
}

.bkc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}

.bkc-title {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.bkc-tag {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .2rem .55rem;
  border-radius: 4px;
}

.bt-r {
  background: #fee2e2;
  color: var(--r);
}

.bt-o {
  background: #fff7ed;
  color: #c2410c;
}

.bt-b {
  background: #eff6ff;
  color: #1d4ed8;
}

.bkc-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}

.bar-bg {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.bf-r {
  background: linear-gradient(90deg, #fbbf24, #ef4444);
}

.bf-o {
  background: linear-gradient(90deg, #fb923c, #f97316);
}

.bf-b {
  background: linear-gradient(90deg, #818cf8, #38bdf8);
}

.bar-pct {
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.pct-r {
  color: var(--r);
}

.pct-o {
  color: #c2410c;
}

.pct-b {
  color: #1d4ed8;
}

.bkc-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: .55rem;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}

.bkc-btn:hover {
  border-color: var(--p);
  color: var(--p);
}

.urgency {
  font-size: .63rem;
  color: var(--r);
  font-weight: 700;
  margin-top: .35rem;
  display: block;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ── GEN2 ── */
#gen2 {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.g2-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(5, 150, 105, .15), transparent);
}

.g2-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.g2-left .stag {
  color: #4b5563;
}

.g2-left .sh {
  color: #fff;
}

.g2-left .sp {
  color: #9ca3af;
}

.g2-lead {
  color: #9ca3af;
  font-size: .9rem;
  line-height: 1.9;
  margin-top: 1.25rem;
}

.g2-lead strong {
  color: #e5e7eb;
}

.g2-cta {
  margin-top: 2rem;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .85rem 2rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .15s;
  letter-spacing: -.02em;
}

.g2-cta:hover {
  opacity: .9;
}

.g2-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
}

.g2-card-top {
  padding: 1.75rem;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.g2-early {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: .4rem;
}

.g2-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.05em;
}

.g2-note {
  font-size: .75rem;
  color: #6b7280;
  margin-top: .2rem;
}

.g2-card-body {
  padding: 1.75rem;
}

.g2-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.g2-feats li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: #d1d5db;
}

.g2-feats li::before {
  content: '✓';
  color: #34d399;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05rem;
}

.g2-timer {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
}

.g2-tlabel {
  font-size: .6rem;
  color: #fca5a5;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.g2-trow {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.g2-tu {
  text-align: center;
}

.g2-tn {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: -.04em;
}

.g2-tl {
  font-size: .53rem;
  color: #6b7280;
  letter-spacing: .06em;
}

.g2-card-cta {
  width: 100%;
  margin-top: 1.25rem;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: .75rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .15s;
}

.g2-card-cta:hover {
  opacity: .9;
}

/* ── FAQ ── */
#faq {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 3rem;
}

.fi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.fi:hover {
  border-color: var(--p);
}

.fi-q {
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.fi-ico {
  color: var(--p);
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform .2s;
}

.fi.open .fi-ico {
  transform: rotate(45deg);
}

.fi-a {
  max-height: 0;
  overflow: hidden;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.75;
  transition: max-height .3s, padding .3s;
  padding: 0 1.25rem;
}

.fi.open .fi-a {
  max-height: 200px;
  padding: .1rem 1.25rem 1.1rem;
}

/* ── CTA SECTION ── */
#cta {
  background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
  padding: 5rem clamp(1rem, 5vw, 4rem);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: .75rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ctab1 {
  background: #fff;
  color: var(--p);
  border: none;
  padding: .9rem 2.2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -.02em;
}

.ctab2 {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: .9rem 2.2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #fff;
  padding: 3rem clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #18181b;
}

.flogo {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.flogo span {
  color: #818cf8;
}

.fcopy {
  color: #3f3f46;
  font-size: .75rem;
  margin-top: .35rem;
}

.flinks {
  display: flex;
  gap: 1.5rem;
}

.flinks a {
  color: #6b7280;
  text-decoration: none;
  font-size: .78rem;
  transition: color .15s;
}

.flinks a:hover {
  color: #fff;
}

/* ── CHAT ── */
#cfab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  transition: transform .15s, box-shadow .15s;
}

#cfab:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .5);
}

.cfdot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid var(--bg);
}

#cbox {
  position: fixed;
  bottom: 5rem;
  right: 1.75rem;
  z-index: 200;
  width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  transform: scale(0) translateY(12px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), opacity .2s;
}

#cbox.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ch {
  background: var(--ink);
  padding: .9rem 1.2rem;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.chav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chnm {
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: -.01em;
}

.chst {
  color: #6b7280;
  font-size: .63rem;
}

.chx {
  margin-left: auto;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
}

.cmsgs {
  flex: 1;
  max-height: 260px;
  overflow-y: auto;
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.cm {
  max-width: 88%;
  padding: .55rem .8rem;
  border-radius: 10px;
  font-size: .78rem;
  line-height: 1.55;
}

.cm-b {
  background: #f4f4f5;
  color: var(--ink);
  align-self: flex-start;
  border-radius: 3px 10px 10px 10px;
}

.cm-u {
  background: var(--ink);
  color: #fff;
  align-self: flex-end;
  border-radius: 10px 10px 3px 10px;
}

.cqs {
  padding: .5rem .75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.cq {
  font-size: .65rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  padding: .25rem .55rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .15s;
}

.cq:hover {
  border-color: var(--p);
  color: var(--p);
}

.cir {
  display: flex;
  gap: .4rem;
  padding: .6rem;
  border-top: 1px solid var(--border);
}

.ci {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .45rem .75rem;
  font-size: .78rem;
  outline: none;
  font-family: inherit;
}

.ci:focus {
  border-color: var(--ink);
}

.cs {
  background: var(--ink);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MODAL ── */
#mov {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(9, 9, 11, .4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

#mov.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(20px);
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, .18), 0 18px 36px -18px rgba(0, 0, 0, .15), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

#mov.open .modal {
  transform: scale(1) translateY(0);
}

.mt {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, var(--ink), var(--p));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ms {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.fg {
  margin-bottom: 1.25rem;
  position: relative;
}

.fg label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .5rem;
  margin-left: .25rem;
  transition: color .2s;
}

.fg:focus-within label {
  color: var(--p);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: .85rem 1.1rem;
  font-size: .92rem;
  outline: none;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  background: #f8fafc;
  color: var(--ink);
}

.fg input::placeholder {
  color: #94a3b8;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--p);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .1), 0 2px 4px rgba(0, 0, 0, .05);
  transform: translateY(-1px);
}

.fg textarea {
  min-height: 90px;
  resize: vertical;
}

.mbtns {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.mcan {
  flex: 1;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: .85rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .2s;
}

.mcan:hover {
  background: #e2e8f0;
  color: var(--ink);
}

.msub {
  flex: 2;
  background: linear-gradient(135deg, var(--p) 0%, var(--p2) 100%);
  border: none;
  color: #fff;
  padding: .85rem;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  letter-spacing: -.01em;
  box-shadow: 0 4px 12px rgba(79, 70, 229, .3);
}

.msub:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, .4);
  filter: brightness(1.05);
}

.msub:active {
  transform: translateY(0);
}

.mcls {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
}

.mcls:hover {
  background: #e2e8f0;
  color: var(--ink);
  transform: rotate(90deg);
}


/* ── DYNAMIC LP SECTIONS ── */
#dynamic-lp-container {
  overflow: hidden;
}

.dynamic-section {
  min-height: 100vh;
  padding: 8rem clamp(1rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.dynamic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.dynamic-section.dark::before {
  background: rgba(9, 9, 11, 0.94);
}

.dynamic-section>.container {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── AI MESSAGE FIXED ── */
#ai-msg-fixed {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  z-index: 150;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}

#ai-msg-fixed.active {
  opacity: 1;
  pointer-events: all;
}

.ai-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ai-avatar {
  font-size: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--p2));
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.ai-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
}

.ai-text strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--p);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* RESET BUTTON */
.reset-btn-wrap {
  margin-top: 4rem;
  text-align: center;
}

.reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.reset-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media(max-width:1150px) {
  #ai-msg-fixed {
    position: fixed;
    bottom: 2rem;
    top: auto;
    right: 1.5rem;
    left: 1.5rem;
    width: auto;
    transform: translateY(0);
    pointer-events: none;
  }

  .ai-bubble {
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  }
}

@media(max-width:768px) {
  .nlinks {
    display: none;
  }

  .rm-row {
    grid-template-columns: 80px 1fr;
  }

  .rm-right {
    display: none;
  }

  .why-inner,
  .g2-inner,
  .booking-intro {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  #cbox {
    width: calc(100vw - 2rem);
    right: 1rem;
  }

  footer {
    grid-template-columns: 1fr;
  }
}