/* ===== COACHING PAGE OVERRIDES ===== */

/* Grain override (different opacity & SVG from base.css) */
.grain {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Header overrides (different padding, blur, border) */
.header {
  padding: 20px 48px;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,27,61,0.08);
}

/* Nav override (different gap) */
.nav {
  gap: 36px;
}

/* Nav dot override (different background, transition) */
.nav a::after {
  background: var(--hot-pink);
  transition: transform 0.3s;
}

/* Header CTA overrides */
.header-cta {
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s;
}

.header-cta:hover {
  transform: translateY(-3px);
}

/* ===== LOGO WAVE (not in shared) ===== */
.logo-wave {
  width: 52px;
  height: 52px;
  background: var(--gradient-cta);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  box-shadow: 0 4px 20px rgba(45,27,61,0.3);
}

.logo-wave span {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: white;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--plum);
  line-height: 1.2;
}

.logo-text em {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hot-pink);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 180px 48px 120px;
  background: linear-gradient(135deg, var(--lavender-mist), var(--cream));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
}

.page-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 24px;
  line-height: 1.1;
}

.page-hero-text h1 .highlight {
  color: var(--hot-pink);
  font-style: italic;
}

.page-hero-text p {
  font-size: 18px;
  color: var(--plum-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: white;
  padding: 20px 44px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.4s;
  display: inline-block;
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.35);
}

.page-hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
  transform: rotate(2deg);
}

.page-hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 120px 48px;
  background: white;
}

/* Section header/eyebrow overrides */
.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--hot-pink);
  letter-spacing: 2px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  width: 30px;
  background: linear-gradient(90deg, var(--hot-pink), var(--purple-warm));
}

.section-title {
  font-size: 44px;
  font-weight: 500;
}

.benefits-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--cream);
  padding: 40px;
  border-radius: 28px;
  display: flex;
  gap: 24px;
  transition: all 0.4s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-tint), var(--cyan-tint));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 10px;
}

.benefit-content p {
  color: var(--plum-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 48px;
  background: linear-gradient(145deg, var(--plum-dark), var(--plum-darker), var(--plum-dark));
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(168,85,247,0.1) 0%, transparent 40%);
}

.process .section-header {
  position: relative;
  z-index: 2;
}

.process .section-eyebrow {
  color: var(--purple-warm);
}

.process .section-eyebrow::before,
.process .section-eyebrow::after {
  background: linear-gradient(90deg, var(--purple-warm), var(--cyan-deep));
}

.process .section-title {
  color: white;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

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

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-warm), var(--lavender-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--plum-dark);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 48px;
  background: var(--gradient-cta);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.cta .btn-primary {
  background: white;
  color: var(--plum);
  box-shadow: 0 4px 25px rgba(45,27,61,0.2);
}

.cta .btn-primary:hover {
  box-shadow: 0 8px 35px rgba(45,27,61,0.3);
}

/* ===== RACEMOB WIDGET ===== */
.racemob-widget {
  max-width: 800px;
  margin: 60px auto 0;
  background: white;
  border: 2px dashed var(--cyan-deep);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.racemob-widget h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--plum);
  margin-bottom: 12px;
}

.racemob-widget p {
  color: var(--plum-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.version-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--gradient-cta);
  color: white;
}

/* ===== FOOTER OVERRIDES ===== */
.footer {
  padding: 60px 48px 30px;
}

.footer-copyright {
  font-size: 14px;
}

.footer-powered {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

/* ===== PAGE NAV DEMO ===== */
.page-nav-demo {
  padding: 24px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 20px;
  margin-bottom: 40px;
}

.page-nav-demo h4 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-links a {
  padding: 10px 22px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s;
}

.page-links a:hover {
  background: rgba(255,255,255,0.2);
  color: var(--cyan);
}

.page-links a.current {
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan));
  color: var(--plum);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-content, .benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header { padding: 16px 24px; }
  .nav { display: none; }
  .page-hero, .benefits, .process, .cta { padding: 80px 24px; }
}
