:root {
  --bg: #FFFAF5;
  --bg-warm: #FFF3E8;
  --fg: #2D1B0E;
  --fg-muted: #6B5344;
  --accent: #E8652B;
  --accent-soft: #FF8F5C;
  --mint: #2BAD7E;
  --mint-soft: #D4F5E8;
  --slate: #3A3A4A;
  --border: #E8D5C4;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.25;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mint-soft) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(45, 27, 14, 0.06);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}

.route-dot.end {
  border-color: var(--mint);
  background: var(--mint);
}

.route-line {
  width: 2px;
  height: 28px;
  background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
  margin-left: 6px;
}

.route-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.route-time {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

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

.hero-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--slate);
  color: #F5F0EB;
  padding: 80px 24px;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.problem h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.problem-stat {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.problem-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.problem-stat-text {
  font-size: 0.9rem;
  color: #C4BAB2;
  margin-top: 4px;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 56px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== TRUST ===== */
.trust {
  padding: 80px 24px;
  background: var(--bg-warm);
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.trust h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
}

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

.trust-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--mint-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.trust-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.12;
  z-index: 0;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer span {
  font-weight: 700;
  color: var(--fg);
}

/* ===== HERO NAV ===== */
.hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  z-index: 10;
}

.hero-nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-nav-link:hover { color: var(--fg); }

.hero-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.hero-nav-cta:hover { background: #D4561E; transform: translateY(-1px); }

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-price-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(45, 27, 14, 0.05);
}

.price-tag-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.price-tag-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.price-tag-amount span {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 600;
}

/* ===== WHAT ===== */
.what {
  padding: 100px 24px;
  background: var(--bg);
}

.what-inner {
  max-width: 960px;
  margin: 0 auto;
}

.what-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.what h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 28px;
}

.what-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 48px;
}

.what-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.what-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.what-point-icon {
  width: 44px;
  height: 44px;
  background: var(--mint-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.what-point strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.what-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.what-location-note {
  margin-top: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(45, 27, 14, 0.1);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 101, 43, 0.12);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}

.pricing-plan-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.pricing-plan-desc em { font-style: normal; color: var(--accent); font-weight: 600; }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}

.pricing-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pricing-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pricing-per {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-feature-extra {
  color: var(--accent) !important;
  font-weight: 600;
}

.pricing-feature-extra::before { color: var(--accent) !important; }

.pricing-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== BOOK ===== */
.book {
  padding: 100px 24px;
  background: var(--bg);
}

.book-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.book-header {
  text-align: center;
  margin-bottom: 60px;
}

.book-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.book-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.book-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.book-option {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.book-option-icon {
  width: 52px;
  height: 52px;
  background: var(--mint-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.book-option-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.book-option-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.book-text-steps {
  padding-left: 20px;
  margin: 12px 0 20px;
}

.book-text-steps li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.book-divider {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  padding-top: 80px;
}

.book-form-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.book-form-panel h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.book-form-panel > p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* ===== FORM ===== */
.form-errors {
  background: #FFF0EC;
  border: 1px solid #FFCDBD;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
}

.form-error {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.form-optional {
  font-weight: 400;
  color: var(--fg-muted);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 101, 43, 0.1);
}

.form-group textarea { resize: vertical; }

.plan-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.plan-option {
  cursor: pointer;
}

.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-option-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color 0.15s, background 0.15s;
}

.plan-option input:checked + .plan-option-card {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.plan-option-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.plan-option-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

.plan-option-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.btn-block { width: 100%; }

.form-submit-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 4px;
}

/* ===== WHY ===== */
.why {
  padding: 100px 24px;
  background: var(--slate);
  color: #F5F0EB;
}

.why-inner {
  max-width: 960px;
  margin: 0 auto;
}

.why-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.why h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
}

.why-lead {
  font-size: 1.05rem;
  color: #C4BAB2;
  line-height: 1.75;
  max-width: 660px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.why-point {
  position: relative;
}

.why-point-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}

.why-point h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-point p {
  font-size: 0.92rem;
  color: #C4BAB2;
  line-height: 1.65;
}

/* ===== CLOSING CTA ROW ===== */
.closing-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 56px 24px;
  background: var(--fg);
  color: #C4BAB2;
}

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

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.footer-inner p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-phone {
  margin-top: 12px;
}

.footer-phone a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}

.thank-you-main {
  max-width: 560px;
  text-align: center;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: var(--mint-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--mint);
  margin: 0 auto 28px;
}

.thank-you-main h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.12;
  margin-bottom: 16px;
}

.thank-you-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thank-you-next {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  margin-bottom: 32px;
}

.thank-you-next h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.thank-you-next ol {
  padding-left: 20px;
}

.thank-you-next li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.btn-outline:hover { background: var(--bg-warm); border-color: var(--fg-muted); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding: 70px 20px 40px;
  }

  .hero-nav { padding: 16px 20px; }

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

  .what-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .book-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .book-divider {
    padding-top: 0;
    text-align: center;
  }

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

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

  .closing-cta-row { flex-direction: column; align-items: center; }

  .problem-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .hero-stat-row {
    grid-template-columns: 1fr 1fr;
  }
}
/* ── Shared button base (landing page + app) ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #D4561E; box-shadow: 0 4px 12px rgba(232,101,43,0.25); }
.btn-ghost { background: transparent; color: var(--fg-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-warm); color: var(--fg); }
.btn-lg { padding: 14px 24px; font-size: 1rem; }
