/* ========================================================
   Luminas AI — Minimal Aesthetic System
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-elevated: #0a0a0f;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #e8e8ed;
  --text-dim: #8b8b96;
  --text-muted: #56565e;
  --white: #ffffff;
  --accent: #c8a2ff;
  --accent-dim: rgba(200, 162, 255, 0.12);
  --accent-glow: rgba(200, 162, 255, 0.06);
  --warm: #ffcb8a;
  --warm-dim: rgba(255, 203, 138, 0.10);
  --success: #7aefb0;
  --error: #ff8a8a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }

::selection {
  background: var(--accent-dim);
  color: var(--white);
}

/* ---- Ambient background ---- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: drift 20s ease-in-out infinite alternate;
}

.ambient::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--warm-dim) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---- Layout ---- */
.page {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  background: rgba(5, 5, 7, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.nav__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-dim);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 200ms var(--ease);
}

.nav__link:hover { color: var(--white); }

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-hover);
  color: var(--white);
  background: transparent;
  transition: all 200ms var(--ease);
}

.nav__cta:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ---- Hero ---- */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 250ms var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--white);
  color: var(--bg);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: var(--border-hover);
  background: var(--surface);
}

.btn--full { width: 100%; }

.btn--sm {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ---- Stats row ---- */
.stats {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Section system ---- */
.section {
  padding: 96px 0;
}

.section--sm { padding: 64px 0; }

.section__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: 48px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 300ms var(--ease);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}

.card__number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---- Grid system ---- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Offer block ---- */
.offer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.offer__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer__price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.offer__note {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 12px 0 28px;
}

.offer__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 32px;
}

.offer__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.offer__feature::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.offer__guarantee {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.offer__guarantee-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 8px;
}

.offer__guarantee-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 200ms var(--ease);
}

.faq__trigger:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 16px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  transition: transform 300ms var(--ease);
}

.faq__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---- Booking embed ---- */
.booking {
  padding: 96px 0;
}

.booking__embed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
}

.booking-portal-shell {
  display: grid;
  gap: 16px;
}

.booking-portal-bar {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.booking-portal-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Cal.com embed styling */
.booking__embed iframe {
  width: 100%;
  min-height: 880px;
  border: none;
  background: #fff;
}

/* Native scheduler fallback styles */
.booking__native {
  padding: 32px;
}

.calendar-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.calendar-panel,
.times-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-month-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.calendar-timezone {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms var(--ease);
}

.calendar-nav:hover {
  border-color: var(--accent);
  color: var(--white);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 6px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 200ms var(--ease);
}

.calendar-day:hover:not(.disabled):not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--white);
}

.calendar-day.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--white);
}

.calendar-day.disabled,
.calendar-day:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-day-empty {
  aspect-ratio: 1;
}

.times-head {
  margin-bottom: 12px;
}

.times-head .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.times-head h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.times-grid,
.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.slot-btn {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: all 200ms var(--ease);
}

.time-btn { text-align: center; }

.slot-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.slot-btn.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--white);
}

.times-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 0;
}

.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.slot-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.slot-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.booking-meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.booking-duration-picker {
  min-width: 200px;
}

.booking-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 420px;
}

.booking-result {
  margin-top: 8px;
}

.booking-confirmation {
  background: rgba(122, 239, 176, 0.06);
  border: 1px solid rgba(122, 239, 176, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-confirmation p { margin-bottom: 6px; }
.booking-confirmation strong { color: var(--white); }
.booking-confirmation a { color: var(--accent); text-decoration: underline; }

/* ---- Form ---- */
.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 6px;
}

.form label > span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  transition: all 200ms var(--ease);
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  font-size: 0.85rem;
  color: var(--text-dim);
  min-height: 20px;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* ---- Fit section ---- */
.fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fit__col-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.fit__list {
  display: grid;
  gap: 10px;
}

.fit__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.fit__item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
}

.fit__col--yes .fit__item::before { background: var(--success); }
.fit__col--no .fit__item::before { background: var(--error); opacity: 0.6; }

/* ---- CTA block ---- */
.cta-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cta-block__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-block__sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.footer__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 200ms var(--ease);
}

.footer__link:hover { color: var(--text); }

/* ---- Lead form section ---- */
.lead-section .card {
  max-width: 680px;
  margin: 0 auto;
}

/* ---- Legal page styles ---- */
body.legal {
  padding: 0;
}

.legal-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-shell h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.legal-shell h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 32px 0 12px;
}

.legal-shell h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 8px;
}

.legal-shell p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-shell ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.legal-shell li {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 6px;
}

.legal-shell a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}

.legal-shell th,
.legal-shell td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
}

.legal-shell th {
  background: var(--surface);
  color: var(--white);
  font-weight: 600;
}

.legal-shell td { color: var(--text-dim); }

.legal-shell hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.legal-shell code {
  font-size: 0.85em;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
}

/* legal page header/footer */
body.legal .topbar {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px;
}

body.legal .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
}

body.legal .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

body.legal .site-footer {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

body.legal .site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

body.legal .site-footer a:hover { color: var(--text); }

/* ---- Compact hero for sub-pages ---- */
.hero--compact {
  padding: 64px 0 40px;
}

/* Backwards compat aliases */
.eyebrow { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav__links a:not(.nav__cta) { display: none; }

  .hero { padding: 80px 0 48px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .offer { padding: 32px 20px; }
  .offer__features { grid-template-columns: 1fr; }

  .fit__grid { grid-template-columns: 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }

  .calendar-shell { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }

  .cta-block { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 32px; }
  .card { padding: 24px; }
  .offer { padding: 24px 16px; }
}
