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

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f2;
  --color-accent: #E44E30;
  --color-accent-hover: #cc4129;
  --color-accent-light: #fde8e3;
  --color-dark: #1a1a1a;
  --color-body: #3d3d3d;
  --color-muted: #6b6b6b;
  --color-border: #e5ddd5;
  --color-white: #ffffff;
  --font-heading: 'Instrument Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label: 'Instrument Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1120px;
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-body);
  line-height: 1.65;
  font-size: 16px;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.highlight {
  background-color: var(--color-accent);
  color: #fff;
  padding: 2px 6px;
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

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

.section {
  padding: 88px 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* Gradient fade: sharp beige top edge, soft fade-out at bottom */
.section-fade {
  background: linear-gradient(180deg,
    var(--color-bg-alt) 0%,
    var(--color-bg-alt) 75%,
    rgba(247, 245, 242, 0) 100%
  );
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.hero-tagline {
  display: inline;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 750;
  color: #fff;
  background-color: var(--color-accent);
  padding: 2px 6px;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-accent);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--color-accent-hover);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  padding: 16px 36px;
  font-size: 1rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(228, 78, 48, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 80px;
  background-color: var(--color-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.hero-content {
  max-width: 540px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-body);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-price-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 10px;
}

.hero-image {
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* ===== Split Images ===== */
.split-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== Split Grid ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

  .split-grid.reverse {
    direction: rtl;
  }

  .split-grid.reverse > * {
    direction: ltr;
  }
}

.split-content h2 {
  margin-bottom: 20px;
}

.split-content p {
  color: var(--color-body);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== Week Journey (Timeline) ===== */
.week-journey {
  max-width: 680px;
  margin: 0 auto;
}

.week-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.week-step:last-child {
  padding-bottom: 0;
}

.week-step-marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Connecting line between timeline steps */
.week-step:not(:last-child) .week-step-marker::after {
  content: '';
  width: 2px;
  flex: 1;
  background-color: var(--color-border);
  margin-top: 12px;
}

.week-step-body {
  padding-top: 8px;
}

.week-step-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.week-step-body p {
  font-size: 0.95rem;
  color: var(--color-body);
  line-height: 1.7;
}

.week-step-screens {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.week-step-img {
  width: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  object-fit: cover;
  object-position: top;
}

/* Inline testimonial — small quote within a section */
.inline-testimonial {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-testimonial-photo {
  width: 48px !important;
  min-width: 48px;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.inline-testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-body);
  line-height: 1.6;
  margin: 0;
}

.inline-testimonial-name {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 6px;
}

/* Placeholder for images not yet added */
.week-step-placeholder {
  width: 220px;
  height: 160px;
  border-radius: var(--radius);
  border: 2px dashed var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-family: var(--font-label);
}

/* Scattered photo stack for training photos */
.photo-stack {
  position: relative;
  width: 320px;
  height: 220px;
  margin-top: 20px;
}

.photo-stack-item {
  position: absolute;
  width: 140px;
  height: 105px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

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

.ps-1 { top: 8px;  left: 0;    transform: rotate(-5deg); z-index: 1; }
.ps-2 { top: 0;    left: 110px; transform: rotate(3deg);  z-index: 2; }
.ps-3 { top: 90px;  left: 25px;  transform: rotate(4deg);  z-index: 3; }
.ps-4 { top: 80px; left: 150px; transform: rotate(-3deg); z-index: 4; }

/* Celebration photo with screenshot overlaid on top */
.celebration-stack {
  position: relative;
  width: 380px;
  padding-bottom: 60px;
}

.celebration-photo {
  position: relative;
  width: 360px;
  border-radius: 10px;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  object-fit: cover;
}

.celebration-screenshot {
  position: relative;
  margin-top: -110px;
  margin-left: 200px;
  width: 360px;
  border-radius: 10px;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 2;
  object-fit: cover;
}


/* ===== Includes Grid (What You Get) ===== */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .includes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
  }
}

.includes-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.includes-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

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

.includes-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.includes-item p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-accent-light), #e8ddd5);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===== Pricing ===== */
#pricing {
  scroll-margin-top: 80px;
}

.pricing-compact {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pricing-header {
  margin-bottom: 36px;
}

.pricing-header h2 {
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 1.02rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 540px) {
  .pricing-options {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.pricing-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--color-muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card-featured {
  border-color: var(--color-accent);
  border-width: 2px;
}

.price-original {
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-right: 2px;
}

.price-savings {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-right: 4px;
}

.pricing-monthly-equiv {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.pricing-cancel {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 10px;
}

.pricing-includes {
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
}

.pricing-includes-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.pricing-includes li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--color-body);
}

.pricing-includes li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E44E30'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Inline Section CTA ===== */
.section-cta-inline {
  text-align: center;
  margin-top: 48px;
}

.section-cta-subtext {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

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

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--color-body);
  line-height: 1.7;
  padding-right: 40px;
}

/* ===== Final CTA ===== */
.section-cta {
  /* gradient fade handles the background via .section-fade */
}

.cta-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

/* ===== Mobile Refinements ===== */
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .hero-tagline {
    font-size: 0.78rem;
  }

  /* Bigger headings on mobile */
  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 40px 0 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero .btn {
    width: auto;
  }

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

  .nav-cta {
    font-size: 0.82rem;
    padding: 9px 18px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* What's Included — card style on mobile */
  .includes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .includes-item {
    flex-direction: column;
    gap: 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
  }

  .includes-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }

  .includes-item h3 {
    font-size: 1rem;
  }

  /* Timeline — keep side-by-side layout, wider images */
  .week-step-screens {
    flex-direction: column;
  }

  .week-step-img {
    width: 100%;
    max-width: 100%;
  }

  /* Photo stack — wider on mobile */
  .photo-stack {
    width: 100%;
    max-width: 320px;
    height: 280px;
    margin: 20px auto 0;
  }

  .photo-stack-item {
    width: 140px;
    height: 105px;
  }

  .ps-1 { top: 0; left: 5px; transform: rotate(-4deg); }
  .ps-2 { top: 10px; right: 5px; left: auto; transform: rotate(3deg); }
  .ps-3 { top: 130px; left: 15px; transform: rotate(3deg); }
  .ps-4 { top: 140px; right: 10px; left: auto; transform: rotate(-3deg); }

  /* Celebration stack — wider and centered on mobile */
  .celebration-stack {
    width: 100%;
    max-width: 100%;
    padding-bottom: 30px;
    margin: 0 auto;
  }

  .celebration-photo {
    width: 75%;
    max-width: none;
  }

  .celebration-screenshot {
    width: 75%;
    max-width: none;
    margin-top: -60px;
    margin-left: 25%;
  }

}
