/* ============================================================
   Stayabl — Marketing site
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --primary:       #1a5f7a;
  --primary-dark:  #124656;
  --primary-darker:#0d3542;
  --primary-light: #e8f4f8;
  --secondary:     #57c5b6;
  --secondary-dark:#3aa99a;
  --accent:        #e8a838;
  --accent-dark:   #c98d20;

  --ink:           #0f2a35;
  --text:          #22333b;
  --text-muted:    #5a6b73;
  --text-light:    #8797a0;

  --bg:            #ffffff;
  --bg-soft:       #f4f8fa;
  --bg-tint:       #eef6f8;
  --surface:       #ffffff;
  --border:        #e3ebef;
  --border-strong: #cfdbe1;

  --success:       #16a34a;
  --success-bg:    #f0fdf4;
  --success-bdr:   #bbf7d0;
  --error:         #dc2626;
  --error-bg:      #fef2f2;
  --error-bdr:     #fecaca;

  --radius-xl:  28px;
  --radius-lg:  20px;
  --radius:     14px;
  --radius-sm:  10px;

  --shadow-sm: 0 1px 2px rgba(15,42,53,0.06);
  --shadow:    0 6px 20px rgba(15,42,53,0.08);
  --shadow-md: 0 14px 40px rgba(15,42,53,0.10);
  --shadow-lg: 0 30px 70px rgba(15,42,53,0.16);

  --container: 1160px;
  --nav-h: 74px;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-dark); }

img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s, background .15s, border-color .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(26,95,122,0.25);
}
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26,95,122,0.32); }

.btn--accent {
  background: var(--accent);
  color: #4a2f00;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(232,168,56,0.3);
}
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #4a2f00; transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--bg-tint); color: var(--primary-dark); }

.btn--outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--primary); background: var(--bg-tint); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn--light:hover { background: var(--bg-tint); color: var(--primary-dark); transform: translateY(-2px); }

.btn--lg { padding: 0.95rem 2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(15,42,53,0.05);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav-brand:hover { color: var(--ink); }
.nav-brand span { line-height: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 99px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-link:hover { color: var(--ink); background: var(--bg-tint); }
.nav-link.is-active { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 5.5rem 0; }
.section--tint { background: var(--bg-soft); }
.section--tight { padding: 4rem 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  background: var(--bg-tint);
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(87,197,182,0.16), transparent 60%),
    radial-gradient(900px 460px at 0% 10%, rgba(26,95,122,0.10), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.45rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1.35rem;
}
.hero h1 .accent { color: var(--primary); position: relative; }

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-reassure {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-reassure svg { width: 18px; height: 18px; color: var(--secondary-dark); }

/* Hero image placeholder */
.hero-visual { position: relative; }

/* Hero property gallery (rotating) */
.hero-gallery {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(26,95,122,0.92), rgba(87,197,182,0.92));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

.hero-image-placeholder {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(26,95,122,0.92), rgba(87,197,182,0.92));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
  z-index: -1;
}
.hero-image-placeholder .ph-inner {
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-image-placeholder .ph-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder .ph-icon svg { width: 34px; height: 34px; color: #fff; }
.hero-image-placeholder .ph-label { font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; }
.hero-image-placeholder .ph-sub { font-size: 0.8125rem; opacity: 0.82; margin-top: 0.25rem; }

/* Floating stat chips on hero image */
.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-chip .chip-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-chip .chip-icon svg { width: 20px; height: 20px; }
.hero-chip .chip-title { font-size: 0.9375rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.hero-chip .chip-sub { font-size: 0.75rem; color: var(--text-muted); }
.hero-chip--tl { top: 1.25rem; left: -1.25rem; }
.hero-chip--br { bottom: 1.5rem; right: -1.25rem; }
.chip-icon--green { background: #dcfce7; color: #15803d; }
.chip-icon--amber { background: #fef3c7; color: #b45309; }

/* Logo / trust strip */
.trust {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
}
.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0.55rem 1.05rem;
  border-radius: 99px;
  font-size: 0.9375rem;
}
.trust-pill svg { width: 20px; height: 20px; color: var(--secondary-dark); }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.icon--teal   { background: #ccfbf1; color: #0d9488; }
.icon--blue   { background: #dbeafe; color: #1d4ed8; }
.icon--amber  { background: #fef3c7; color: #b45309; }
.icon--purple { background: #ede9fe; color: #6d28d9; }
.icon--rose   { background: #ffe4e6; color: #be123c; }
.icon--green  { background: #dcfce7; color: #15803d; }

.feature-card h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 0.5rem;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(26,95,122,0.25);
}
.step h3 { font-size: 1.125rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.9375rem; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 58px;
  right: -0.75rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 7px, transparent 7px 14px);
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-card .a-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: var(--bg-tint); color: var(--primary);
}
.audience-card .a-icon svg { width: 28px; height: 28px; }
.audience-card h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; color: var(--ink); }
.audience-card p { font-size: 0.875rem; color: var(--text-muted); }
.audience-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
}
.audience-card:hover .audience-more { color: var(--primary-dark); }

/* ============================================================
   SHOWCASE (alternating feature rows)
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.showcase + .showcase { margin-top: 5rem; }
.showcase--flip .showcase-media { order: -1; }

.showcase-body .eyebrow { margin-bottom: 1rem; }
.showcase-body h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.showcase-body > p { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 1.5rem; }

.check-list { display: grid; gap: 0.85rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9875rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  color: var(--secondary-dark);
}

/* Showcase media placeholder */
.showcase-media {
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
}
.mockup {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.mockup-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-bar .m-title { margin-left: 0.6rem; font-size: 0.75rem; font-weight: 700; color: var(--text-light); }
.mockup-body { padding: 1.1rem; }

/* Calendar mock */
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; }
.cal-head strong { font-size: 0.95rem; color: var(--ink); }
.cal-head .cal-nav { display: flex; gap: 0.3rem; }
.cal-head .cal-nav span { width: 24px; height: 24px; border-radius: 6px; background: var(--bg-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-grid .dow { font-size: 0.65rem; font-weight: 700; text-align: center; color: var(--text-light); text-transform: uppercase; }
.cal-cell { aspect-ratio: 1; border-radius: 7px; background: var(--bg-soft); font-size: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-weight: 600; }
.cal-cell.booked { background: #d1fae5; color: #065f46; }
.cal-cell.prov   { background: #ffedd5; color: #9a3412; }
.cal-cell.sel    { background: var(--primary); color: #fff; }

/* Payment mock */
.pay-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.pay-row:last-of-type { border-bottom: none; }
.pay-row .pl { color: var(--text-muted); }
.pay-row .pv { font-weight: 700; color: var(--ink); }
.pay-total { display: flex; justify-content: space-between; padding-top: 0.8rem; margin-top: 0.4rem; border-top: 2px solid var(--border); }
.pay-total .pl { font-weight: 800; color: var(--ink); }
.pay-total .pv { font-weight: 800; color: var(--primary); font-size: 1.05rem; }
.pay-badge { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; padding: 0.4rem 0.8rem; border-radius: 99px; background: #dcfce7; color: #15803d; font-size: 0.75rem; font-weight: 800; }
.pay-badge svg { width: 15px; height: 15px; }

/* Embed / code mock */
.code-mock { font-family: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace; font-size: 0.8rem; line-height: 1.7; color: var(--text); }
.code-mock .tag { color: #be123c; }
.code-mock .attr { color: #6d28d9; }
.code-mock .val { color: #15803d; }
.code-mock .muted { color: var(--text-light); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item .stat-num { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-item .stat-num .u { color: var(--secondary); }
.stat-item .stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.78); margin-top: 0.4rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  /* auto-fit keeps the grid tidy as the number of plan tiers grows (4-up on
     wide screens, wrapping to 2- then 1-up on smaller viewports). */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, var(--bg-tint), #fff 130px);
}
.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #4a2f00;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.plan-tagline { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem; min-height: 2.6em; }
.plan-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.35rem; }
.plan-price .amount { font-size: 2.75rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.plan-price .period { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.plan-trial { font-size: 0.8125rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 1.5rem; min-height: 1.2em; }
.plan .btn { margin-bottom: 1.75rem; }
.plan-features { display: grid; gap: 0.75rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.plan-features li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--secondary-dark); }
.plan-features li.muted { color: var(--text-light); }
.plan-features li.muted svg { color: var(--border-strong); }
.plan-features li.plan-feature-sub {
  font-style: italic;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.35rem;
  padding-left: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Section label above the booking-tier grid */
.pricing-section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

/* Starter — presented as a distinct, separate product (not a booking tier) */
.pricing-alt { margin-top: 2.75rem; }
.pricing-alt-divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-alt-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.pricing-alt-divider span {
  position: relative;
  background: var(--bg);
  padding: 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.starter-band {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 2rem;
}
.starter-band__info { flex: 1 1 340px; }
.starter-band__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.starter-band__name { font-size: 1.4rem; margin: 0 0 0.4rem; }
.starter-band__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 52ch;
}
.starter-band__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.starter-band__features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: var(--text);
}
.starter-band__features li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--secondary-dark);
}
.starter-band__buy {
  flex: 0 0 220px;
  text-align: center;
}
.starter-band__price .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.starter-band__price .period { color: var(--text-muted); font-weight: 600; }
.starter-band__trial {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0.35rem 0 1rem;
}
@media (max-width: 620px) {
  .starter-band { flex-direction: column; align-items: stretch; text-align: center; }
  .starter-band__buy { flex-basis: auto; }
  .starter-band__features { justify-content: center; }
}

/* Billing interval toggle */
.billing-toggle-wrap { text-align: center; margin-bottom: 2rem; }
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 99px;
}
.billing-toggle__btn {
  padding: 10px 26px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 99px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
  line-height: 1.2;
  white-space: nowrap;
}
.billing-toggle__btn--active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,95,122,0.30);
}
.billing-toggle__btn:not(.billing-toggle__btn--active):hover {
  background: var(--primary-light);
  color: var(--primary);
}
.billing-toggle__save {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 800;
  vertical-align: middle;
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.billing-toggle__btn:not(.billing-toggle__btn--active) .billing-toggle__save {
  background: var(--secondary);
  color: var(--primary-dark);
}

/* Dual (annual/monthly) price display, toggled by the grid wrapper class */
.plan-price-value { display: inline-flex; align-items: baseline; gap: 0.3rem; }
.plan-price--monthly { display: none; }
.billing-interval--monthly .plan-price--annual  { display: none; }
.billing-interval--monthly .plan-price--monthly { display: inline-flex; }

/* Tighten the gap when a plan card has two stacked buttons */
.plan .btn:not(:last-of-type) { margin-bottom: 0.6rem; }

/* Accepted payment methods */
.pay-accepted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 1.75rem auto 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.pay-accepted__label { font-weight: 700; }
.pay-accepted__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  background: var(--surface);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.pay-accepted__badge svg { display: block; }
.pay-accepted__badge--paypal { color: #003087; }

/* Comparison / FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary-dark);
  transition: transform .2s;
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.35rem 1.2rem; color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3.75rem 3rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(87,197,182,0.35), transparent 60%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.9rem; }
.cta p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(800px 340px at 50% -20%, rgba(87,197,182,0.14), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.9rem; }
.page-hero p { font-size: 1.1875rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; }

.page-hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ============================================================
   PROSE (readable text block on content pages)
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.1rem;
  text-align: center;
}
.prose p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.prose p + p { margin-top: 1.1rem; }

/* Two-column check list (benefits) */
.check-list--2col {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.5rem;
}

/* Force a 3-up feature grid regardless of item count */
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Two-up feature grid (e.g. the two ways to take bookings) */
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

/* ============================================================
   RELATED USE-CASE CARDS (internal cross-linking)
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-weight: 700;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--primary);
}
.related-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--bg-tint);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.related-icon svg { width: 22px; height: 22px; }
.related-label { flex: 1; font-size: 0.9375rem; line-height: 1.25; }
.related-arrow { color: var(--secondary-dark); font-weight: 800; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 0.85rem; }
.contact-info > p { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: 1px solid var(--border); }
.contact-detail .cd-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail .cd-icon svg { width: 22px; height: 22px; }
.contact-detail .cd-label { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); }
.contact-detail .cd-value { font-weight: 700; color: var(--ink); }
.contact-detail .cd-value a { color: var(--primary); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.required-star { color: var(--error); margin-left: 0.1rem; }
.text-optional { color: var(--text-light); font-weight: 500; font-size: 0.8125rem; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  line-height: 1.5;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(87,197,182,0.22);
}
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: var(--error); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235a6b73'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}
.form-hint { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.35rem; }
.form-error { display: block; font-size: 0.8125rem; color: var(--error); margin-top: 0.35rem; font-weight: 600; }

.form-privacy { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }
.recaptcha-note { font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; line-height: 1.5; }
.recaptcha-note a { color: var(--text-muted); text-decoration: underline; }

/* reCAPTCHA v2 fallback widget — allow horizontal scroll on very narrow screens */
.recaptcha-v2 { margin-top: 0.25rem; overflow-x: auto; }
.recaptcha-v2 .g-recaptcha { display: inline-block; }

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  border: 1px solid transparent;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--success { background: var(--success-bg); border-color: var(--success-bdr); color: #15803d; }
.alert--error   { background: var(--error-bg); border-color: var(--error-bdr); color: #b91c1c; }
.alert strong { font-weight: 800; }

/* ============================================================
   GUEST FEEDBACK
   ============================================================ */
.feedback-wrap { max-width: 660px; margin: 0 auto; }

.feedback-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  margin-bottom: 1.5rem;
}
.feedback-hero-img img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

.highlight-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem;
  margin-bottom: 1.75rem;
}
.highlight-item { display: flex; flex-direction: column; gap: 0.15rem; }
.highlight-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  opacity: 0.85;
}
.highlight-value { font-weight: 700; color: var(--ink); }

.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* Star rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}
.star-rating input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.star-rating label {
  font-size: 2.25rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.1s, transform 0.1s;
  line-height: 1;
  user-select: none;
}
.star-rating label:hover { transform: scale(1.15); }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--accent); }
.star-rating-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  min-height: 1.2em;
}

/* Radio pills (would recommend / consent) */
.radio-pill-group { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 99px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
  background: var(--surface);
}
.radio-pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill:hover,
.radio-pill:has(input:checked) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.radio-pill--positive:has(input:checked) {
  border-color: var(--success);
  background: var(--success-bg);
  color: #15803d;
}

/* Feedback state pages (thank-you / invalid / expired / renewed) */
.feedback-state {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}
.feedback-state h1 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.feedback-state p { color: var(--text-muted); margin-bottom: 1.25rem; }
.feedback-state-icon { font-size: 48px; line-height: 1; margin-bottom: 1rem; }
.feedback-state-icon--star { color: var(--accent); }
.feedback-state-icon--muted { color: var(--text-light); }
.feedback-state-form { margin-bottom: 0.75rem; }
.feedback-state-note { font-size: 0.8125rem; color: var(--text-light); }
.feedback-state-actions { margin-top: 1.5rem; }

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-code { font-size: 7rem; font-weight: 800; line-height: 1; color: var(--primary-light); letter-spacing: -0.05em; }
.error-wrap h1 { font-size: 1.75rem; margin: 0.5rem 0 0.75rem; }
.error-wrap p { color: var(--text-muted); max-width: 420px; margin: 0 auto 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-brand--light, .nav-brand--light:hover { color: #fff; }
.footer-tagline { margin-top: 1rem; font-size: 0.9375rem; max-width: 34ch; color: rgba(255,255,255,0.62); }
.footer-col h4 { color: #fff; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 800; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.9375rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-lead { max-width: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .step:not(:last-child)::after { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .showcase--flip { grid-template-columns: 1fr; gap: 2rem; }
  .showcase--flip .showcase-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-link { padding: 0.75rem 0.85rem; font-size: 1rem; }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; margin-top: 1rem; }
  .nav-actions .btn { width: 100%; }
}

@media (max-width: 620px) {
  .section { padding: 3.5rem 0; }
  .section--tight { padding: 2.75rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
  .container { padding: 0 1.15rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid--3 { grid-template-columns: 1fr; }
  .check-list--2col { grid-template-columns: 1fr; gap: 0.85rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats-band { padding: 2.25rem 1.5rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-chip { display: none; }

  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }

  .cta { padding: 2.75rem 1.5rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { margin-top: 3.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Account auth pages (login, MFA, forgot/reset password, verify
   email, register) — rendered inside the marketing layout, styled
   as a centred card. All rules scoped under .auth-body/.auth-card
   so they can't leak onto other marketing pages.
   ============================================================ */
.auth-body {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  /* Mirror the marketing hero's soft radial wash so the auth/register
     pages feel part of the same site rather than a bare form. */
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(87,197,182,0.16), transparent 60%),
    radial-gradient(900px 460px at 0% 10%, rgba(26,95,122,0.10), transparent 55%),
    var(--bg-soft);
}

.auth-wrapper {
  width: 100%;
  max-width: 420px;
}

/* The registration flow is a multi-field form, so it gets more room than
   the single-purpose auth cards (login, MFA, password reset). */
.register-wrapper {
  width: 100%;
  max-width: 560px;
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.auth-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.auth-description {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.auth-footer-text {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-info-block {
  text-align: center;
  padding: 8px 0;
}

.auth-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--primary);
}

.auth-info-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.auth-info-block p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.auth-form { display: flex; flex-direction: column; gap: 18px; }

.auth-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-card label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.auth-card .form-label-link {
  font-size: 13px;
  font-weight: 400;
  margin-left: auto;
  color: var(--primary);
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
  -webkit-appearance: none;
}

.auth-card input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.auth-card input::placeholder { color: var(--text-light); }

.auth-card .input-code {
  font-size: 24px;
  letter-spacing: 8px;
  text-align: center;
  font-family: monospace;
}

.auth-card .form-hint { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }
.auth-card .form-error { display: block; font-size: 0.8125rem; color: var(--error); margin-top: 0.35rem; font-weight: 600; }
.auth-card .form-grid { display: flex; flex-direction: column; gap: 18px; }

.btn--full { width: 100%; }
.form-actions { display: flex; gap: 10px; padding-top: 6px; }
.btn--paypal { background: #ffc439; color: #003087; border: none; font-weight: 700; }
.btn--paypal:hover { background: #f0b72c; color: #003087; }

/* Self-registration step indicator */
.register-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.register-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.register-step__num {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.register-step.is-active .register-step__num,
.register-step.is-done .register-step__num {
  background: var(--primary);
  color: #fff;
}

.register-step.is-active,
.register-step.is-done { color: var(--text); font-weight: 600; }

.register-step-sep {
  width: 24px;
  height: 1px;
  background: var(--border-strong);
}

/* Payment method choice (register flow, step 2) */
.pay-summary {
  text-align: center;
  padding: 18px 16px;
  margin-bottom: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pay-summary__plan { font-size: 15px; font-weight: 700; color: var(--text); }
.pay-summary__price { font-size: 26px; font-weight: 800; color: var(--primary); margin-top: 2px; }
.pay-summary__price span { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.pay-summary__trial { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.pay-options { display: flex; flex-direction: column; gap: 12px; }
.pay-or {
  text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); margin: 2px 0;
}

@media (max-width: 480px) {
  .auth-card { padding: 28px 22px; border-radius: var(--radius-lg); }
}
