/* =====================================================
   SECTIONS - Page Layout Sections
   Extracted from style.css for modularity
   ===================================================== */

/* =====================================================
   NAVIGATION - Enhanced UX/UI
   ===================================================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  background: rgba(var(--color-bg-rgb, 255, 255, 255), 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--color-text-main-rgb, 0, 0, 0), 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Scrolled state - shrinks and adds shadow */
.nav-wrapper.scrolled {
  background: rgba(var(--color-bg-rgb, 255, 255, 255), 0.95);
  box-shadow: 0 4px 20px rgba(var(--color-text-main-rgb, 0, 0, 0), 0.08);
}

.nav-wrapper.scrolled .nav-container {
  height: 64px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.logo:hover .logo-img {
  opacity: 0.7;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-text-secondary, #525252);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}

/* Underline animation */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-text-main);
}

.nav-links a:hover::after {
  width: calc(100% - 32px);
}

/* Active state (scroll-spy) */
.nav-links a.active {
  color: var(--color-text-main);
  background: rgba(var(--color-text-main-rgb, 0, 0, 0), 0.04);
}

.nav-links a.active::after {
  width: calc(100% - 32px);
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--color-text-main);
  color: var(--color-bg, #fff);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-text-main-rgb, 0, 0, 0), 0.15);
  background: var(--color-accent);
  color: var(--color-text-main, #1a1a1a);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--color-accent, #FABC1C);
  outline-offset: 3px;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--color-text-main, #1a1a1a);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Hamburger Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger to X animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg, #fff);
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(var(--color-text-main-rgb, 0, 0, 0), 0.06);
}

.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--color-text-secondary);
  padding-left: 8px;
}

.mobile-cta {
  width: 100%;
  text-align: center;
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--color-text-main-rgb, 0, 0, 0), 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 998;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Nav Responsive */
@media (max-width: 1024px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    height: 70px;
  }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: stretch;
  min-height: min(860px, calc(100vh - 80px));
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.86) 0, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-yellow) 100%);
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(83, 57, 32, 0.09);
}

.hero-stage > * {
  min-width: 0;
}

.hero-copy-surface {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 76px 64px 84px;
}

.hero-copy-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 78%, rgba(230, 216, 200, 0.95) 0 18%, rgba(230, 216, 200, 0) 19%),
    radial-gradient(circle at 58% 22%, rgba(255, 255, 255, 0.92) 0 14%, rgba(255, 255, 255, 0) 15%),
    linear-gradient(180deg, rgba(248, 242, 235, 0.98) 0%, rgba(239, 228, 214, 0.98) 100%);
  border-radius: 0 22% 20% 0 / 0 18% 26% 0;
  z-index: -1;
}

.hero-copy-surface::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -110px;
  background: rgba(232, 216, 202, 0.8);
  border-radius: 50%;
  z-index: -1;
}

/* hero-badge base styles in components.css - only spacing override here */
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  color: var(--color-accent-hover);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.hero-content h1 {
  width: 100%;
  max-width: 21ch;
  margin-bottom: 22px;
  color: var(--color-text-main);
  font-size: clamp(3.6rem, 5.7vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

/* Subtext - primary supporting line */
.hero-subtext {
  width: 100%;
  max-width: 39ch;
  font-size: 1.35rem;
  color: var(--color-primary-light);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* Description - secondary text */
.hero-description {
  width: 100%;
  max-width: 42ch;
  font-size: 1.12rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: 30px;
}

/* Hero CTA group - buttons displayed in a row */
.hero-cta-group {
  display: flex;
  width: 100%;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-primary-cta {
  min-height: 60px;
  padding: 0.95rem 1.7rem;
  background: linear-gradient(to bottom, #1f1613 50%, #a5531f 50%);
  background-size: 100% 200%;
  background-position: 0 100%;
  color: #f6e8d8;
  box-shadow: 0 10px 24px rgba(46, 25, 15, 0.18);
}

.hero-primary-cta:hover {
  color: #ffffff;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0.95rem 1.7rem;
  border: 1px solid rgba(112, 95, 82, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #27201b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(99, 76, 55, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.hero-secondary-cta:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(99, 76, 55, 0.1);
}

.hero-signature {
  margin-top: 30px;
  margin-left: clamp(120px, 13vw, 190px);
  color: rgba(171, 145, 118, 0.9);
  font-family: 'Mansalva', cursive;
  font-size: clamp(3.6rem, 5vw, 5.3rem);
  line-height: 1;
  transform: rotate(-7deg);
}

@media (max-width: 1100px) {
  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    min-height: min(760px, calc(100vh - 80px));
  }

  .hero-copy-surface {
    padding: 62px 44px 68px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  }
}

/* Hero CTA button — accent color for highest conversion priority */
.btn-hero {
  margin-bottom: var(--spacing-lg, 32px);
  padding: 16px 32px;
  font-size: 1rem;
  background: var(--color-accent, #FABC1C);
  color: var(--color-text-main, #1a1a1a);
  border-color: var(--color-accent, #FABC1C);
}

.btn-hero:hover {
  background: var(--color-text-main, #1a1a1a);
  color: var(--color-bg, #fff);
  border-color: var(--color-text-main, #1a1a1a);
}

/* Social proof in hero */
.hero-content .social-proof {
  padding-top: var(--spacing-sm, 16px);
  border-top: 1px solid var(--color-border-light, #e5e5e5);
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 2;
  }

  .hero-badge {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    margin-bottom: 18px;
  }

  .hero-subtext {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-copy-surface {
    padding: 44px 28px 52px;
  }

  .hero-copy-surface::before {
    inset: 0;
    border-radius: 0;
  }

  .hero-copy-surface::after {
    width: 180px;
    height: 180px;
    left: -56px;
    bottom: -72px;
  }

  .hero-image-wrapper {
    order: 1;
    min-height: 420px;
  }

  .hero-photo-frame {
    min-height: 420px;
    border-radius: 0;
  }

  .hero-photo-accent--top {
    width: 62%;
    height: 18%;
  }

  .hero-photo-accent--bottom {
    width: 56%;
    height: 24%;
    left: -6%;
    bottom: -10%;
  }

  .hero-primary-cta,
  .hero-secondary-cta,
  .btn-hero {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-signature {
    margin-top: 24px;
    margin-left: 0;
    align-self: center;
    font-size: 3.8rem;
  }
}

/* =====================================================
   CARDS
   ===================================================== */

.card {
  background: var(--color-bg-elevated, #FFFFFF);
  border: 1px solid var(--color-border-light, #E5E5E5);
  border-radius: var(--radius-md, 12px);
  padding: var(--spacing-lg, 32px);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base, 0.35s cubic-bezier(0.23, 1, 0.32, 1));
  contain: layout style;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base, 0.35s);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(250, 188, 28, 0.4);
}

.card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   TRUST STRIP
   ===================================================== */

.trust-strip {
  padding: 0 0 clamp(24px, 4vw, 40px);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.trust-strip-item {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(var(--color-accent-rgb), 0.14);
  box-shadow: var(--shadow-sm);
}

.trust-strip-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--color-accent-rgb), 0.82);
}

.trust-strip-item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(47, 34, 23, 0.82);
}

/* =====================================================
   INTERACTIVE ACCORDIONS (Pain Points)
   ===================================================== */

.accordion-item {
  border: 1px solid var(--color-border-light, #E5E5E5);
  border-radius: var(--radius-md, 12px);
  margin-bottom: var(--spacing-sm, 16px);
  background: var(--color-bg-elevated, #FFFFFF);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  contain: layout style;
}

/* Accessibility: Focus styles for keyboard navigation */
.accordion-item:focus-visible {
  outline: 2px solid var(--color-accent, #FABC1C);
  outline-offset: 2px;
}

.accordion-item:hover {
  background-color: var(--color-bg-alt, #FAFAF5);
}

.accordion-item.active {
  border-color: var(--color-accent, #FABC1C);
  border-left: 4px solid var(--color-accent, #FABC1C);
  background-color: var(--color-bg-yellow, #FFF5E0);
}

.accordion-header {
  padding: var(--spacing-md, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: var(--font-h4, 1.25rem);
}

.accordion-content {
  display: none;
  padding: 0 var(--spacing-md, 24px) var(--spacing-md, 24px);
  border-top: 1px solid var(--color-border-light, #e5e5e5);
  margin-top: var(--spacing-sm, 16px);
  padding-top: var(--spacing-sm, 16px);
}

.accordion-item.active .accordion-content {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* =====================================================
   PAIN POINTS - Horizontal Cards + Detail Board
   ===================================================== */

/* Grid container */
.pain-points-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.pain-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.pain-nav-item {
  appearance: none;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  width: 100%;
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 170px;
  gap: 14px;
  padding: 22px 56px 24px 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid transparent;
  border-radius: 24px;
  color: var(--color-text-secondary, #525252);
  box-shadow: 0 14px 32px rgba(72, 50, 33, 0.045);
  transition:
    transform var(--transition-base, 0.35s) var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    background var(--transition-base, 0.35s) var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    color var(--transition-base, 0.35s) var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    border-color var(--transition-base, 0.35s) var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    box-shadow var(--transition-base, 0.35s) var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1));
}

.pain-nav-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(190, 171, 151, 0.4);
  color: var(--color-text-main, #1A1A1A);
}

.pain-nav-item:focus-visible {
  outline: 2px solid var(--color-accent, #1A1A1A);
  outline-offset: 2px;
}

.pain-nav-item.active {
  background: #ffffff;
  border-color: rgba(190, 171, 151, 0.4);
  box-shadow: 0 22px 44px rgba(72, 50, 33, 0.1);
  color: var(--color-text-main, #1A1A1A);
}

.pain-nav-item.active::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--color-accent-hot);
}

.pain-nav-item::after {
  content: none;
}

.pain-nav-item.pain-nav-hint {
  border-color: rgba(200, 144, 104, 0.45);
  color: var(--color-text-main, #1A1A1A);
}

.pain-nav-meta {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pain-nav-text {
  display: block;
  max-width: none;
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  color: inherit;
}

.pain-nav-arrow {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--color-accent-hover);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.pain-nav-item:hover .pain-nav-arrow,
.pain-nav-item.active .pain-nav-arrow {
  color: var(--color-accent-hot);
  transform: translate(3px, -50%);
}

.pain-content-area {
  position: relative;
  width: 100%;
}

.pain-panel[hidden] {
  display: none;
}

.pain-panel.active {
  display: block;
  animation: painPanelFadeIn 0.4s var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)) forwards;
}

.pain-card-shell {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(190, 171, 151, 0.28);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 52px rgba(72, 50, 33, 0.08);
}

.pain-card-shell--default {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-card-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.pain-card-context {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-card-priority {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pain-panel-title {
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0;
  color: var(--color-text-main);
  line-height: 1.02;
  text-wrap: balance;
}

.pain-mode-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 420px);
  padding: 10px;
  background: var(--color-bg-alt);
  border-radius: 16px;
}

.pain-mode-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-secondary);
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-mode-btn:hover {
  color: var(--color-text-main);
}

.pain-mode-btn.active {
  background: linear-gradient(135deg, var(--color-accent-hot) 0%, var(--color-orange-dark) 100%);
  color: var(--color-text-inverse);
  box-shadow: 0 12px 24px rgba(143, 82, 47, 0.18);
}

.pain-mode-btn[data-view-target="risk"].active {
  background: linear-gradient(135deg, #a83232 0%, #7d1f1f 100%);
  box-shadow: 0 12px 24px rgba(168, 50, 50, 0.2);
}

.pain-mode-btn[data-view-target="solution"].active {
  background: linear-gradient(135deg, var(--color-accent-hot) 0%, var(--color-orange-dark) 100%);
}

.pain-mode-btn:focus-visible {
  outline: 2px solid var(--color-accent-hot);
  outline-offset: 2px;
}

.pain-view-stack {
  position: relative;
}

.pain-view[hidden] {
  display: none;
}

.pain-view.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pain-overview-card {
  padding: 28px 30px;
  background: #fff;
  border: 1px solid rgba(190, 171, 151, 0.2);
  border-radius: 20px;
  box-shadow: 0 18px 32px rgba(72, 50, 33, 0.05);
}

.pain-overview-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pain-overview-text {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.pain-highlight-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.pain-highlight-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: rgba(200, 144, 104, 0.14);
  color: var(--color-accent-hot);
  border-radius: 18px;
  font-size: 1.8rem;
  font-weight: 800;
}

.pain-highlight-copy > *:last-child {
  margin-bottom: 0;
}

.pain-highlight-copy .hook {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.pain-highlight-copy .hook strong {
  color: var(--color-accent-hot);
  font-weight: 500;
}

.pain-highlight-copy .quote-highlight {
  margin-bottom: 0;
  padding: 0;
  border-left: none;
  background: none;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.pain-highlight-copy .body-text {
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.pain-overview-card .hook {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.pain-overview-card .hook strong {
  color: var(--color-accent-hot);
  font-weight: 500;
}

.pain-overview-card .quote-highlight {
  margin-bottom: 0;
  padding: 0;
  border-left: none;
  background: none;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.pain-overview-card .body-text {
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.pain-rich-list {
  margin: 16px 0 0 18px;
  padding: 0;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.pain-rich-list li + li {
  margin-top: 10px;
}

.pain-empty-card {
  max-width: 42ch;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.pain-empty-card p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.pain-detail-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 30px;
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(190, 171, 151, 0.32);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(72, 50, 33, 0.06);
}

.pain-detail-card::before {
  content: none;
}

.pain-detail-card--risk {
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.pain-detail-card--risk::before {
  content: none;
}

.pain-detail-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.pain-detail-layout--risk {
  grid-template-columns: minmax(205px, 240px) minmax(0, 1fr);
}

.pain-detail-layout--solution {
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
}

.pain-detail-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 239, 232, 0.96) 100%);
  border: 1px solid rgba(190, 171, 151, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pain-detail-card--risk .pain-detail-lead {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 236, 233, 0.96) 100%);
  border-color: rgba(162, 59, 59, 0.14);
}

.pain-detail-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pain-detail-card--solution .pain-detail-body {
  min-height: 0;
  justify-content: flex-start;
  background: transparent;
}

.pain-detail-media {
  margin: 0;
  min-height: 0;
  aspect-ratio: 1 / 1.42;
  max-height: 370px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(190, 171, 151, 0.14);
  box-shadow: none;
  background: var(--color-bg-alt);
}

.pain-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pain-detail-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pain-detail-card--solution .pain-detail-copy {
  justify-content: flex-start;
}

.pain-detail-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pain-detail-card h4 {
  margin: 0 0 18px 0;
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.05;
  color: var(--color-text-main);
  text-wrap: balance;
}

.pain-detail-copy p,
.pain-detail-copy li {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
}

.pain-detail-copy p {
  max-width: 52ch;
  margin-top: 0;
  margin-bottom: 18px;
}

.pain-detail-body .pain-solution-list {
  margin-left: 18px;
}

.pain-detail-copy > *:last-child {
  margin-bottom: 0;
}

.pain-solution-list {
  margin: 0 0 20px 18px;
  padding: 0;
  color: var(--color-text-secondary);
}

.pain-solution-list li + li {
  margin-top: 14px;
}

.pain-solution-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.pain-solution-note--intro {
  padding-top: 0;
  border-top: 0;
  margin-bottom: 16px;
  font-style: italic;
}

.pain-detail-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(190, 171, 151, 0.34);
}

.pain-detail-metric {
  min-width: 0;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(190, 171, 151, 0.24);
  border-radius: 16px;
}

.pain-detail-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pain-detail-metric strong {
  font-family: var(--font-heading, 'DM Serif Display');
  display: block;
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--color-text-main);
  overflow-wrap: anywhere;
}

@keyframes painPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .pain-panel.active {
    animation: none;
  }
}

/* ----- RESPONSIVE: Tablet ----- */
@media (max-width: 968px) {
  .pain-points-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pain-nav {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-nav-item {
    min-height: 150px;
    padding: 20px 52px 22px 20px;
  }

  .pain-nav-text {
    font-size: 1.45rem;
  }

  .pain-card-shell {
    padding: 28px;
  }

  .pain-highlight-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
  }

  .pain-highlight-icon {
    width: 60px;
    height: 60px;
  }
}

/* ----- RESPONSIVE: Mobile ----- */
@media (max-width: 768px) {
  .pain-points-split {
    grid-template-columns: 1fr;
    gap: var(--spacing-md, 24px);
  }

  .pain-nav {
    position: static;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--spacing-xs, 8px);
    padding-bottom: var(--spacing-sm, 16px);
    border-bottom: 0;
    margin-bottom: var(--spacing-md, 24px);
    scrollbar-width: none;
  }

  .pain-nav::-webkit-scrollbar {
    display: none;
  }

  .pain-nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: min(280px, 82vw);
    min-width: min(280px, 82vw);
    min-height: 142px;
    padding: 18px 48px 18px 18px;
    white-space: normal;
  }

  .pain-nav-item.active {
    border-color: rgba(190, 171, 151, 0.4);
  }

  .pain-nav-text {
    max-width: none;
    font-size: 1.2rem;
  }

  .pain-nav-arrow {
    right: 18px;
  }

  .pain-content-area {
    min-height: auto;
  }

  .pain-card-shell,
  .pain-card-shell--default {
    padding: 24px 20px;
  }

  .pain-overview-card {
    padding: 22px 18px;
  }

  .pain-detail-card {
    padding: 22px 18px;
  }

  .pain-detail-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pain-detail-layout--solution {
    grid-template-columns: 1fr;
  }

  .pain-detail-lead,
  .pain-detail-body {
    padding: 20px 18px;
  }

  .pain-detail-media {
    width: 100%;
    min-height: 220px;
    max-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .pain-detail-metrics {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .pain-panel-title {
    font-size: 2rem;
  }

  .pain-card-top {
    gap: 20px;
    margin-bottom: 20px;
  }

  .pain-mode-switch {
    width: 100%;
  }

  .pain-highlight-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-highlight-icon {
    width: 56px;
    height: 56px;
  }
}

/* ----- RESPONSIVE: Small mobile ----- */
@media (max-width: 480px) {
  .pain-nav-item {
    width: 88vw;
    min-width: 88vw;
    padding: 16px 44px 16px 16px;
  }

  .pain-panel-title {
    font-size: 1.72rem;
  }

  .pain-nav-text {
    font-size: 1.05rem;
  }
}

/* =====================================================
   PLACEHOLDERS
   ===================================================== */

.img-placeholder {
  background-color: var(--color-bg-alt, #FAFAF5);
  border: 2px dashed var(--color-border-light, #e5e5e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary, #525252);
  font-weight: 600;
  min-height: 300px;
  width: 100%;
}

/* =====================================================
   PHASE CARDS - Split Layout (Used in beta)
   ===================================================== */

.phase-header {
  margin-bottom: var(--spacing-md, 24px);
}

.phase-number {
  font-size: var(--font-small, 0.875rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-main, #1a1a1a);
  background: var(--color-accent, #FABC1C);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: var(--spacing-xs, 8px);
}

.phase-title {
  font-size: var(--font-h3, 1.75rem);
  margin-bottom: var(--spacing-xs, 8px);
}

.phase-eng-title {
  font-size: var(--font-small, 0.875rem);
  color: var(--color-text-secondary, #525252);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* phase-quote base styles in components.css - only size override here */
.phase-quote {
  font-size: 1.25rem;
  line-height: 1.4;
}

.phase-body {
  margin-bottom: var(--spacing-md, 24px);
}

.phase-list {
  list-style: none;
  margin: var(--spacing-md, 24px) 0;
}

.phase-list li {
  margin-bottom: var(--spacing-sm, 16px);
  padding-left: var(--spacing-md, 24px);
  position: relative;
}

.phase-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-text-main, #1a1a1a);
  font-weight: bold;
}

.phase-output {
  margin-top: var(--spacing-md, 24px);
  padding: var(--spacing-md, 24px);
  background: var(--color-bg-alt, #FAFAF5);
  border-top: 2px solid var(--color-border, #1A1A1A);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm, 16px);
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  position: relative;
  padding: 72px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(var(--color-accent-rgb), 0.12), transparent 26%),
    linear-gradient(180deg, #1d140f 0%, #140d09 100%);
  color: var(--color-text-inverse);
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 241, 228, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 248, 240, 0.05) 0%, rgba(183, 122, 85, 0.08) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-kicker,
.footer-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 228, 210, 0.62);
}

.footer-title {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff8f2;
  max-width: 11ch;
}

.footer-tagline {
  margin: 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 242, 231, 0.8);
}

.footer-action {
  margin-top: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 228, 0.18);
  background: rgba(255, 248, 241, 0.04);
  color: #fff8f2;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--color-accent-text);
}

.footer-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-card,
.footer-portrait-card {
  min-height: 100%;
  padding: 22px 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 241, 228, 0.1);
  background: rgba(255, 249, 243, 0.05);
}

.footer-card--nav {
  display: flex;
  flex-direction: column;
}

.footer-value {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  color: #fff9f4;
}

.footer-link {
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent-light);
}

.footer-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 240, 227, 0.68);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav-link {
  color: rgba(255, 245, 235, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-accent-light);
  transform: translateX(2px);
}

.footer-portrait-card {
  padding: 0;
  overflow: hidden;
  min-height: 260px;
}

.footer-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 6px;
}

.footer-copyright,
.footer-bottom-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 236, 219, 0.56);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-title {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 56px;
  }

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

  .footer-top {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 2px;
  }
}

@media (max-width: 480px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================================================
   ADDED TEXT MARKER (Red underline for designer additions)
   ===================================================== */

.added-text {
  color: var(--color-warning);
  text-decoration: underline;
  text-decoration-color: var(--color-warning);
  text-underline-offset: 2px;
}

/* =====================================================
   SOCIAL PROOF (Hero section) - Minimal
   ===================================================== */

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm, 16px);
  margin-top: var(--spacing-xl, 48px);
  padding-top: var(--spacing-md, 24px);
  border-top: 1px solid var(--color-border-light, #e5e5e5);
}

.avatar-stack {
  display: flex;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  margin-right: -12px;
  border: 2px solid var(--color-bg, #ffffff);
  position: relative;
}

.avatar-circle:nth-child(1) {
  background: var(--color-primary);
  z-index: 3;
}

.avatar-circle:nth-child(2) {
  background: var(--color-accent);
  z-index: 2;
}

.avatar-circle:nth-child(3) {
  background: var(--color-accent-warm);
  z-index: 1;
  margin-right: 0;
}

.social-proof-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #525252);
  line-height: 1.4;
}

.social-proof-text strong {
  color: var(--color-text-main, #1a1a1a);
  font-weight: 600;
}

@media (max-width: 600px) {
  .social-proof {
    margin-top: var(--spacing-md, 24px);
    padding-top: var(--spacing-sm, 16px);
  }

  .avatar-circle {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    margin-right: -10px;
  }

  .social-proof-text {
    font-size: 0.8rem;
  }
}

/* =====================================================
   TESTIMONIAL CAROUSEL - Edge to Edge (Enhanced UX)
   ===================================================== */

.testimonials-section {
  overflow: hidden;
  position: relative;
}

/* =====================================================
   PROCESS TIMELINE
   ===================================================== */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl, 48px);
}

.process-step {
  display: flex;
  gap: var(--spacing-md, 24px);
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 2px solid var(--color-border, #1A1A1A);
  background: var(--color-accent, #FABC1C);
  color: var(--color-text-main, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
}

.process-content h4 {
  margin-bottom: var(--spacing-xs, 8px);
}

/* =====================================================
   BOOKING STEPS - Modern Split Layout
   ===================================================== */

.booking-section {
  background: var(--color-bg, #fff);
}

.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl, 80px);
  align-items: start;
}

@media (max-width: 968px) {
  .booking-split {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }
}

/* Left Column */
.booking-left {
  position: sticky;
  top: 120px;
}

@media (max-width: 968px) {
  .booking-left {
    position: static;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
}

/* section-label base styles in components.css - only spacing + size override */
.section-label {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: 20px;
  margin-bottom: var(--spacing-md, 24px);
}

.booking-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md, 24px);
  font-family: var(--font-serif);
  max-width: 14ch;
}

@media (max-width: 968px) {
  .booking-headline {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    line-height: 1.08;
  }

  .booking-description {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    line-height: 1.55;
  }

  .booking-cta-group {
    justify-content: center;
  }

  .booking-right {
    width: min(100%, 720px);
    margin-inline: auto;
    padding-top: 0;
  }
}

.booking-headline .underline-effect {
  position: relative;
  display: inline;
}

.booking-headline .underline-effect::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.35em;
  background: rgba(var(--color-accent-rgb, 250, 188, 28), 0.35);
  z-index: -1;
  transition: height 0.2s ease;
}

.booking-headline:hover .underline-effect::after {
  height: 0.5em;
}

.booking-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary, #525252);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl, 48px);
  max-width: 500px;
}

.booking-cta-group {
  display: flex;
  gap: var(--spacing-sm, 16px);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-sm, 16px);
}

/* Right Column - Timeline */
.booking-right {
  padding-top: var(--spacing-md, 24px);
}

.booking-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: var(--spacing-md, 24px);
  padding-bottom: var(--spacing-md, 24px);
}

.timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-accent, #FABC1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-main, #1a1a1a);
}

.timeline-line {
  width: 2px;
  background: rgba(var(--color-accent-rgb, 250, 188, 28), 0.4);
  margin-top: var(--spacing-xs, 8px);
  height: calc(100% - 48px);
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
  padding-bottom: var(--spacing-sm, 16px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm, 16px);
  margin-bottom: var(--spacing-xs, 8px);
  flex-wrap: wrap;
}

.step-header h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* step-badge styles in components.css */

.timeline-content p {
  color: var(--color-text-secondary, #525252);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}

@media (max-width: 768px) {
  .booking-section {
    text-align: center;
  }

  .booking-headline {
    font-size: clamp(2.2rem, 11vw, 3rem);
    max-width: 11ch;
  }

  .booking-description {
    font-size: 1rem;
  }

  .timeline-step {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(164, 129, 93, 0.14);
    border-radius: 22px;
    background: rgba(255, 251, 246, 0.72);
  }

  .timeline-marker {
    min-width: 40px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .timeline-line {
    display: none;
  }

  .timeline-content {
    padding: 0;
  }

  .step-header {
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .timeline-content p {
    max-width: 34ch;
    margin-inline: auto;
    line-height: 1.5;
  }
}

/* =====================================================
   PACKAGE CARDS (Side by side)
   ===================================================== */

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg, 32px);
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  border: 1px solid var(--color-border-light, #E5E5E5);
  border-radius: var(--radius-lg, 20px);
  padding: var(--spacing-xl, 48px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base, 0.35s);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 2px solid var(--color-accent, #FABC1C);
  background: linear-gradient(180deg, rgba(250, 188, 28, 0.06) 0%, transparent 100%);
}

/* Featured package CTA — accent to drive conversion */
.package-card.featured .btn {
  background: var(--gradient-accent);
  color: var(--color-accent-text, #1A1A1A);
  border: none;
}

.package-card.featured .btn:hover {
  box-shadow: var(--shadow-accent);
}

.package-badge {
  align-self: flex-start;
  margin-bottom: var(--spacing-sm, 16px);
}

.package-price {
  font-size: 1.5rem;
  font-weight: 900;
  margin: var(--spacing-md, 24px) 0;
}

/* =====================================================
   SECTION QUOTE HEADER
   ===================================================== */

.section-quote-header {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-xl, 48px);
  color: var(--color-text-main, #1a1a1a);
}

@media (max-width: 768px) {
  .section-quote-header {
    font-size: 1.5rem;
  }
}

/* =====================================================
   CASE STUDY IMAGE
   ===================================================== */

.case-study-image-col {
  display: flex;
  align-items: flex-start;
}

.case-study-figure {
  margin: 0;
  width: 100%;
}

.case-study-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--color-border, #1A1A1A);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study-caption {
  margin-top: var(--spacing-sm, 12px);
  font-size: 0.875rem;
  color: var(--color-text-secondary, #525252);
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .case-study-image {
    min-height: 200px;
  }
}

/* =====================================================
   BEFORE/AFTER COMPARISON
   ===================================================== */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md, 24px);
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-box {
  padding: var(--spacing-md, 24px);
  border: 2px solid var(--color-border, #1A1A1A);
}

.comparison-box.before {
  background: var(--color-bg, #ffffff);
}

.comparison-box.after {
  background: rgba(var(--color-accent-rgb, 250, 188, 28), 0.08);
}

.comparison-label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm, 16px);
  font-size: var(--font-small, 0.875rem);
}

.comparison-box.after .comparison-label {
  color: var(--color-accent-hover, #FF833E);
}

/* =====================================================
   QR CODE PLACEHOLDER
   ===================================================== */

.qr-placeholder {
  width: 144px;
  height: 144px;
  background: var(--color-bg-alt, #FAFAF5);
  border: 2px dashed var(--color-border, #1A1A1A);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-secondary, #525252);
}

/* =====================================================
   FOUNDER IMAGE (Hero Section)
   ===================================================== */

/* Wrapper for image + blob */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(129, 100, 72, 0.16) 0%, rgba(95, 72, 50, 0.04) 100%),
    radial-gradient(circle at 55% 15%, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0) 26%);
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  border-radius: 0 34px 34px 180px;
}

/* Silver blob behind image */
.hero-blob {
  position: absolute;
  width: 78%;
  height: 78%;
  top: 46%;
  left: 47%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
      rgba(236, 214, 187, 0.76) 0%,
      rgba(221, 193, 165, 0.52) 34%,
      rgba(182, 145, 109, 0.18) 62%,
      transparent 90%);
  border-radius: 38% 62% 53% 47% / 52% 38% 62% 48%;
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
  animation: blob-float 8s ease-in-out infinite;
  transition: transform 0.4s ease-out, border-radius 0.4s ease-out;
}

/* Blob morphing animation */
@keyframes blob-float {

  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    transform: translate(-52%, -48%) scale(1.02);
  }

  50% {
    border-radius: 60% 40% 65% 35% / 50% 60% 40% 50%;
    transform: translate(-48%, -52%) scale(1.04);
  }

  75% {
    border-radius: 45% 55% 50% 50% / 60% 45% 55% 40%;
    transform: translate(-50%, -50%) scale(1.01);
  }
}

/* Hover bounce effect */
.hero-image-wrapper:hover .hero-blob {
  transform: translate(-50%, -50%) scale(1.15);
  border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
  animation-play-state: paused;
}

.hero-photo-accent {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-photo-accent--top {
  top: 0;
  left: -10%;
  width: 56%;
  height: 24%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 0 0 100% 10%;
}

.hero-photo-accent--bottom {
  left: -2%;
  bottom: -18%;
  width: 62%;
  height: 34%;
  background: var(--color-bg-alt);
  border-radius: 56% 44% 0 0;
}

/* Founder image (on top of blob) */
.founder-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0;
}

@media (min-width: 768px) {
  .founder-image {
    max-width: none;
    border-radius: 0;
  }

  .hero-blob {
    width: 80%;
    height: 82%;
    filter: blur(34px);
  }
}

/* =====================================================
   ORGANIC BACKGROUND BLOBS - Visual Interest
   ===================================================== */

/* Hero Section - Top left blob */
#hero {
  position: relative;
  overflow: visible;
  padding-top: 0;
}

#hero .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

#hero::before {
  content: '';
  position: absolute;
  width: calc(320px * var(--blob-size));
  height: calc(320px * var(--blob-size));
  background: radial-gradient(circle,
      rgba(239, 224, 207, 0.76) 0%,
      rgba(239, 224, 207, 0.4) 40%,
      transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: -24px;
  left: -18px;
  z-index: -1;
  filter: blur(28px);
  animation: blob-morph-slow var(--blob-animation-speed) ease-in-out infinite;
}

/* Services/Packages Section - Right blob */
#services {
  position: relative;
  overflow: hidden;
}

#services h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.02;
}

#services::before {
  content: '';
  position: absolute;
  width: calc(400px * var(--blob-size));
  height: calc(400px * var(--blob-size));
  background: radial-gradient(ellipse,
      rgba(var(--blob-color-r), var(--blob-color-g), var(--blob-color-b), var(--blob-opacity)) 0%,
      rgba(var(--blob-color-r), var(--blob-color-g), var(--blob-color-b), calc(var(--blob-opacity) * 0.5)) 35%,
      transparent 65%);
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  top: 20%;
  right: -100px;
  z-index: -1;
  filter: blur(var(--blob-blur));
  animation: blob-morph-slow var(--blob-animation-speed) ease-in-out infinite reverse;
}

.services-headshot {
  width: 110%;
  height: 110%;
  min-height: 488px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  object-fit: contain;
  object-position: bottom center;
  align-self: stretch;
  justify-self: stretch;
  margin-bottom: 0;
  mix-blend-mode: normal;
}

@media (max-width: 1024px) {
  .services-headshot {
    display: none;
  }
}

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

/* Testimonials Section - Left blob */
#testimonials {
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  width: calc(380px * var(--blob-size));
  height: calc(380px * var(--blob-size));
  background: radial-gradient(circle,
      rgba(var(--blob-color-r), var(--blob-color-g), var(--blob-color-b), var(--blob-opacity)) 0%,
      rgba(var(--blob-color-r), var(--blob-color-g), var(--blob-color-b), calc(var(--blob-opacity) * 0.5)) 40%,
      transparent 70%);
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  bottom: 15%;
  left: -100px;
  z-index: -1;
  filter: blur(var(--blob-blur));
  animation: blob-morph-slow calc(var(--blob-animation-speed) * 0.9) ease-in-out infinite;
}

/* Slow morphing animation for background blobs */
@keyframes blob-morph-slow {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: scale(1);
  }

  33% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    transform: scale(1.03);
  }

  66% {
    border-radius: 60% 40% 65% 35% / 50% 60% 40% 50%;
    transform: scale(1.05);
  }
}

/* Reduce blob visibility on mobile for performance */
@media (max-width: 768px) {
  :root {
    --blob-size: 0.6;
    --blob-opacity: 0.35;
    --blob-blur: 35px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  :root {
    --blob-animation-speed: 0s;
  }

  #hero::before,
  #services::before,
  #testimonials::before {
    animation: none;
  }
}

/* =====================================================
   TESTIMONIAL CAROUSEL V2 - Mixed Layout (Varied Widths)
   ===================================================== */

.testimonials-section-v2 {
  overflow: hidden;
  position: relative;
  background: var(--color-bg, #ffffff);
}

.section-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary, #525252);
  margin-bottom: var(--spacing-xs, 8px);
  border-left: 3px solid var(--color-accent, #FABC1C);
  padding-left: 8px;
}

/* Carousel wrapper */
.testimonial-carousel-wrapper-v2 {
  position: relative;
  padding-bottom: var(--spacing-xl, 48px);
  max-width: 1480px;
  margin-inline: auto;
}

/* Track - horizontal scroll container */
.testimonial-track-v2 {
  display: flex;
  gap: var(--spacing-md, 24px);
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Responsive edge padding - feels natural on all screen sizes */
  padding: var(--spacing-md, 24px) clamp(24px, 5vw, 80px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
}

.testimonial-track-v2.has-overflow {
  justify-content: flex-start;
}

.testimonial-track-v2::-webkit-scrollbar {
  display: none;
}

/* Ensure last card has trailing space matching start */
.testimonial-track-v2::after {
  content: '';
  flex-shrink: 0;
  width: clamp(24px, 5vw, 80px);
}

/* =====================================================
   TCARD - Base Card Styles
   ===================================================== */

.tcard {
  position: relative;
  border-radius: 18px;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: grab;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  user-select: none;
  -webkit-user-select: none;
  /* Container queries support */
  container-type: inline-size;
}

.tcard-standard {
  width: clamp(320px, 28vw, 420px);
  min-height: 380px;
  padding: 34px 28px 28px;
  background: #ffffff;
  border: 1px solid rgba(190, 171, 151, 0.26);
  box-shadow: 0 18px 38px rgba(72, 50, 33, 0.08);
}

.tcard-standard .tcard-quote-icon {
  position: static;
  margin-bottom: 18px;
  font-size: 3.4rem;
  color: var(--color-accent-hot);
  opacity: 0.18;
}

.tcard-standard .tcard-quote {
  flex-grow: 1;
  color: var(--color-text-main);
}

.tcard-standard .tcard-author {
  width: 100%;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(190, 171, 151, 0.22);
}

/* Text Cards - Narrower width */
.tcard-text {
  width: clamp(320px, 28vw, 560px);
  padding: var(--spacing-xl, 48px) var(--spacing-md, 24px);
}

/* Image Cards - Wider width */
.tcard-image {
  width: clamp(320px, 32vw, 400px);
  position: relative;
}

.tcard-wide {
  width: clamp(320px, 32vw, 600px);
}

/* =====================================================
   TEXT CARD VARIANTS
   ===================================================== */

/* Accent color (Yellow) */
.tcard-accent {
  background: var(--gradient-brand);
  color: var(--color-text-main, #1a1a1a);
}

/* Neutral (White/Light gray) */
.tcard-neutral {
  background: var(--color-bg, #ffffff);
  color: var(--color-text-main, #1a1a1a);
  border: 1px solid var(--color-border-light, #e5e5e5);
}

/* Quote icon */
.tcard-quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 24px;
  font-weight: 700;
}

/* Quote text */
.tcard-quote {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

.tcard-quote p {
  margin: 0 0 1em 0;
}

.tcard-quote p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   FEATURED CARDS - Hero-style with centered large text
   ===================================================== */

/* Featured card layout - quote centered vertically, all left-aligned */
.tcard-featured {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: var(--spacing-xl, 48px) var(--spacing-md, 24px);
}

/* Hide the decorative quote icon on featured cards */
.tcard-featured .tcard-quote-icon {
  display: none;
}

/* Large centered quote text */
.tcard-featured .tcard-quote {
  flex-grow: 1;
  display: flex;
  align-items: center;
  max-width: 100%;
}

/* Hero quote - high specificity for large text */
.tcard-quote.tcard-quote-hero,
.tcard-quote.tcard-quote-hero p {
  font-size: clamp(28px, 14cqi, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: white;
}

/* Author at bottom, left-aligned like other cards */
.tcard-featured .tcard-author {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: var(--spacing-md, 24px);
  align-self: flex-start;
}

/* Author section */
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--spacing-md, 24px);
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--color-text-main-rgb, 0, 0, 0), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  object-fit: cover;
}

.tcard-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.tcard-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
  min-width: 0;
}

.tcard-name {
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard-role {
  font-size: 0.75rem;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: -4px;
}

/* =====================================================
   IMAGE CARD STYLES
   ===================================================== */

.tcard-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tcard-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Quote text box - glassmorphism style */
.tcard-image-quote {
  position: absolute;
  top: var(--spacing-md, 24px);
  left: var(--spacing-md, 24px);
  right: var(--spacing-md, 24px);
  z-index: 3;
  margin: 0;
  /* Glass effect */
  background: rgba(var(--color-text-main-rgb, 0, 0, 0), 0.3);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.12);
  box-shadow: 0 8px 32px rgba(var(--color-text-main-rgb, 0, 0, 0), 0.2);
  /* Bold sans-serif typography */
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Author on image cards - glass style */
.tcard-image .tcard-author {
  position: absolute;
  bottom: var(--spacing-md, 24px);
  left: var(--spacing-md, 24px);
  z-index: 3;
  padding: 16px 20px;
  /* Glass effect */
  background: rgba(var(--color-text-main-rgb, 0, 0, 0), 0.3);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 12px;
  border: 1px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.12);
  box-shadow: 0 8px 32px rgba(var(--color-text-main-rgb, 0, 0, 0), 0.2);
  width: auto;
  max-width: 70%;
}

.tcard-author-light {
  color: #ffffff;
}

.tcard-author-light .tcard-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.tcard-author-light .tcard-role {
  opacity: 0.85;
  font-size: 0.8rem;
}

/* =====================================================
   TESTIMONIAL CAROUSEL - RESPONSIVE
   ===================================================== */

@media (max-width: 968px) {
  .tcard-text {
    width: clamp(260px, 70vw, 320px);
  }

  .tcard-image,
  .tcard-wide {
    width: clamp(280px, 75vw, 360px);
  }

  .tcard {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .tcard-text {
    width: min(300px, 85vw);
    padding: var(--spacing-md, 24px);
  }

  .tcard-image,
  .tcard-wide {
    width: min(320px, 88vw);
  }

  .tcard {
    min-height: 360px;
  }

  .tcard-quote-icon {
    font-size: 3rem;
    top: 16px;
    left: 20px;
  }

  .tcard-quote {
    font-size: 0.875rem;
  }

  /* Hero quote keeps large text on mobile */
  .tcard-quote.tcard-quote-hero,
  .tcard-quote.tcard-quote-hero p {
    font-size: clamp(24px, 12cqi, 36px);
    line-height: 1.25;
  }

  .tcard-image-quote {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .tcard-image .tcard-author {
    padding: 12px 16px;
  }
}

/* Dragging state */
.testimonial-track-v2.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonial-track-v2.dragging .tcard {
  cursor: grabbing;
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .tcard {
    transition: none !important;
  }
}

/* =====================================================
   MISSION CTA
   ===================================================== */

#mission {
  padding-top: clamp(86px, 7vw, 112px);
  padding-bottom: clamp(72px, 6vw, 96px);
  background:
    linear-gradient(180deg, rgba(36, 26, 21, 0.98) 0%, rgba(28, 20, 16, 1) 100%);
  color: var(--color-text-inverse);
}

#mission .container {
  max-width: 1540px;
}

#mission .mission-quote {
  max-width: 1180px;
  margin-inline: auto;
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff8f2;
  text-wrap: balance;
}

#mission .mt-lg {
  margin-top: clamp(34px, 4vw, 56px);
}

#mission .btn-accent {
  min-width: 286px;
  justify-content: center;
  padding: 22px 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e5c2a8 0%, #bd7950 100%);
  color: #241a15;
  box-shadow: none;
}

#mission .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  #mission {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  #mission .mission-quote {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.12;
  }

  #mission .btn-accent {
    width: min(100%, 320px);
    min-width: 0;
    padding: 18px 26px;
  }
}

/* =====================================================
   PAGE MOTION + BACK TO TOP
   ===================================================== */

.motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    transform 0.75s var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1));
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-rise {
  transition-delay: var(--motion-delay, 0ms);
}

.motion-soft-scale {
  transform: translateY(18px) scale(0.985);
}

.motion-soft-scale.is-visible {
  transform: translateY(0) scale(1);
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 80;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 248, 242, 0.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 26, 21, 0.88);
  color: #fff8f2;
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: 1.65rem;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(36, 26, 21, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 0.28s ease,
    transform 0.28s var(--ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
    background 0.28s ease,
    color 0.28s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-accent, #a5531f);
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 248, 242, 0.78);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .motion-soft-scale,
  .motion-rise {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-to-top {
    transition: opacity 0.18s ease;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}

/* =====================================================
   PAIN POINTS ENHANCEMENTS (Phase 1)
   ===================================================== */

/* Layout Columns for Right Content */
.content-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.text-column {
  flex: 1;
  min-width: 0;
}

.visual-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-width: 0;
}

/* Typography Enhancements */
.text-column .hook {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-md, 24px);
}

.text-column .hook strong {
  color: var(--color-accent-hot, #FF6611);
  font-weight: 400;
}

.text-column .quote-highlight {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-text-main);
  padding: 0;
  background: none;
  border-left: none;
  line-height: 1.8;
  margin-bottom: var(--spacing-md, 24px);
  text-wrap-style: pretty;
}

/* Marker highlight effect — per-line via box-decoration-break */
.hl {
  --mark-color: 255 100 185;
  --mark-bg-angle: 176deg;
  font-family: 'Mansalva', sans-serif;
  padding: 2px 6px;
  border-radius: 3px 5px 3px 5px;
  background:
    linear-gradient(var(--mark-bg-angle),
      rgb(var(--mark-color) / 55%) 0%,
      rgb(var(--mark-color) / 25%) 40%,
      rgb(var(--mark-color) / 45%) 60%,
      rgb(var(--mark-color) / 55%) 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Yellow (default) */
.hl.mark-yellow {
  --mark-color: 255 232 62;
  --mark-bg-angle: 174deg;
}

/* Green */
.hl.mark-green {
  --mark-color: 91 233 92;
  --mark-bg-angle: 170deg;
}

/* Pink */
.hl.mark-pink {
  --mark-color: 255 100 185;
  --mark-bg-angle: 176deg;
}

/* Legacy risk bubble disabled in favor of unified detail cards */
.risk-bubble-wrapper {
  display: none;
}

/* Extra top spacing on in-column bubbles (Panels 1 & 2) — desktop only */
@media (min-width: 769px) {
  .text-column > .risk-bubble-wrapper {
    margin-top: 60px;
  }
}

/* Default empty state bubble */
.pain-panel-default.active {
  display: block;
  min-height: 0;
}

.risk-bubble-default {
  max-width: 440px;
  margin: 0 auto;
}

.risk-bubble-default .risk-content {
  text-align: center;
}

/* Post-it Self-Audit */
.self-audit {
  background-color: #efe1c9;
  padding: 28px 24px 40px;
  border: none;
  border-radius: 0 0 0 30px/45px;
  box-shadow:
    inset 0 10px 10px rgb(0 0 0 / 0%),
    inset 0px 1px 0px rgba(0, 0, 0, 0.1),
    0 5px 6px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: rotate(0.8deg);
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

/* Curled corner — bottom-left */
.self-audit::before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 25px;
  background: #efe1c9;
  box-shadow:
    3px -2px 10px rgba(0, 0, 0, 0.2),
    inset 15px -15px 15px rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: skewX(25deg);
}

/* Decorative bottom curve */
.self-audit::after {
  content: '';
  display: block;
  position: absolute;
  width: 75%;
  height: 20px;
  border-top: 3px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  bottom: 0;
  left: 10%;
}

.self-audit h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: var(--spacing-sm, 16px);
  color: var(--color-text-main);
  text-align: center;
}

.self-audit ol {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-sm, 16px) 0;
}

.self-audit ol li {
  margin-bottom: 14px;
  padding-left: 38px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-main);
}

.self-audit ol li::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3.5 2.5 L20 2 C20.5 2, 21.5 2.5, 21.5 3.5 L22 20 C22 20.5, 21.5 21.5, 20.5 21.5 L4 22 C3.5 22, 2.5 21.5, 2.5 20.5 L2 4 C2 3.5, 2.5 2.5, 3.5 2.5Z' stroke='%231a1a1a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Vary each checkbox slightly for hand-drawn feel */
.self-audit ol li:nth-child(2)::before {
  transform: rotate(2deg);
}

.self-audit ol li:nth-child(3)::before {
  transform: rotate(-1.5deg) scaleX(0.97);
}

.self-audit ol li:nth-child(4)::before {
  transform: rotate(1deg) scaleY(0.98);
}

/* Done state — strikethrough + checked box */
.self-audit ol li.done {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.2s;
}

.self-audit ol li.done .text-secondary,
.self-audit ol li.done em {
  color: rgba(0, 0, 0, 0.25);
}

.self-audit ol li.done::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3.5 2.5 L20 2 C20.5 2, 21.5 2.5, 21.5 3.5 L22 20 C22 20.5, 21.5 21.5, 20.5 21.5 L4 22 C3.5 22, 2.5 21.5, 2.5 20.5 L2 4 C2 3.5, 2.5 2.5, 3.5 2.5Z' stroke='%231a1a1a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 12 L9.5 17 L18.5 6' stroke='%231a1a1a' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.self-audit .audit-intro {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-sm, 16px);
}

.self-audit .audit-conclusion {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.self-audit .text-secondary {
  color: var(--color-text-secondary);
}

.self-audit .text-sm {
  font-size: 0.8rem;
}

.self-audit .mt-md {
  margin-top: 24px;
}

/* Hand Arrow */
.hand-arrow-svg {
  display: block;
  margin: -6px auto 0;
  width: 40px;
  height: 36px;
}

/* Pain Pullquote — Centered Headline */
.pain-pullquote-poster {
  margin: var(--spacing-xl, 48px) 0;
  text-align: center;
}

.pain-pullquote-poster p {
  font-family: var(--font-heading);
  font-size: var(--text-4xl, 3.052rem);
  color: var(--color-text-secondary, #525252);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 900px;
}

/* "Which is you?" Visual Cue */
.which-is-you-cue {
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: var(--font-handwriting, 'Caveat', cursive);
  font-size: 1.8rem;
  color: var(--color-accent-hot, #FF6611);
  transform: rotate(-5deg);
  z-index: 10;
  pointer-events: none;
  font-weight: 700;
}

.which-is-you-cue::after {
  content: '⤵';
  display: block;
  font-family: monospace;
  /* Fallback */
  font-size: 2rem;
  margin-top: -10px;
  margin-left: 20px;
  transform: scaleX(1.5) rotate(10deg);
  line-height: 1;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .content-flex {
    flex-direction: column;
    gap: 24px;
  }

  .hand-arrow-svg {
    display: none;
  }

  .pain-pullquote-poster p {
    font-size: var(--text-2xl, 1.953rem);
  }

  .which-is-you-cue {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 8px;
    display: block;
    text-align: center;
    transform: rotate(0);
  }

  .which-is-you-cue::after {
    display: inline-block;
    margin: 0 0 0 8px;
    transform: rotate(90deg);
  }
}

/* =========================================
   CASE STUDY REDESIGN (Split Layout)
   ========================================= */

.case-study-section {
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(245, 232, 219, 0.86), transparent 34%),
    linear-gradient(180deg, rgba(252, 248, 241, 0.96) 0%, rgba(246, 238, 228, 0.84) 100%);
}

.case-study-split {
  display: block;
}

.case-right-scroll {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 44px);
  padding-top: clamp(4px, 1vw, 12px);
}

.case-context {
  max-width: 42rem;
}

.case-context h2 {
  font-size: clamp(2.4rem, 4.1vw, 4.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.case-context p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(53, 38, 27, 0.84);
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 38px);
  align-items: stretch;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(28px, 4vw, 64px);
}

.case-story-grid .case-story-card:nth-child(1) {
  margin-top: clamp(24px, 5vw, 72px);
}

.case-story-grid .case-story-card:nth-child(2) {
  margin-top: clamp(108px, 10vw, 172px);
}

.case-story-grid .case-story-card:nth-child(3) {
  margin-top: 0;
}

.case-story-grid .case-story-card:nth-child(4) {
  margin-top: clamp(84px, 8vw, 136px);
}

@media (max-width: 1200px) {
  .case-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    padding-inline: 0;
  }

  .case-story-grid .case-story-card:nth-child(1),
  .case-story-grid .case-story-card:nth-child(2),
  .case-story-grid .case-story-card:nth-child(3),
  .case-story-grid .case-story-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .case-study-split {
    gap: 32px;
  }

  .case-context {
    max-width: none;
  }

  .case-right-scroll {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .case-story-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PROCESS SECTION REDESIGN (How I Help)
   ========================================= */

#how-i-help {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(244, 224, 197, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(251, 247, 241, 0.98) 0%, rgba(246, 238, 228, 0.92) 100%);
}

#how-i-help::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(181, 132, 72, 0.08), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(222, 194, 157, 0.16), transparent 20%);
  pointer-events: none;
}

#how-i-help .container {
  position: relative;
  z-index: 1;
}

.process-intro {
  max-width: 52rem;
  margin: 0 auto clamp(44px, 6vw, 76px);
  text-align: center;
}

.process-eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(121, 86, 47, 0.84);
}

.process-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.process-intro-copy {
  margin: 0 auto;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(59, 42, 28, 0.8);
}

.process-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 40px);
  align-items: stretch;
}

.process-editorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 clamp(10px, 1.5vw, 18px) clamp(10px, 1.5vw, 18px);
}

.process-editorial-rail {
  width: 100%;
  height: 2px;
  margin-bottom: clamp(28px, 4vw, 40px);
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(165, 131, 97, 0.22) 100%);
}

.process-editorial-badge {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #1a1714;
  color: #f8efe6;
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: 1.72rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(33, 22, 13, 0.14);
}

.process-editorial-card h3 {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  color: #241914;
}

.process-editorial-copy {
  padding-right: 10px;
}

.process-editorial-copy p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.9;
  color: rgba(48, 35, 24, 0.82);
}

.process-editorial-output {
  margin-top: auto;
  min-height: 112px;
  padding-top: 26px;
  border-top: 1px solid rgba(150, 117, 84, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.process-output-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: var(--color-accent-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.process-editorial-output p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(48, 35, 24, 0.86);
}

.process-implementation-card {
  margin-top: clamp(34px, 5vw, 60px);
  padding: clamp(26px, 3vw, 38px);
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.88) 0%, rgba(247, 237, 223, 0.92) 100%);
  border: 1px solid rgba(164, 129, 93, 0.16);
  box-shadow: 0 22px 44px rgba(76, 50, 25, 0.08);
}

.process-implementation-label {
  margin: 0 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(121, 86, 47, 0.84);
}

.process-implementation-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.process-implementation-copy p:last-child {
  margin-bottom: 0;
}

.process-implementation-copy p,
.process-implementation-points p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(51, 37, 25, 0.82);
}

.process-implementation-points {
  display: grid;
  gap: 14px;
}

.process-implementation-points p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 251, 246, 0.74);
  border: 1px solid rgba(164, 129, 93, 0.12);
}

@media (max-width: 1080px) {
  .process-editorial-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 720px;
    margin-inline: auto;
  }

  .process-editorial-card {
    padding: 24px 22px;
    text-align: center;
    border: 1px solid rgba(164, 129, 93, 0.12);
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.64);
  }

  .process-implementation-card {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .process-editorial-copy {
    padding-right: 0;
  }

  .process-editorial-copy p,
  .process-editorial-output p,
  .process-implementation-copy p,
  .process-implementation-points p {
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }

  .process-editorial-output {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .process-intro {
    text-align: center;
    margin-bottom: 30px;
  }

  .process-intro-copy {
    margin-inline: auto;
    line-height: 1.55;
  }

  .process-editorial-badge {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    font-size: 1.5rem;
  }

  .process-editorial-output {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    min-height: 0;
    text-align: center;
  }

  .process-editorial-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .process-editorial-copy p,
  .process-editorial-output p,
  .process-implementation-copy p,
  .process-implementation-points p {
    line-height: 1.5;
  }

  .process-implementation-card {
    padding: 22px 18px;
    gap: 18px;
  }

  .process-implementation-points {
    gap: 10px;
  }
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
  background:
    linear-gradient(180deg, rgba(244, 236, 226, 0.82) 0%, rgba(252, 248, 243, 0.98) 100%);
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(var(--color-accent-rgb), 0.14);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 600;
  line-height: 1.5;
  color: #271c16;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(var(--color-accent-rgb), 0.82);
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(164, 129, 93, 0.12);
}

.faq-answer p {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(50, 37, 25, 0.82);
}

@media (max-width: 980px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .faq-question,
  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-question::after {
    right: 20px;
  }
}
