/* ===== TPP USA SLEEP LANDING PAGE ===== */
/* Based on The Parenthood Project USA Brand Book */

/* ===== CSS VARIABLES ===== */
:root {
  --midnight-void: #0f0b15;
  --deep-velvet-plum: #1a0f18;
  --warm-sand: #fdf6e9;
  --neon-pink: #FF6B8A;
  --neon-pink-glow: rgba(255, 107, 138, 0.15);
  --neon-pink-strong: rgba(255, 107, 138, 0.4);
  --electric-blue: #00E5CC;
  --electric-blue-glow: rgba(0, 229, 204, 0.15);
  --electric-blue-strong: rgba(0, 229, 204, 0.4);
  --amber: #FFBD59;
  --amber-glow: rgba(255, 189, 89, 0.2);
  --rose-gold: #E8B4B8;
  --soft-mauve: #C9A0A0;

}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier Prime', monospace;
  font-size: 1.125rem;
  background: var(--midnight-void);
  color: var(--warm-sand);
  overflow-x: hidden;
  line-height: 1.8;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
}

/* ===== ALTAR CONTAINER ===== */
.altar-container {
  width: 100%;
  background: var(--deep-velvet-plum);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.altar-container::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--neon-pink-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== MOON MOTIFS ===== */
.moon {
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.moon-full {
  background: var(--warm-sand);
  box-shadow: 0 0 20px rgba(253, 246, 233, 0.4);
}

.moon-full.amber {
  background: var(--amber);
  box-shadow: 0 0 15px var(--amber-glow);
}

.moon-full.electric {
  background: var(--electric-blue);
  box-shadow: 0 0 15px var(--electric-blue-strong);
}

.moon-full.pink {
  background: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink-strong);
}

.moon-waxing {
  background: linear-gradient(90deg, var(--midnight-void) 25%, var(--warm-sand) 25%);
  border: 1px solid rgba(253, 246, 233, 0.3);
}

.moon-half {
  background: linear-gradient(90deg, var(--midnight-void) 50%, var(--warm-sand) 50%);
  border: 1px solid rgba(253, 246, 233, 0.3);
}

.moon-waning {
  background: linear-gradient(90deg, var(--warm-sand) 75%, var(--midnight-void) 75%);
  border: 1px solid rgba(253, 246, 233, 0.3);
}

.moon-new {
  background: var(--midnight-void);
  border: 1px solid rgba(253, 246, 233, 0.3);
}

.moon-crescent {
  background: var(--midnight-void);
  border: 1px solid rgba(253, 246, 233, 0.3);
  position: relative;
  overflow: hidden;
  width: 24px;
  height: 24px;
}

.moon-crescent::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 100%;
  background: var(--warm-sand);
  border-radius: 50%;
  right: -40%;
  box-shadow: 0 0 10px rgba(253, 246, 233, 0.3);
}

/* ===== STAR MOTIFS ===== */
.star {
  color: var(--warm-sand);
  opacity: 0.4;
  position: absolute;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ===== MOON PHASE DIVIDER ===== */
.moon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
  position: relative;
}

.moon-divider .line {
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.moon-divider .moon.center {
  width: 28px;
  height: 28px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    var(--neon-pink-glow) 0%,
    var(--electric-blue-glow) 40%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars .star:nth-child(1) { top: 15%; left: 15%; font-size: 0.8rem; animation-delay: 0s; }
.hero-stars .star:nth-child(2) { top: 25%; right: 20%; font-size: 1rem; animation-delay: 0.5s; }
.hero-stars .star:nth-child(3) { top: 50%; left: 8%; font-size: 0.6rem; animation-delay: 1s; }
.hero-stars .star:nth-child(4) { top: 65%; right: 12%; font-size: 0.7rem; animation-delay: 1.5s; }
.hero-stars .star:nth-child(5) { top: 80%; left: 20%; font-size: 0.9rem; animation-delay: 2s; }
.hero-stars .star:nth-child(6) { top: 35%; left: 5%; font-size: 0.5rem; animation-delay: 0.8s; }

.hero-moon {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 120px;
  height: 120px;
  opacity: 1;
}

.hero-moon svg {
  width: 100%;
  height: 100%;
}

.hero-logo {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.hero-logo-text {
  font-family: 'Shrikhand', cursive;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--warm-sand);
  display: block;
  text-shadow: 2px 2px 0 var(--deep-velvet-plum);
}

.hero-logo-location {
  font-family: 'Righteous', sans-serif;
  font-size: 1rem;
  color: var(--electric-blue);
  letter-spacing: 0.3em;
  text-shadow: 0 0 20px var(--electric-blue-strong);
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--rose-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: 'Shrikhand', cursive;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--warm-sand);
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  text-shadow:
    0 0 40px var(--neon-pink-glow),
    3px 3px 0 var(--deep-velvet-plum);
}

.hero-title span {
  color: var(--neon-pink);
  text-shadow:
    0 0 30px var(--neon-pink-strong),
    0 0 60px var(--neon-pink-strong),
    3px 3px 0 var(--deep-velvet-plum);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--rose-gold);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose-gold);
  max-width: 600px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 10;
  line-height: 1.8;
}

.hero-outcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--amber);
  max-width: 600px;
  margin: 0.25rem auto 1rem;
  position: relative;
  z-index: 10;
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

.hero-service-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--electric-blue);
  letter-spacing: 0.05em;
  margin: 0 auto 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hero-buttons .btn {
  min-width: 200px;
  text-align: center;
  z-index: 10;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--electric-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Shrikhand', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--warm-sand);
  text-shadow: 3px 3px 0 var(--deep-velvet-plum);
}

.section-title .highlight {
  color: var(--neon-pink);
  text-shadow:
    0 0 20px var(--neon-pink-strong),
    2px 2px 0 var(--deep-velvet-plum);
}

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose-gold);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ===== PAPER CARD ===== */
.paper {
  background: var(--warm-sand);
  color: var(--deep-velvet-plum);
  padding: 3rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  transform: rotate(-1deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.1);
}


/* Tape decoration */
.paper::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 100px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.paper-title {
  font-family: 'Shrikhand', cursive;
  font-size: 1.75rem;
  color: var(--neon-pink);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 0 var(--rose-gold);
}

.paper-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.9;
  color: #3d3024;
}

.paper-text p {
  margin-bottom: 1.5rem;
}

.paper-text p:last-child {
  margin-bottom: 0;
}

.paper-text em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 107, 138, 0.25) 60%);
  padding: 0 2px;
}

.paper-text strong {
  color: var(--deep-velvet-plum);
  font-weight: 700;
}

.paper-callout {
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: #1a0f18;
  background: linear-gradient(135deg, rgba(255, 189, 89, 0.25) 0%, rgba(255, 107, 138, 0.15) 100%);
  border-left: 4px solid var(--neon-pink);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.paper-sig {
  font-family: 'Shrikhand', cursive;
  font-size: 1rem;
  color: var(--amber);
  margin-top: 2rem;
  text-align: right;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
  position: relative;
}


.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.approach-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 107, 138, 0.15);
}

.approach-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--amber);
}

.approach-icon svg {
  width: 100%;
  height: 100%;
}

.approach-card h3 {
  font-family: 'Shrikhand', cursive;
  font-size: 1.25rem;
  color: var(--warm-sand);
  margin-bottom: 1rem;
}

.approach-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose-gold);
  line-height: 1.7;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 189, 89, 0.15);
  transform: translateX(-50%);
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--amber), var(--neon-pink));
  box-shadow: 0 0 8px var(--amber-glow);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Odd items: card on LEFT side */
.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

/* Even items: card on RIGHT side */
.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

/* Circle node — centered on timeline axis */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--midnight-void);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--amber-glow);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-number {
  font-family: 'Shrikhand', cursive;
  font-size: 1.4rem;
  color: var(--neon-pink);
}

/* Content card — takes ~45% width on each side */
.timeline-content {
  width: calc(50% - 50px);
}

/* Odd items: card sits on the left */
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

/* Even items: card sits on the right */
.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

/* Card styling */
.timeline-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* Arrow pointing toward the timeline line */
.timeline-item:nth-child(odd) .timeline-card::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 18px;
  border: 8px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.timeline-item:nth-child(even) .timeline-card::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 18px;
  border: 8px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.timeline-card-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 1rem;
}

.timeline-card-icon svg {
  width: 100%;
  height: 100%;
}

.timeline-label {
  font-family: 'Righteous', sans-serif;
  font-size: 1.1rem;
  color: var(--warm-sand);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.timeline-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.timeline-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--neon-pink);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.85;
}

/* Scroll animation states — circles */
.timeline-circle.tl-ready {
  transform: scale(0.6);
  opacity: 0;
}

.timeline-circle.tl-visible {
  transform: scale(1) !important;
  opacity: 1 !important;
  box-shadow: 0 0 30px var(--amber-glow), 0 0 60px rgba(255, 189, 89, 0.1);
}

/* Scroll animation states — cards slide in from alternating sides */
.timeline-item:nth-child(odd) .timeline-content.tl-ready {
  opacity: 0;
  transform: translateX(-40px);
}

.timeline-item:nth-child(even) .timeline-content.tl-ready {
  opacity: 0;
  transform: translateX(40px);
}

.timeline-content.tl-ready {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content.tl-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Scroll animation states — quotes delayed */
.timeline-quote.tl-ready {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-quote.tl-visible {
  opacity: 0.85 !important;
  transform: translateY(0) !important;
}

/* ===== PACKAGES SECTION ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.package-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.package-card.featured {
  border: 2px solid var(--neon-pink);
  box-shadow: 0 0 40px var(--neon-pink-glow);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 107, 138, 0.05) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-pink);
  color: var(--midnight-void);
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.package-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
  font-family: 'Shrikhand', cursive;
  font-size: 1.3rem;
  color: var(--warm-sand);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.package-price {
  font-family: 'Shrikhand', cursive;
  font-size: 2.25rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px var(--neon-pink-glow);
  line-height: 1;
}

.package-duration {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--rose-gold);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.package-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rose-gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  min-height: 48px;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--warm-sand);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--neon-pink);
  font-size: 0.7rem;
}

.package-explainer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--soft-mauve);
  line-height: 1.6;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.package-ideal {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.package-ideal strong {
  color: var(--amber);
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-ideal span {
  display: block;
  line-height: 1.5;
}

.package-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Add-On Cards */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.addon-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-icon {
  width: 40px;
  height: 40px;
  color: var(--electric-blue);
  flex-shrink: 0;
}

.addon-icon svg {
  width: 100%;
  height: 100%;
}

.addon-content h4 {
  font-family: 'Righteous', sans-serif;
  font-size: 1rem;
  color: var(--warm-sand);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.addon-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: var(--amber);
  background: rgba(255, 189, 89, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.addon-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.addon-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.addon-link:hover {
  color: var(--neon-pink);
}

.packages-note {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose-gold);
  margin-top: 3rem;
  opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Righteous', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--amber);
  color: var(--midnight-void);
  border-color: var(--amber);
  box-shadow: 0 0 30px var(--amber-glow);
}

.btn-primary:hover {
  background: var(--warm-sand);
  color: var(--midnight-void);
  border-color: var(--warm-sand);
  box-shadow: 0 0 40px var(--amber-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px var(--electric-blue-glow);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--midnight-void);
  box-shadow: 0 0 30px var(--electric-blue-strong);
  transform: translateY(-2px);
}

.btn-tertiary {
  background: transparent;
  color: var(--rose-gold);
  border-color: transparent;
  font-size: 0.75rem;
  padding: 0.6rem 1.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-tertiary:hover {
  color: var(--warm-sand);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2), transparent);
  position: relative;
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 2rem;
  border-left: 3px solid var(--amber);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: 'Shrikhand', cursive;
  font-size: 3rem;
  color: var(--neon-pink);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-sand);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--rose-gold);
  letter-spacing: 0.05em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 0 30px var(--neon-pink-glow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  text-align: center;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--rose-gold);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: var(--warm-sand);
}

.about-text em {
  color: var(--neon-pink);
  font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 107, 138, 0.05);
}

.faq-question span:first-child {
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  color: var(--electric-blue);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-right: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--neon-pink);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose-gold);
  line-height: 1.8;
}

/* ===== FORM SECTION ===== */
.form-wrapper {
  background: var(--warm-sand);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.form-note {
  text-align: center;
  color: var(--deep-velvet-plum);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
}

/* --- Step Indicator --- */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s;
}

.form-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Righteous', sans-serif;
  font-size: 0.85rem;
  border: 2px solid rgba(92, 64, 51, 0.2);
  color: rgba(92, 64, 51, 0.4);
  background: transparent;
  transition: all 0.3s;
}

.form-step-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  color: rgba(92, 64, 51, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.form-step.is-active .form-step-num {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: white;
}

.form-step.is-active .form-step-label {
  color: var(--deep-velvet-plum);
}

.form-step.is-completed .form-step-num {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: white;
}

.form-step.is-completed .form-step-label {
  color: var(--deep-velvet-plum);
}

.form-step-line {
  flex: 1;
  height: 2px;
  background: rgba(92, 64, 51, 0.15);
  margin: 0 0.25rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.form-step-line.is-completed {
  background: var(--electric-blue);
}

/* --- Step Navigation --- */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 64, 51, 0.1);
}

.form-nav-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* --- Intake Form Fields --- */

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.form-fieldset--step {
  margin: 0;
}

.form-legend {
  font-family: 'Righteous', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-velvet-plum);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(92, 64, 51, 0.15);
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row--half > .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-velvet-plum);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.form-label .required {
  color: var(--neon-pink);
}

.form-label .optional {
  font-weight: 400;
  font-style: italic;
  font-size: 0.85em;
  opacity: 0.6;
}

.form-label--small {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: var(--deep-velvet-plum);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(92, 64, 51, 0.2);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px var(--neon-pink-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(92, 64, 51, 0.35);
  font-style: italic;
}

/* Date input styling */
.form-input[type="date"] {
  cursor: pointer;
  position: relative;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 4px;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
  filter: invert(25%) sepia(15%) saturate(1200%) hue-rotate(350deg);
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  background: rgba(255, 107, 138, 0.1);
}

.form-input[type="date"]::-webkit-datetime-edit {
  font-family: 'Courier Prime', monospace;
  color: var(--deep-velvet-plum);
}

.form-input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

/* Timezone labels */
.form-tz-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--neon-pink);
  opacity: 0.8;
}

.form-tz-detected {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  color: var(--electric-blue);
  margin-top: 0.25rem;
  opacity: 0.8;
}

.form-textarea {
  resize: vertical;
  min-height: 60px;
}

/* Select / Dropdown */
.form-select {
  width: 100%;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: var(--deep-velvet-plum);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(92, 64, 51, 0.2);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c4033' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-select:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px var(--neon-pink-glow);
}

/* Checkbox groups */
.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  color: var(--deep-velvet-plum);
  cursor: pointer;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.form-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.4);
}

.form-checkbox-label:has(:checked) {
  background: rgba(255, 107, 138, 0.08);
  border-color: var(--neon-pink);
}

.form-checkbox {
  accent-color: var(--neon-pink);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* "Other" checkbox with inline text input */
.form-checkbox-label--other {
  grid-column: 1 / -1;
  flex-wrap: wrap;
}

.form-other-input {
  flex: 1;
  min-width: 150px;
  margin-left: 0.25rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.form-other-input:not(:disabled) {
  opacity: 1;
}

/* Textarea wrapper with speech-to-text button */
.form-textarea-wrapper {
  position: relative;
}

.form-textarea-wrapper .form-textarea {
  padding-right: 3rem;
}

.form-stt-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(92, 64, 51, 0.2);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--deep-velvet-plum);
}

.form-stt-btn:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 255, 255, 0.9);
}

.form-stt-btn.is-recording {
  border-color: var(--neon-pink);
  background: var(--neon-pink);
  color: white;
  animation: stt-pulse 1.2s ease-in-out infinite;
}

.form-stt-btn svg {
  width: 16px;
  height: 16px;
}

.form-stt-btn .stt-stop-icon {
  display: none;
}

.form-stt-btn.is-recording .stt-mic-icon {
  display: none;
}

.form-stt-btn.is-recording .stt-stop-icon {
  display: block;
}

@keyframes stt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--neon-pink-strong); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.form-stt-hint {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  color: var(--deep-velvet-plum);
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.form-stt-hint .stt-hint-idle {
  display: inline;
}

.form-stt-hint .stt-hint-active {
  display: none;
}

.form-stt-hint.is-visible {
  color: var(--neon-pink);
  font-weight: 600;
}

.form-stt-hint.is-visible .stt-hint-idle {
  display: none;
}

.form-stt-hint.is-visible .stt-hint-active {
  display: inline;
}

/* Radio groups */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  color: var(--deep-velvet-plum);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.form-radio-label:hover {
  background: rgba(255, 255, 255, 0.4);
}

.form-radio-label:has(:checked) {
  background: rgba(255, 107, 138, 0.08);
  border-color: var(--neon-pink);
}

.form-radio {
  accent-color: var(--neon-pink);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Buttons inside form — override hover so they don't blend into warm-sand background */
.form-wrapper .btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--midnight-void);
  box-shadow: 0 0 40px var(--amber-glow);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.form-wrapper .btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--midnight-void);
  box-shadow: 0 0 30px var(--electric-blue-strong);
  transform: translateY(-2px);
}

/* Submit area */
.form-submit-btn {
  /* Inherits from .btn .btn-primary .btn-large */
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-privacy {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--deep-velvet-plum);
  opacity: 0.6;
  margin-top: 0.75rem;
  text-align: center;
}

/* Validation states */
.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-field-error {
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 0.25rem;
}

/* Success/Error messages */
.form-message {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
}

.form-message h3 {
  font-family: 'Righteous', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.form-message p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-message--success {
  background: rgba(0, 229, 204, 0.1);
  border: 2px solid rgba(0, 229, 204, 0.4);
  color: var(--deep-velvet-plum);
  animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-message--success h3 {
  color: var(--deep-velvet-plum);
}

.form-success-steps {
  text-align: left;
  max-width: 360px;
  margin: 1.25rem auto;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.form-success-steps li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0.4rem 0 0.4rem 2.2rem;
  position: relative;
  counter-increment: steps;
}

.form-success-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--electric-blue);
  color: var(--midnight-void);
  font-family: 'Righteous', sans-serif;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-cta {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--neon-pink);
}

.form-message--error {
  background: rgba(231, 76, 60, 0.08);
  border: 1.5px solid rgba(231, 76, 60, 0.3);
  color: #c0392b;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at center, var(--neon-pink-glow) 0%, transparent 70%);
}


.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Shrikhand', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--warm-sand);
  text-shadow: 3px 3px 0 var(--deep-velvet-plum);
  margin-bottom: 1rem;
}

.cta-title .highlight {
  color: var(--neon-pink);
  text-shadow:
    0 0 20px var(--neon-pink-strong),
    2px 2px 0 var(--deep-velvet-plum);
}

.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rose-gold);
  margin-bottom: 2rem;
}

.cta-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--rose-gold);
  margin-top: 1.5rem;
  opacity: 0.7;
}

/* ===== LEGAL PAGES (Privacy Policy, Terms) ===== */
.legal-section {
  padding-top: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-updated {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--electric-blue);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.legal-content h2 {
  font-family: 'Righteous', sans-serif;
  font-size: 1.25rem;
  color: var(--warm-sand);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: 'Righteous', sans-serif;
  font-size: 1rem;
  color: var(--neon-pink);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.legal-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: none;
}

.legal-content ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.legal-content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--neon-pink);
  font-weight: bold;
}

.legal-content strong {
  color: var(--warm-sand);
  font-weight: 600;
}

.legal-back {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .legal-content {
    padding: 1.5rem 1rem;
  }

  .legal-content h2 {
    font-size: 1.1rem;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 1rem;
  }
}

/* ===== RESPONSIVE STYLES ===== */

/* Large tablets and below */
@media (max-width: 1000px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

}

/* Tablet */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
  }

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

  .hero-moon {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 8%;
  }

  .paper {
    padding: 2rem 1.5rem;
    transform: rotate(0);
  }

  .paper::before {
    width: 80px;
    height: 24px;
    top: -10px;
  }

  /* Timeline — single column, line on left */
  .timeline {
    padding-left: 50px;
  }

  .timeline-track {
    left: 25px;
    transform: none;
  }

  .timeline-node {
    left: 25px;
  }

  .timeline-circle {
    width: 50px;
    height: 50px;
  }

  .timeline-number {
    font-size: 1.2rem;
  }

  /* All cards on the right, no alternating */
  .timeline-item,
  .timeline-item:nth-child(odd) {
    justify-content: flex-end;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: 0;
  }

  /* All arrows point left */
  .timeline-item:nth-child(odd) .timeline-card::after {
    right: auto;
    left: -10px;
    border-left-color: transparent;
    border-right-color: rgba(0, 0, 0, 0.25);
  }

  /* All cards slide in from right on mobile */
  .timeline-item:nth-child(odd) .timeline-content.tl-ready {
    transform: translateX(30px);
  }

  .timeline-card {
    padding: 1.5rem;
  }

  .timeline-item {
    margin-bottom: 3rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .altar-container {
    padding-top: 70px;
  }

  .section {
    padding: 3rem 1rem;
  }

  .hero {
    padding: 3rem 1.25rem 1.5rem;
    min-height: auto;
  }

  .hero-moon {
    width: 60px;
    height: 60px;
    opacity: 0.5;
  }

  .hero-logo-text {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .moon-divider {
    padding: 2rem 0;
    gap: 0.5rem;
  }

  .moon-divider .moon {
    width: 14px !important;
    height: 14px !important;
  }

  .moon-divider .moon.center {
    width: 20px !important;
    height: 20px !important;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .package-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .form-wrapper {
    padding: 1.5rem;
    max-width: 100%;
  }

  .form-row--half {
    flex-direction: column;
    gap: 0;
  }

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

  .form-step-label {
    font-size: 0.6rem;
  }

  .form-step-num {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .form-nav {
    gap: 0.75rem;
  }

  .form-nav-btn {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }

  /* Timeline — tighter on small screens */
  .timeline {
    padding-left: 40px;
  }

  .timeline-track {
    left: 18px;
  }

  .timeline-node {
    left: 18px;
  }

  .timeline-circle {
    width: 40px;
    height: 40px;
  }

  .timeline-number {
    font-size: 1rem;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 48px);
  }

  .timeline-card {
    padding: 1.25rem;
  }

  .timeline-label {
    font-size: 1rem;
  }

  .timeline-desc {
    font-size: 1rem;
  }

  .timeline-item {
    margin-bottom: 2.5rem;
  }
}

/* ===== GHL (GoHighLevel) INTEGRATION OVERRIDES ===== */
/* These styles override GHL's default wrapper styles */

/* Remove GHL's default section/row/column borders and padding */
.hl_page-preview--content .section-v6SuVCMeD0,
.hl_page-preview--content .row-OkqIcL8k4R,
.hl_page-preview--content .col-vPqp7WFluR,
.hl_page-preview--content [class*="c-section"],
.hl_page-preview--content [class*="c-row"],
.hl_page-preview--content [class*="c-column"],
.hl_page-preview--content [class*="c-wrapper"] {
  border: none !important;
  border-width: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
}

/* Ensure custom code container has no GHL styling interference */
.hl_page-preview--content .custom-code-container,
.hl_page-preview--content [class*="custom-code"] {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Reset GHL inner wrappers */
.hl_page-preview--content .inner {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Ensure full width for the landing page */
.hl_page-preview--content #preview-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Override any GHL background fixed styles */
.hl_page-preview--content .bg-fixed {
  background-color: var(--midnight-void) !important;
}

/* Remove GHL's default fullSection styling */
.hl_page-preview--content .fullSection {
  border: none !important;
  padding: 0 !important;
}
