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

:root {
  --navy: #0C2340;
  --navy-light: #1A3A5C;
  --red: #C8102E;
  --red-light: #E8364D;
  --cream: #FAF8F5;
  --warm-gray: #F0EDE8;
  --gray-600: #6B6B6B;
  --gray-400: #9A9A9A;
  --gray-200: #E0DDD8;
  --white: #FFFFFF;
  --text: #1D1D1F;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Animations ===== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim--d1 { transition-delay: 0.12s; }
.anim--d2 { transition-delay: 0.24s; }
.anim--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--d1 { transition-delay: 0.15s; }
.reveal--d2 { transition-delay: 0.3s; }
.reveal--d3 { transition-delay: 0.45s; }
.reveal--d4 { transition-delay: 0.6s; }
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  pointer-events: none;
}

.nav--visible {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  pointer-events: auto;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.nav--visible .nav-brand,
.nav--visible .nav-cta {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  pointer-events: none;
}

.nav-cta:hover { background: var(--red-light); }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-heading); }

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.btn:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
}

.btn--large {
  padding: 20px 56px;
  font-size: 1.05rem;
}

.btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(200, 16, 46, 0); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--cream { background: var(--cream); }

.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2 { color: var(--white); }
.section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.8); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 12px;
}

.section--navy .section-label { color: rgba(255, 255, 255, 0.45); }

.section-intro {
  font-size: 1.1rem;
  max-width: 660px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 52px;
}

.section--navy .section-intro { color: rgba(255, 255, 255, 0.7); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 80px 0;
}

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

.hero-shape {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-dots {
  position: absolute;
  inset: 0;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.12;
}

.dot--1 {
  width: 8px; height: 8px;
  top: 20%; right: 42%;
  animation: float 6s ease-in-out infinite;
}
.dot--2 {
  width: 12px; height: 12px;
  top: 60%; right: 35%;
  animation: float 8s ease-in-out infinite 1s;
}
.dot--3 {
  width: 6px; height: 6px;
  top: 35%; right: 30%;
  animation: float 7s ease-in-out infinite 2s;
}
.dot--4 {
  width: 10px; height: 10px;
  top: 75%; right: 45%;
  animation: float 9s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-12px) translateX(6px); }
  66% { transform: translateY(8px) translateX(-4px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight { color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Approach ===== */
.approach-item {
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.approach-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

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

.approach-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(12, 35, 64, 0.05);
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
}

.approach-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.timeline-track {
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-progress {
  width: 0%;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 1.5s ease;
}

.anim--visible .timeline-progress {
  width: 100%;
}

.timeline-phase {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.timeline-marker:hover {
  transform: scale(1.1);
}

.timeline-days {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.timeline-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ===== Results ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s;
}

.result-item:hover { transform: translateX(4px); }

.result-icon {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
}

.result-item span {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}

.result-quote {
  text-align: center;
  padding-top: 8px;
}

.result-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== Pricing Cards ===== */
.pricing-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
  background: var(--navy);
  color: var(--white);
}

.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured p { color: rgba(255, 255, 255, 0.75); }
.pricing-card--featured .pricing-step { color: rgba(255, 255, 255, 0.5); }
.pricing-card--featured .pricing-icon svg circle { stroke: rgba(255, 255, 255, 0.4); }
.pricing-card--featured .pricing-icon svg path { stroke: var(--white); }

.pricing-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.pricing-step {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.pricing-card p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Team ===== */
.team-card {
  text-align: center;
  padding: 44px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.team-card:hover .team-avatar { transform: scale(1.08); }

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Fit ===== */
.fit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 44px 0;
}

.fit-item {
  flex: 1 1 260px;
  max-width: 320px;
}

.fit-contrast {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s, border-color 0.3s;
}

.fit-contrast:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.fit-no {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  text-decoration: line-through;
}

.fit-arrow-svg {
  width: 22px;
  height: 22px;
  color: var(--red-light);
  flex-shrink: 0;
}

.fit-yes {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.fit-cta {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.section--cta h2 {
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section--cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 16px;
}

.cta-warning {
  font-family: var(--font-heading);
  color: var(--red) !important;
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem !important;
  margin-bottom: 36px !important;
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .timeline-track { display: none; }

  .hero-shape { display: none; }
  .hero-dots { display: none; }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .hero {
    min-height: auto;
    padding: 100px 0 64px;
  }

  .hero-shape { display: none; }
  .hero-dots { display: none; }
  .hero-label { margin-bottom: 14px; }
  .hero h1 { font-size: 2rem; margin-bottom: 4px; }
  .hero-tagline { font-size: 1.6rem; margin-bottom: 18px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }

  h2 { font-size: 1.65rem; margin-bottom: 14px; }
  .section-label { margin-bottom: 8px; font-size: 0.7rem; }
  .section-intro { font-size: 1rem; margin-bottom: 36px; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; gap: 20px; }

  .approach-item { padding: 24px; }
  .approach-number { font-size: 2.5rem; }

  .timeline {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 36px;
  }
  .timeline-track { display: none; }
  .timeline-phase {
    text-align: left;
    padding: 0 0 0 36px;
  }
  .timeline-marker {
    position: absolute;
    left: -36px;
    top: 0;
    margin: 0;
    width: 40px;
    height: 40px;
  }
  .timeline-days { font-size: 0.55rem; }
  .timeline-content h3 { font-size: 1rem; }
  .timeline-content p { font-size: 0.85rem; }

  .results-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .result-item { padding: 16px 18px; }
  .result-icon { width: 20px; height: 20px; }
  .result-item span { font-size: 0.88rem; }
  .result-quote blockquote { font-size: 1.15rem; }

  .pricing-card { padding: 28px 24px; }
  .pricing-card h3 { font-size: 1.15rem; }

  .team-card { padding: 32px 20px; }
  .team-avatar { width: 64px; height: 64px; font-size: 1.15rem; }
  .team-card h3 { font-size: 1.1rem; }

  .fit-grid { flex-direction: column; align-items: center; margin: 32px 0; }
  .fit-item { max-width: 100%; }
  .fit-contrast { padding: 18px 22px; }
  .fit-cta { font-size: 0.95rem; }

  .section--cta { padding: 72px 0; }
  .section--cta h2 { font-size: 1.5rem; }
  .cta-warning { font-size: 1.05rem !important; }

  .btn { padding: 14px 36px; font-size: 0.9rem; }
  .btn--large { padding: 16px 44px; font-size: 0.95rem; }

  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
  .nav-cta { padding: 8px 20px; font-size: 0.8rem; }
}
