/* ===== COLOR PALETTE ===== */
:root {
  --color-navy:       #0F2044;
  --color-navy-mid:   #1A3460;
  --color-navy-light: #2C4F8C;

  --color-gold:       #B8902A;
  --color-gold-light: #D4A942;
  --color-gold-pale:  #F0E4C2;

  --color-white:      #FFFFFF;
  --color-off-white:  #F7F6F2;
  --color-slate-100:  #EEF0F4;
  --color-slate-300:  #C2C8D4;
  --color-slate-500:  #7A8499;
  --color-slate-700:  #3D4557;
  --color-charcoal:   #1C2333;

  --color-bg:         var(--color-off-white);
  --color-bg-dark:    var(--color-navy);
  --color-text:       var(--color-charcoal);
  --color-text-muted: var(--color-slate-500);
  --color-accent:     var(--color-gold);
  --color-border:     var(--color-slate-300);
}


/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }


/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.bg-white     { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-navy      { background-color: var(--color-navy); }
.bg-charcoal  { background-color: var(--color-charcoal); }

.text-white      { color: var(--color-white); }
.text-slate-300  { color: var(--color-slate-300); }
.text-gold       { color: var(--color-gold); }


/* ===== HERO ===== */
.hero {
  background-color: var(--color-navy);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 30px,
      rgba(255, 255, 255, 0.025) 30px,
      rgba(255, 255, 255, 0.025) 31px
    );
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--color-slate-300);
  max-width: 52ch;
  line-height: var(--leading-loose);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 32, 68, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-slate-300);
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-ctas .btn { min-width: 200px; }
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .hero-content { flex: 0 0 55%; }
  .hero-visual { flex: 0 0 40%; min-height: 460px; }
  .hero-photo { min-height: 460px; }
}


/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  background-color: var(--color-white);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-slate-100);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.proof-list li {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-slate-700);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.proof-dot {
  color: var(--color-gold);
  font-size: 1.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .proof-list li { font-size: var(--text-base); }
}


/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-navy);
  line-height: var(--leading-normal);
  border-left: 4px solid var(--color-gold);
  padding-left: 1.75rem;
  margin: 0;
}

.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--color-slate-500);
  margin-top: 1.25rem;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pain-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pain-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-slate-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.pain-icon svg { width: 22px; height: 22px; }

.pain-point h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.375rem;
}

.pain-point p {
  font-size: var(--text-base);
  color: var(--color-slate-700);
  line-height: var(--leading-loose);
}

@media (min-width: 1024px) {
  .problem-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
  .pull-quote { flex: 0 0 44%; }
  .pain-points { flex: 1; }
}


/* ===== WHY PARTNER (CARDS GRID) ===== */
.why-partner { background-color: var(--color-navy); }

.why-partner .section-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-white);
  margin-bottom: 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ===== HOW IT WORKS ===== */
#how-it-works .section-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-navy);
  margin-bottom: 5rem;
}

#how-it-works .timeline {
  margin-top: 1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}

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

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

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  width: 2px;
  flex: 1;
  background-color: var(--color-gold-pale);
  min-height: 2.5rem;
}

.timeline-step:last-child .step-connector { display: none; }

.step-content {
  padding-top: 0.625rem;
}

.step-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: var(--text-base);
  color: var(--color-slate-700);
  line-height: var(--leading-loose);
  max-width: 55ch;
}

@media (min-width: 1024px) {
  .timeline {
    flex-direction: row;
    gap: 0;
  }
  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    flex: 1;
    padding-right: 2rem;
  }
  .timeline-step:last-child { padding-right: 0; }
  .step-indicator {
    flex-direction: row;
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .step-connector {
    height: 2px;
    width: auto;
    flex: 1;
    min-height: auto;
    align-self: center;
    margin-left: -1px;
  }
  .step-content { padding-top: 0; }
}


/* ===== PARTNERSHIP MODEL ===== */
.model-diagram {
  margin: 2.5rem auto 3rem;
  max-width: 700px;
}

.model-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.model-callouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.model-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.callout-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.model-callout p {
  font-size: var(--text-base);
  color: var(--color-slate-700);
  line-height: var(--leading-loose);
}

.model-callout strong {
  color: var(--color-navy);
}


/* ===== TESTIMONIALS ===== */
.client-experience { background-color: var(--color-navy); }

.client-experience .section-headline {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 2rem;
}

.wheel-container {
  max-width: 760px;
  margin: 0 auto;
}

.wheel-desc {
  color: var(--color-slate-300);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
}

.wheel-callouts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wheel-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.callout-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.callout-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-slate-300);
  letter-spacing: 0.02em;
}

.callout-desc {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .wheel-callouts {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .wheel-callout {
    flex: 1;
    padding: 0 2rem;
  }
  .wheel-callout:first-child { padding-left: 0; }
  .wheel-callout:last-child  { padding-right: 0; }
  .wheel-callout + .wheel-callout {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}


/* ===== FIT CHECK ===== */
.fit-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 880px;
  margin: 0 auto;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--leading-normal);
}

.check-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.not-fit-panel {
  background-color: var(--color-white);
  border: 1px solid var(--color-slate-300);
  border-radius: 8px;
  padding: 2rem;
}

.not-fit-panel h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 1.25rem;
}

.not-fit-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.not-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--color-slate-700);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.not-fit-dash {
  color: var(--color-slate-500);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (min-width: 1024px) {
  .fit-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .checklist { flex: 1; }
  .not-fit-panel { flex: 0 0 38%; }
}


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

.faq-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-navy);
  margin-bottom: 3rem;
}


/* ===== CONTACT / CTA ===== */
.contact { background-color: var(--color-navy); }

.contact-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contact-subhead {
  font-size: var(--text-lg);
  color: var(--color-slate-300);
  max-width: 52ch;
  line-height: var(--leading-loose);
  margin-bottom: 3rem;
}

.contact-form-wrap {
  max-width: 560px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }
  .contact-form-grid .form-group:nth-child(3),
  .contact-form-grid .form-group:nth-child(4) {
    grid-column: 1 / -1;
  }
  .contact-form-grid .btn-submit { width: 100%; }
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: var(--text-lg);
}

.contact-disclaimer {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  margin-top: 1.25rem;
  font-style: italic;
}

.thank-you {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background-color: rgba(44, 79, 140, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  max-width: 480px;
}

.thank-you.visible { display: block; }

.thank-you-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thank-you h3 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.thank-you p {
  color: var(--color-slate-300);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
}


/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-charcoal);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: var(--text-base);
  color: var(--color-slate-300);
  font-style: italic;
  margin: 0;
  max-width: 28ch;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-nav-list a {
  color: var(--color-slate-300);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color 0.2s ease;
}

.footer-nav-list a:hover { color: var(--color-gold-light); }

.footer-nav-list a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-contact-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate-500);
  margin-bottom: 1rem;
}

.footer-contact-link {
  color: var(--color-slate-300);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 1rem;
}

.footer-contact-link:hover { color: var(--color-gold-light); }

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-slate-500);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
  min-height: 44px;
}

.linkedin-link:hover { color: var(--color-slate-300); }

.linkedin-link svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--color-slate-500);
  line-height: var(--leading-loose);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
}
