/* ═══════════════════════════════════════════════════
   Beyond Founder Sales — Stylesheet

   Colours:
     Navy:       #0F1B2D
     Teal:       #0D9488
     Teal Dark:  #0F766E
     Teal Light: #CCFBF1

   Font: Inter (loaded from Google Fonts in HTML)
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1E293B;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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


/* ─── Layout ─── */

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--slate {
  background: #F8FAFC;
}

.section--navy {
  background: radial-gradient(ellipse 40% 60% at 90% 20%, rgba(13,148,136,0.08) 0%, transparent 70%), #0F1B2D;
  color: #fff;
}

.section--teal-navy {
  background: #0F1B2D;
  color: #fff;
  text-align: center;
}
.problem-close {
  margin-top: 3.5rem;
  max-width: 72rem;
}

.problem-close__lead {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.problem-close__statement {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0F1B2D;
  margin-bottom: 0.75rem;
}

.problem-close__support {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1rem;
}

.problem-close__cta {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0F1B2D;
}


/* ─── Typography ─── */

h1, h2, h3 {
  color: #0F1B2D;
  line-height: 1.2;
  font-weight: 700;
}

.section--navy h2,
.section--navy h3,
.section--teal-navy h2 {
  color: #fff;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

.text-slate { color: #475569; }
.text-slate-light { color: #64748B; }
.text-teal { color: #0D9488; }
.text-small { font-size: 0.875rem; }
.text-large { font-size: 1.125rem; }
.max-w-prose { max-width: 72rem; }
.max-w-prose-wide {
  max-width: 72rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.process-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 1.125rem;
  border: 1px solid #D8E1EA;
  border-radius: 1rem;
  background: #FFFFFF;
  color: #0F1B2D;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.process-step:hover {
  border-color: #BFD6D2;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.05);
  transform: translateY(-1px);
}

.process-step.active {
  border-color: #7FC8BE;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.06);
  background: #F9FCFB;
}

.process-step__number {
  flex: 0 0 auto;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  color: #2D9C93;
  margin-top: 0.15rem;
}

.process-step__text {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  min-width: 0;
}

.process-step__title {
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0F1B2D;
}

.process-step__meta {
  font-size: 0.98rem;
  line-height: 1.45;
  color: #5E728C;
}

.process-panel-wrap {
  min-width: 0;
}

.process-panel {
  background: #FFFFFF;
  border: 1px solid #D8E1EA;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.04);
}

.process-panel__eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2D9C93;
  margin: 0 0 0.75rem;
}

.process-panel__title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #0F1B2D;
}

.process-panel__subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #5E728C;
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.process-panel__list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.process-panel__list li {
  color: #364A63;
  line-height: 1.6;
}

.process-panel__list li::marker {
  color: #2D9C93;
}

@media (max-width: 980px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-nav {
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .process-step {
    padding: 0.9rem 0.95rem;
    border-radius: 0.9rem;
  }

  .process-step__title {
    font-size: 1rem;
  }

  .process-step__meta {
    font-size: 0.92rem;
  }

  .process-panel {
    padding: 1.2rem 1rem 1.25rem;
    border-radius: 1rem;
  }

  .process-panel__subtitle {
    font-size: 1rem;
  }
}


/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: #0D9488;
  color: #fff;
}
.btn--primary:hover {
  background: #0F766E;
}

.btn--secondary {
  background: transparent;
  color: #475569;
  border: 1px solid #CBD5E1;
}
.btn--secondary:hover {
  background: #F8FAFC;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}


/* ─── Header ─── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F1B2D;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
}

.nav a:hover {
  color: #0F1B2D;
}

.nav .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #0F1B2D;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #475569;
  border-bottom: 1px solid #F1F5F9;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .mobile-toggle { display: none; }
}


/* ─── Hero ─── */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background:
    linear-gradient(to right, rgba(15,27,45,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,27,45,0.04) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 25% 60%, rgba(13,148,136,0.06) 0%, transparent 70%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

.hero h1 {
  max-width: 48rem;
}

.hero .subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #475569;
  max-width: 40rem;
  line-height: 1.7;
}

.hero .note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

@media (min-width: 768px) {
  .hero .subtitle { font-size: 1.25rem; }
}


/* ─── Cards Grid ─── */

.grid-3 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.grid-2 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.grid-services {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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


/* ─── Card ─── */

.card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(13,148,136,0.4);
  transition: all 0.2s;
}

.card-padded {
  padding: 2rem;
}

.card__icon {
  width: 2rem;
  height: 2rem;
  color: #0D9488;
  stroke-width: 1.5;
}

.card__num {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D9488;
}

.card__title {
  margin-top: 0.75rem;
}

.card__desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.card__list {
  margin-top: 1rem;
}

.card__list li {
  font-size: 0.875rem;
  color: #475569;
  padding: 0.25rem 0;
  line-height: 1.6;
}

.card__list li::before {
  content: "‣ ";
  color: #0D9488;
  margin-right: 0.5rem;
}


/* ─── Who Is This For ─── */

.check-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #334155;
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.questions-list {
  margin-top: 1rem;
}

.questions-list li {
  padding: 0.375rem 0;
  color: #475569;
  font-style: italic;
}


/* ─── Case Study ─── */

.metrics-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.metric-card__value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #CCFBF1;
}

.metric-card__label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.blockquote {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
}

.blockquote__text {
  font-size: 1.125rem;
  font-style: italic;
  color: #CBD5E1;
  line-height: 1.7;
}

.blockquote__author {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #CCFBF1;
}

.case-detail-list {
  margin-top: 1rem;
  color: #CBD5E1;
}

.case-detail-list li {
  padding: 0.25rem 0;
}

.label-caps {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CCFBF1;
}


/* ─── How It Works ─── */

.step__number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.step__title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F1B2D;
}

.step__duration {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D9488;
}

.step__desc {
  margin-top: 0.75rem;
  color: #475569;
  line-height: 1.7;
}


/* ─── About ─── */

.about-text p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
}

.about-text p:first-child {
  margin-top: 0;
}

.about-text p.emphasis {
  color: #0F1B2D;
  font-weight: 500;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #0D9488;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.linkedin-link:hover {
  color: #0F766E;
}


/* ─── CTA Section ─── */

.section--teal-navy p {
  color: #CBD5E1;
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section--teal-navy .btn {
  margin-top: 2.5rem;
}

.section--teal-navy .email-link {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.section--teal-navy .email-link a {
  color: #CCFBF1;
}

.section--teal-navy .email-link a:hover {
  text-decoration: underline;
}


/* ─── Footer ─── */

.footer {
  border-top: 1px solid #E2E8F0;
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__links a {
  color: #94A3B8;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #475569;
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ─── Utility ─── */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
