/* ========================================
   DEIN WALLER-COACH — Global Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2D8C3C;
  --green-hover: #246F30;
  --green-light: #34A853;
  --dark: #000000;
  --dark-card: #000000;
  --dark-section: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--gray-900);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--gray-600); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-300);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-green h2 { color: var(--white); }
.section-green p { color: rgba(255,255,255,0.9); }

.section-gray {
  background: var(--gray-50);
}

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

.subtitle {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.section-desc {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-main);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn svg, .btn .arrow {
  transition: transform 0.2s;
}

.btn:hover svg, .btn:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: 0 24px;
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}

.navbar-logo-sub {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
}

.navbar-tagline {
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 600;
  font-style: normal;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links {
  display: flex;
  gap: 28px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 99;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 8px 0;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 60px 0 80px;
  text-align: center;
}

.hero .subtitle {
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--gray-500);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #000;
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-lg);
  border: none;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gray-800);
  margin-left: 3px;
}

.hero-right {
  text-align: left;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 3;
}

.hero-social-proof {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
}

/* ========================================
   PAIN POINTS
   ======================================== */
.pain-points {
  padding: 80px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.pain-grid .row-2 {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 66.66%;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  transition: box-shadow 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gray-400);
}

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

/* ========================================
   SOLUTION / BENEFITS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.benefit-card .check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-card .check-icon svg {
  width: 16px;
  height: 16px;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* ========================================
   CTA DARK SECTION (Split Layout)
   ======================================== */
.cta-dark-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

/* Light gray full background */
.cta-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-100);
  z-index: 0;
}

/* Dark panel on the right with rounded left corners */
.cta-dark-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: var(--dark);
  border-radius: 24px 0 0 24px;
  z-index: 1;
}

.cta-dark-wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  align-items: center;
}

.cta-dark-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 60px 0;
}

.cta-dark-photo-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 420px;
}

.cta-dark-photo-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.cta-dark-right {
  padding: 60px 20px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-dark-right h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.cta-dark-right > p {
  color: var(--gray-300);
  margin-bottom: 12px;
  font-size: 1rem;
}

.cta-dark-label {
  font-weight: 700;
  color: var(--white) !important;
  margin-top: 20px !important;
}

.cta-dark-list {
  margin: 16px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}

.cta-dark-list li {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.5;
  list-style: disc;
}

.cta-dark-list li::marker {
  color: var(--white);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-video {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text-area {
  border-left: 4px solid var(--green);
  margin: 0;
  padding: 16px 20px 20px;
}

.testimonial-info {
  margin-bottom: 10px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1px;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ========================================
   COACHING PROCESS (Steps)
   ======================================== */
.steps {
  padding: 80px 0;
  background: var(--gray-50);
}

.steps-container {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
  padding: 0 24px;
}

/* Vertical line through center */
.steps-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
  transform: translateX(-50%);
  z-index: 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  z-index: 2;
  justify-self: center;
}

.step-spacer {
  /* empty space on the opposite side */
}

/* ========================================
   ABOUT
   ======================================== */
.about-section {
  background: var(--white);
  padding: 80px 0;
}

.about-section h2 {
  color: var(--gray-900);
}

.about-card {
  display: grid;
  grid-template-columns: 55% 45%;
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
}

.about-card-text {
  background: var(--dark);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-text h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--white);
}

.about-role {
  color: var(--green-light) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px !important;
  font-style: italic;
}

.about-card-text p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-300);
}

.about-card-text strong {
  color: var(--white);
}

.about-card-image {
  overflow: hidden;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   RESOURCES
   ======================================== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.resource-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.resource-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.resource-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.resource-card .resource-sub {
  font-size: 0.8rem;
  color: var(--green-light);
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.resource-link:hover {
  background: var(--green);
  color: var(--white);
}

/* ========================================
   GREEN CTA
   ======================================== */
.cta-green {
  padding: 64px 0;
  text-align: center;
}

.cta-green h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-green p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: left;
  font-family: var(--font-main);
  gap: 16px;
}

.faq-question:hover {
  color: var(--green);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   FINAL CTA (Dark)
   ======================================== */
.final-cta {
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 32px;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2e12 0%, #143d1c 50%, #0d3316 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(45, 140, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(52, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.newsletter-input {
  padding: 18px 24px;
  border-radius: 50px;
  border: 1px solid rgba(45, 140, 60, 0.3);
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(45, 140, 60, 0.25);
}

.newsletter-btn {
  width: 100%;
  padding: 18px 32px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-main);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.newsletter-btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 140, 60, 0.4);
}

.newsletter-cta-text {
  margin-top: 24px;
  font-weight: 700;
  color: var(--green-light) !important;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-disclaimer {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45) !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .newsletter-inputs {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 48px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 0.85rem;
  padding: 4px 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links span {
  color: var(--gray-500);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========================================
   BOOKING PAGE
   ======================================== */
.booking-hero {
  padding: 60px 0;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 40px auto 0;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.booking-step p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.booking-calendar {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-arrow {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.booking-arrow svg {
  width: 40px;
  height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thankyou {
  padding: 60px 0 80px;
  text-align: center;
}

.thankyou h1 {
  margin-bottom: 20px;
}

.thankyou-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.thankyou-video {
  max-width: 560px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #000;
  position: relative;
}

.thankyou-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   LEGAL PAGE
   ======================================== */
.legal-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.legal-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--gray-900);
  border-color: var(--gray-900);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

.legal-section {
  display: none;
}

.legal-section.active {
  display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-right {
    text-align: center;
  }

  .hero-checks {
    align-items: center;
  }

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

  .pain-grid .row-2 {
    grid-column: span 1;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .cta-dark-section::after {
    width: 100%;
    top: 50%;
    border-radius: 24px 24px 0 0;
  }

  .cta-dark-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px;
  }

  .cta-dark-left {
    padding: 0 0 40px 0;
    justify-content: center;
  }

  .cta-dark-photo-card {
    max-width: 300px;
  }

  .cta-dark-right {
    padding: 40px 0 0 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-card-image {
    min-height: 300px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .step-spacer { display: none; }

  .step-number { justify-self: center; order: -1; }

  .step-content { order: 0; }

  .steps-container::before { display: none; }
}

@media (max-width: 768px) {
  .navbar-tagline,
  .navbar-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 40px 0 56px;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }

/* Fade in from left */
[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-40px);
}
[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-animate="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
[data-animate="scale"] {
  opacity: 0;
  transform: scale(0.92);
}
[data-animate="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}
