/* =====================================================
   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 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-right: var(--spacing-md, 24px);
}

/* hero-badge base styles in components.css - only spacing override here */
.hero-badge {
  margin-bottom: var(--spacing-md, 24px);
}

.hero-content h1 {
  margin-bottom: var(--spacing-md, 24px);
  line-height: 1.1;
}

/* Subtext - primary supporting line */
.hero-subtext {
  font-size: 1.2rem;
  color: var(--color-text, #1a1a1a);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--spacing-sm, 16px);
}

/* Description - secondary text */
.hero-description {
  font-size: 1rem;
  color: var(--color-text-secondary, #525252);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg, 32px);
  max-width: 480px;
}

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

/* 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-content {
    padding-right: 0;
  }

  .hero-badge {
    margin-bottom: var(--spacing-sm, 16px);
  }

  .hero-content h1 {
    margin-bottom: var(--spacing-sm, 16px);
  }

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

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md, 24px);
  }

  .btn-hero {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-md, 24px);
  }

  .hero-content .social-proof {
    width: 100%;
  }
}

/* =====================================================
   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);
}

/* =====================================================
   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 - Two-Column Sticky Nav Layout
   ===================================================== */

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

/* ----- LEFT COLUMN: Sticky Navigation ----- */
.pain-nav {
  position: sticky;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs, 8px);
}

.pain-nav-item {
  appearance: none;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  width: 100%;
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm, 16px);
  padding: var(--spacing-md, 24px);
  border-radius: var(--radius-md, 12px);

  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;

  /* Minimal outlined style — matches pain panel borders */
  background: var(--color-bg-elevated, #FFFFFF);
  border: 1px solid var(--color-border-light, #E5E5E5);
  color: var(--color-text-secondary, #525252);

  transition:
    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 {
  border-color: var(--color-text-main, #1A1A1A);
  color: var(--color-text-main, #1A1A1A);
}

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

/* Active state — subtle emphasis (text-shadow instead of font-weight to prevent layout shift) */
.pain-nav-item.active {
  border-color: var(--color-text-main, #1A1A1A);
  color: var(--color-text-main, #1A1A1A);
  text-shadow: 0.4px 0 0 currentColor;
  box-shadow: var(--shadow-sm);
}

.pain-nav-item::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--color-accent-warm, #FF833E);
  border-radius: 4px 0 0 4px;
  transition: height 0.25s ease;
}

.pain-nav-item.active::after,
.pain-nav-item.pain-nav-hint::after {
  height: 60%;
}

.pain-nav-item.pain-nav-hint {
  border-color: var(--color-accent-warm, #FF833E);
  color: var(--color-text-main, #1A1A1A);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.pain-nav-number {
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.5;
  min-width: 24px;
  padding-top: 2px;
}

/* Number inherits card text color */

.pain-nav-text {
  flex: 1;
  padding-right: var(--spacing-sm, 16px);
}

/* Pain Point Thumbnail Image */
.pain-nav-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm, 8px);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Opacity Rules: 
   Inactive: 40% (base)
   Hover: 60%
   Active: 100% 
*/
.pain-nav-item:hover .pain-nav-img {
  opacity: 0.6;
}

.pain-nav-item.active .pain-nav-img {
  opacity: 1;
}

/* Vertically center tab content */
.pain-nav-item {
  align-items: center;
}

/* ----- RIGHT COLUMN: Content Panels ----- */
.pain-content-area {
  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);
  /* consistent internal spacing */
  box-shadow: var(--shadow-sm);
  min-height: 400px;
  position: relative;
}

.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-panel-title {
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: 36px;
  margin-bottom: 60px;
  padding: 14px;
  background-color: var(--color-accent-warm, #FF833E);
  color: #FFFFFF;
  border-radius: var(--radius-sm, 8px);
  text-align: center;
}

@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: 280px 1fr;
    gap: var(--spacing-lg, 32px);
  }

  .pain-nav {
    top: 90px;
  }

  .pain-nav-item {
    padding: var(--spacing-sm, 16px);
    font-size: 1rem;
  }
}

/* ----- 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: 1px solid var(--color-border-light, #E5E5E5);
    margin-bottom: var(--spacing-md, 24px);
    scrollbar-width: none;
  }

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

  .pain-nav {
    padding-left: 0;
  }

  .pain-nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: var(--radius-sm, 8px);
    padding: var(--spacing-sm, 16px) var(--spacing-md, 24px);
    white-space: nowrap;
    font-size: 1rem;
    min-width: max-content;
    transform: none !important;
    margin-top: 0;
    box-shadow: none;
  }

  .pain-nav-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--color-text-main, #1A1A1A);
  }

  .pain-nav-number {
    display: none;
  }

  /* Mobile: Thumbnails become smaller chips */
  .pain-nav-img {
    width: 48px;
    height: 48px;
    margin-left: 8px;
    opacity: 1;
    /* Always visible on mobile for clarity */
    border-radius: 6px;
  }

  .pain-nav-item {
    min-height: auto;
    /* Reset fixed height for mobile */
    align-items: center;
    padding: 12px 16px;
  }

  .pain-nav-text {
    padding-right: 0;
  }

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

  .pain-panel-title {
    font-size: 28px;
    margin-bottom: 36px;
    padding: 12px;
  }
}

/* ----- RESPONSIVE: Small mobile ----- */
@media (max-width: 480px) {
  .pain-nav-item {
    padding: var(--spacing-xs, 8px) var(--spacing-sm, 16px);
    font-size: 0.9rem;
  }

  .pain-panel-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

/* =====================================================
   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 {
  background-color: var(--color-text-main, #0a0a0a);
  color: var(--color-bg, #fff);
  padding: 80px 0 0;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.1);
}

.footer-cta-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.5);
  margin-bottom: var(--spacing-sm, 16px);
}

.footer-cta-heading {
  font-family: var(--font-serif);
  font-size: var(--font-h3, 1.75rem);
  font-weight: 500;
  color: var(--color-bg, #fff);
  line-height: 1.3;
  margin-bottom: var(--spacing-xl, 48px);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: transparent;
  color: var(--color-bg, #fff);
  font-family: var(--font-sans);
  font-size: var(--text-base, 1rem);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background: var(--color-accent, #FABC1C);
  color: var(--color-text-main, #1a1a1a);
  border-color: var(--color-accent, #FABC1C);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

/* Main Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* Brand & Social Column */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--spacing-sm, 12px);
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-bg, #fff);
  line-height: 1.65;
  margin: 0 0 36px 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.3);
  color: var(--color-bg, #fff);
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--color-accent, #FABC1C);
  color: var(--color-text-main, #1a1a1a);
  border-color: var(--color-accent, #FABC1C);
}

/* Contact Info Grid */
.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
}

.footer-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.4);
  margin: 0 0 16px 0;
}

.footer-value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.9);
  line-height: 1.5;
  margin: 0;
}

.footer-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Contact & Links Column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-heading {
  font-family: var(--font-heading, 'DM Serif Display');
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-bg, #fff);
  margin: 0;
  line-height: 1.2;
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
}

.footer-contact-group .footer-label {
  margin-bottom: 8px;
}

/* Image Column */
.footer-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-portrait {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(var(--color-bg-rgb, 255, 255, 255), 0.1);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--color-bg, #fff);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-cta {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .footer-cta-heading {
    font-size: 1.5rem;
  }

  .footer-cta-btn {
    width: 100%;
    padding: 16px 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-tagline {
    margin-bottom: 24px;
  }

  .footer-social {
    justify-content: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 0;
  }

  .footer-legal {
    gap: 24px;
  }
}

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

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

.added-text {
  color: #dc2626;
  text-decoration: underline;
  text-decoration-color: #dc2626;
  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: #7c3aed;
  z-index: 3;
}

.avatar-circle:nth-child(2) {
  background: #0ea5e9;
  z-index: 2;
}

.avatar-circle:nth-child(3) {
  background: #10b981;
  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: var(--spacing-xl, 48px);
  }
}

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

@media (max-width: 968px) {
  .booking-left {
    position: static;
  }
}

/* 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;
}

.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) {
  .timeline-step {
    gap: var(--spacing-sm, 16px);
    padding-bottom: var(--spacing-sm, 16px);
  }

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

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

  .timeline-line {
    top: 40px;
    height: calc(100% - 40px);
  }
}

/* =====================================================
   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;
}

/* Silver blob behind image */
.hero-blob {
  position: absolute;
  width: 140%;
  height: 140%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
      rgba(180, 180, 180, 0.5) 0%,
      rgba(192, 192, 192, 0.35) 25%,
      rgba(169, 169, 169, 0.2) 50%,
      rgba(211, 211, 211, 0.1) 70%,
      transparent 90%);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  filter: blur(25px);
  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;
}

/* Founder image (on top of blob) */
.founder-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder-image {
    max-width: 100%;
    border-radius: 16px;
  }

  .hero-blob {
    width: 150%;
    height: 150%;
    filter: blur(30px);
  }
}

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

/* Hero Section - Top left blob */
#hero {
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: calc(450px * var(--blob-size));
  height: calc(450px * 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: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: -120px;
  left: -80px;
  z-index: -1;
  filter: blur(var(--blob-blur));
  animation: blob-morph-slow var(--blob-animation-speed) ease-in-out infinite;
}

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

#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: 130%;
  object-fit: contain;
  object-position: bottom center;
  align-self: end;
  margin-top: -190px;
  margin-bottom: calc(-1 * var(--spacing-2xl, 80px));
  mix-blend-mode: multiply;
}

@media (max-width: 1024px) {
  .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);
}

/* Track - horizontal scroll container */
.testimonial-track-v2 {
  display: flex;
  gap: var(--spacing-md, 24px);
  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::-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: 20px;
  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;
}

/* 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;
}

.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;
  }
}

/* =====================================================
   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;
}

/* Hand-Drawn Risk Bubble */
.risk-bubble-wrapper {
  position: relative;
  padding: 32px 28px;
  min-height: 180px;
}

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

.risk-bubble-wrapper .risk-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.risk-bubble-wrapper .risk-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.risk-bubble-wrapper .risk-content h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-accent-hot, #FF6611);
  letter-spacing: 0.02em;
}

.risk-bubble-wrapper .risk-content p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.risk-bubble-wrapper .risk-content p strong {
  color: var(--color-accent-hot, #FF6611);
}

/* Default empty state bubble */
.pain-panel-default.active {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.risk-bubble-default {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.risk-bubble-wrapper .risk-content p+p {
  margin-top: 8px;
}

/* Full-width risk bubble (outside content-flex) */
.risk-bubble-full {
  max-width: 700px;
  margin: var(--spacing-xl, 48px) auto 0;
}

/* Post-it Self-Audit */
.self-audit {
  background-color: #FFF9C4;
  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: #FFF9C4;
  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: visible;
  /* Allow sticky to work */
}

.case-study-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column: Sticky Image + Quote */
.case-left-sticky {
  position: sticky;
  top: 100px;
  /* Adjust based on header height */
  height: fit-content;
  z-index: 1;
}

.case-visual-card {
  position: relative;
  border-radius: var(--radius-md, 12px);
  border: 5px solid var(--color-accent);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 30px 52px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.case-visual-title {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
}

.case-visual-meta {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.96;
}

.case-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

.case-quote-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  padding: 40px 30px 30px;
  color: #fff;
}

.case-quote-text {
  font-family: var(--font-serif);
  /* Magazine style */
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-quote-author {
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Right Column: Narrative Flow */
.case-right-scroll {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.case-context {
  position: relative;
  z-index: 2;
}

.case-context h2,
.case-context h3 {
  font-size: var(--font-h2, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.case-meta {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 24px;
  border-radius: 0 var(--radius-sm, 4px) var(--radius-sm, 4px) 0;
  backdrop-filter: blur(4px);
}

/* Vertical Results (Before/After) */
.case-results-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-card {
  padding: 28px 28px 20px;
  border-radius: var(--radius-lg, 12px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* BEFORE Card - Muted gray/neutral tones */
.result-card.before {
  background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
  border-left: 4px solid #999;
  border: 1px solid #ddd;
  color: #666;
}

.result-card.before .card-label {
  background: #999;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: -12px;
  right: 20px;
}

/* AFTER Card - Gradient border style (matches pricing-card--compact) */
.result-card.after {
  padding: 20px 28px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #ffa7a7, var(--color-accent)) border-box;
}

.result-card.after .card-label {
  background: linear-gradient(135deg, #FABC1C 0%, #FF833E 100%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: -12px;
  right: 20px;
}

/* Result Metrics - Clean layout with emoticons */
.result-metric {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
  padding-left: 30px;
  color: #333;
  position: relative;
}

.result-card.before .result-metric::before {
  content: "😔";
  position: absolute;
  left: 6px;
  font-size: 1rem;
}

.result-card.after .result-metric::before {
  content: "😊";
  position: absolute;
  left: 6px;
  font-size: 1rem;
}

.result-metric strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  display: inline-block;
  margin-right: 6px;
}

/* Card Summary Text */
.card-summary {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.result-card.after .card-summary {
  color: #555;
  font-weight: 500;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
  .case-results-vertical {
    gap: 24px;
  }

  .result-card {
    padding: 24px 20px;
  }

  .result-card.after {
    transform: scale(1);
  }

  .result-metric {
    font-size: 0.95rem;
    margin-bottom: 14px;
    padding-left: 12px;
  }

  .result-metric strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
  }

  .card-summary {
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 16px;
  }
}

/* Key Insight Box */
.case-insight {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.case-insight h4 {
  color: var(--color-accent-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
}

.case-insight p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.case-insight .text-sm {
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .case-study-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-left-sticky {
    position: static;
  }

  .case-context {
    margin-right: 0;
  }

  .case-visual-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .case-header-overlay {
    padding: 22px 22px 44px;
  }

  .case-visual-title {
    font-size: 1.25rem;
  }

  .case-visual-meta {
    font-size: 0.9rem;
  }
}

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

.process-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Column: Scrolling Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  padding-bottom: 20vh;
  /* Extra space at bottom */
}

.process-step {
  min-height: 80vh;
  /* Each step takes full viewport height for scroll focus */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  opacity: 0.3;
  /* Dim by default */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.active {
  opacity: 1;
  transform: translateX(10px);
}

.process-step .phase-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-accent-light);
  /* Lighter accent for background number */
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.process-step h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.process-step p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-main);
  max-width: 500px;
}

/* Right Column: Sticky Visuals */
.process-visual-sticky {
  position: sticky;
  top: 100px;
  height: 600px;
  /* Fixed height for visual container */
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f8f8f8;
}

.process-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fill the container */
  padding: 0;
  /* Remove padding for full bleed */
  opacity: 0;
  transform: scale(1.05);
  /* Slight zoom for effect */
  transition: opacity 0.6s ease, transform 0.6s ease;
  background-color: #FAFAF5;
}

.process-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .process-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-visual-sticky {
    position: relative;
    top: 0;
    height: 300px;
    margin-bottom: 40px;
    order: -1;
    /* Show image on top on mobile */
  }

  .process-step {
    min-height: auto;
    padding: 40px 0;
    opacity: 1;
    /* Always visible on mobile */
  }
}
