:root {
  --accent: #B8D900;
  --ink: #171717;
  --text-muted: #525252;
  --surface: #ffffff;
  --surface-soft: #F5F4EF;
  --border: #E4E4DF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #FAFAF7;
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

/* ============================================================
   NEW LANDING PAGE HERO
   ============================================================ */

.landing-shell {
  display: block;
  padding: 0;
}

.landing-hero {
  padding: clamp(64px, 9vw, 100px) clamp(24px, 6vw, 80px);
  background: #FAFAF7;
}

.landing-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-logo {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 0 28px 0;
  object-fit: contain;
  object-position: left;
}

.hero-headline {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.hero-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  margin: 0 0 24px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
}

.hero-body strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  margin: 0 0 28px 0;
}

.hero-secondary {
  margin: 0 0 36px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-secondary strong {
  color: var(--ink);
  font-weight: 700;
}

.btn-arrow {
  margin-left: 8px;
  flex-shrink: 0;
}

.hero-cta {
  width: min(100%, 840px);
  margin: 0 auto 18px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 840px);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-meta svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Right column card */
.hero-right {
  display: flex;
  justify-content: center;
}

.receive-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(23, 23, 23, 0.07);
  padding: clamp(28px, 4vw, 40px);
}

.receive-title {
  margin: 0 0 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.receive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.receive-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.receive-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--surface-soft);
}

.receive-item-title {
  margin: 0 0 3px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
}

.receive-item-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}

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

.receive-secure {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.receive-secure svg {
  flex-shrink: 0;
  opacity: 0.65;
}

/* Experience section */
.experience-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--surface-soft);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.experience-inner {
  max-width: 680px;
  margin: 0 auto;
}

.experience-eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  filter: brightness(0.78);
}

.experience-heading {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.experience-heading em {
  font-style: italic;
  color: var(--ink);
}

.experience-sub {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  color: var(--text-muted);
}

/* Landing page CTA footer */
.landing-cta-footer {
  width: 100%;
  padding: clamp(56px, 7vw, 72px) clamp(24px, 6vw, 80px);
  background: #FAFAF7;
  text-align: center;
}

.landing-cta-footer .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 860px) {
  .landing-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: stretch;
  }

  .receive-card {
    max-width: 100%;
  }

  .hero-cta {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 18px;
  }

  .hero-meta {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    white-space: normal;
    font-size: 0.875rem;
  }
}

.hero-card {
  width: min(100%, 760px);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(17, 17, 17, 0.06);
  padding: clamp(32px, 5vw, 64px);
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.product-name {
  margin: 0 0 18px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.supporting-text {
  margin: 0 auto 8px;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}

.supporting-line {
  margin-bottom: 0;
}

.secondary-support {
  margin-bottom: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(200, 255, 59, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 255, 59, 0.3);
}

.cta-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.report-benefit {
  margin: 24px auto 0;
  max-width: 560px;
}

.report-title {
  margin: 0 0 6px;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
}

.report-subtext {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px auto 0;
  max-width: 620px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
  font-weight: 600;
  justify-content: center;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  flex-shrink: 0;
}

.page-shell[hidden] {
  display: none !important;
}

.assessment-view {
  display: grid;
}

.assessment-card {
  width: min(100%, 760px);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(17, 17, 17, 0.06);
  padding: clamp(28px, 4.5vw, 48px);
}

.assessment-header {
  text-align: center;
  margin-bottom: 28px;
}

.assessment-brand {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

.assessment-step {
  margin: 0 0 16px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.progress-track {
  width: min(100%, 420px);
  height: 8px;
  margin: 0 auto;
  background: var(--surface-soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 5.6%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 400ms ease;
}

.assessment-body {
  text-align: center;
}

.assessment-body h2 {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.answer-grid {
  display: grid;
  gap: 14px;
}

.answer-card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.answer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.answer-card.is-selected {
  border-color: var(--accent);
  background: #faffdf;
  box-shadow: 0 12px 28px rgba(200, 255, 59, 0.18);
}

.assessment-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.nav-button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.nav-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.nav-button.primary {
  background: var(--accent);
  border-color: var(--accent);
}

.nav-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

/* LEAD CAPTURE & BUSINESS SNAPSHOT FORM STYLING */
.lead-card,
.snapshot-card {
  width: min(100%, 760px);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(17, 17, 17, 0.06);
  padding: clamp(28px, 4.5vw, 48px);
}

.lead-header,
.snapshot-header {
  text-align: center;
  margin-bottom: 28px;
}

.lead-brand,
.snapshot-brand {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

.lead-step,
.snapshot-step {
  margin: 0 0 16px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.lead-body,
.snapshot-body {
  text-align: left;
  margin-bottom: 28px;
}

.lead-body h2,
.snapshot-body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.lead-subtext,
.snapshot-subtext {
  margin: 0 0 20px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lead-form,
.snapshot-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.required {
  color: #ff4757;
}

.form-text-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-text-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 255, 59, 0.12);
  background: #faffdf;
}

.form-text-input::placeholder {
  color: var(--text-muted);
}

.form-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.form-option {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.form-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.form-option.is-selected {
  border-color: var(--accent);
  background: #faffdf;
  box-shadow: 0 12px 28px rgba(200, 255, 59, 0.18);
}

.lead-footer,
.snapshot-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

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

@media (max-width: 700px) {
  .page-shell {
    padding: 20px 16px;
  }

  .hero-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .lead-card,
  .snapshot-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

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

  .cta-button {
    width: 100%;
  }

  .assessment-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .assessment-footer {
    flex-direction: column;
  }

  .nav-button {
    width: 100%;
  }

  .lead-footer,
  .snapshot-footer {
    flex-direction: column;
  }

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

/* ============================================================
   RESULTS PAGE STYLING
   ============================================================ */

.results-card {
  width: min(100%, 900px);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(17, 17, 17, 0.06);
  padding: clamp(28px, 4.5vw, 48px);
  margin: 0 auto;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.results-brand {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  flex: 1;
}

.confidence-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--surface-soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.confidence-badge.high {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #81c784;
}

.confidence-badge.medium {
  background: #fff3e0;
  color: #e65100;
  border-color: #ffb74d;
}

.results-body {
  margin: 28px 0;
  text-align: center;
}

.results-headline {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
}

.roadmap-section {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: var(--surface-soft);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.roadmap-section h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.roadmap-section p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.recommendation-box {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, #faffdf 0%, #fffaf0 100%);
  border: 2px solid var(--accent);
  border-radius: 12px;
  text-align: center;
}

.recommendation-box h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.service-name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.recommendation-box.secondary {
  background: linear-gradient(135deg, #f3e5f5 0%, #f9f5ff 100%);
  border-color: #b39ddb;
}

.recommendation-box.secondary .service-name {
  font-size: 1.1rem;
}

.next-steps-box {
  margin: 32px 0 24px;
  padding: 24px;
  background: var(--surface-soft);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
}

.next-steps-box h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.next-steps-box p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.results-footer {
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.results-footer .booking-button {
  display: block;
  width: 100%;
}

/* ============================================================ */
/* RECOMMENDATION PAGE STYLING */
/* ============================================================ */

.recommendation-view {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f7 100%);
}

.recommendation-card {
  width: min(100%, 900px);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.recommendation-header {
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  background: linear-gradient(135deg, #faffdf 0%, #fffaf0 100%);
  border-bottom: 1px solid var(--border);
}

.recommendation-brand {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.recommendation-subtext {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.recommendation-body {
  padding: clamp(28px, 4.5vw, 48px);
}

.recommendation-title {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.service-label {
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-label strong {
  color: var(--ink);
  font-weight: 700;
}

.recommendation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.recommendation-left,
.recommendation-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recommendation-section {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.recommendation-section h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.recommendation-section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.bullet-list,
.checkmark-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.bullet-list li,
.checkmark-list li {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: -2px;
}

.checkmark {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.checkmark-list li {
  padding-left: 0;
}

.recommendation-footer {
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.booking-button {
  display: block;
  width: 100%;
  padding: 16px 40px;
  background: linear-gradient(135deg, #c8ff3b 0%, #b8f030 100%);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 4px 16px rgba(200, 255, 59, 0.3);
  text-align: center;
  box-sizing: border-box;
}

.booking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 59, 0.4);
}

.booking-button:active {
  transform: translateY(0);
}

/* Responsive: Stack two-column layout on mobile */
@media (max-width: 900px) {
  .recommendation-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .recommendation-title {
    font-size: 1.6rem;
  }
  
  .recommendation-section {
    padding-left: 16px;
    border-left-width: 3px;
  }
  
  .recommendation-section h2 {
    font-size: 1.05rem;
  }
}

/* ============================================================ */
/* RECOMMENDATION PAGE STYLING */
/* ============================================================ */

.recommendation-view {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f7 100%);
}

.recommendation-card {
  width: min(100%, 900px);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.recommendation-header {
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  background: linear-gradient(135deg, #faffdf 0%, #fffaf0 100%);
  border-bottom: 1px solid var(--border);
}

.recommendation-brand {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.recommendation-subtext {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.recommendation-body {
  padding: clamp(28px, 4.5vw, 48px);
}

.recommendation-title {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.service-label {
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-label strong {
  color: var(--ink);
  font-weight: 700;
}

.recommendation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.recommendation-left,
.recommendation-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recommendation-section {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.recommendation-section h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.recommendation-section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.bullet-list,
.checkmark-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.bullet-list li,
.checkmark-list li {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: -2px;
}

.checkmark {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.checkmark-list li {
  padding-left: 0;
}

.recommendation-footer {
  padding: clamp(28px, 4.5vw, 48px);
  text-align: center;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.booking-button {
  display: block;
  width: 100%;
  padding: 16px 40px;
  background: linear-gradient(135deg, #c8ff3b 0%, #b8f030 100%);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 4px 16px rgba(200, 255, 59, 0.3);
  text-align: center;
  box-sizing: border-box;
}

.booking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 59, 0.4);
}

.booking-button:active {
  transform: translateY(0);
}

/* Responsive: Stack two-column layout on mobile */
@media (max-width: 900px) {
  .recommendation-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .recommendation-title {
    font-size: 1.6rem;
  }
  
  .recommendation-section {
    padding-left: 16px;
    border-left-width: 3px;
  }
  
  .recommendation-section h2 {
    font-size: 1.05rem;
  }
}
