/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 4rem 6rem;
  position: relative; overflow: hidden;
  padding-top: 80px; /* nav height offset */
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(43,71,245,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-kicker {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-kicker::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--blue);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--orange-lt); }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--off); line-height: 1.75;
  max-width: 46ch; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-stat {
  position: absolute; bottom: 6rem; right: 4rem; z-index: 2;
  border-left: 2px solid var(--orange); padding-left: 1.2rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); max-width: 16ch; line-height: 1.5; margin-top: 0.4rem;
}

/* ════════════════════════════════
   STATS STRIP
════════════════════════════════ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.6s ease;
}
.stat-item:hover::after { width: 60%; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: var(--white); margin-bottom: 0.4rem;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ════════════════════════════════
   PAIN
════════════════════════════════ */
.pain { background: var(--navy2); }
.pain h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700;
  margin-bottom: 3.5rem; max-width: 30ch;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.pain-card {
  background: var(--navy2); padding: 2.5rem 2rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.pain-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pain-card:hover { background: #13245a; }
.pain-card:hover::after { transform: scaleX(1); }
.pain-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  color: rgba(43,71,245,0.2); line-height: 1; margin-bottom: 1rem; font-weight: 900;
}
.pain-card h3 { font-size: 0.97rem; font-weight: 500; margin-bottom: 0.8rem; line-height: 1.45; }
.pain-card p { font-size: 0.86rem; line-height: 1.75; color: var(--muted); }
.pain-remate {
  margin-top: 2.5rem; padding: 1.8rem 2rem;
  border: 1px solid rgba(255,107,43,0.2); border-left: 3px solid var(--orange);
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic;
  color: rgba(240,244,255,0.75); line-height: 1.6; background: rgba(255,107,43,0.03);
}

/* ════════════════════════════════
   BENEFITS
════════════════════════════════ */
.benefits h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700; margin-bottom: 4rem;
}
.benefit-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); margin-bottom: 1px; transition: border-color 0.3s;
}
.benefit-row:hover { border-color: rgba(43,71,245,0.35); }
.benefit-left { padding: 3rem; border-right: 1px solid var(--border); position: relative; }
.benefit-num {
  font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900;
  color: rgba(43,71,245,0.1); line-height: 1; position: absolute; top: 1.5rem; right: 2rem;
}
.benefit-tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 0.6rem; }
.benefit-left h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.8rem; }
.benefit-left .subhead { font-style: italic; font-size: 0.88rem; color: var(--muted); }
.benefit-right { padding: 3rem; background: rgba(43,71,245,0.02); display: flex; flex-direction: column; justify-content: center; }
.benefit-right p { font-size: 0.91rem; line-height: 1.85; color: var(--muted); }
.benefit-service { margin-top: 1.5rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-lt); opacity: 0.7; }

/* ════════════════════════════════
   METHODOLOGY
════════════════════════════════ */
.methodology { background: var(--navy2); }
.methodology h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700; margin-bottom: 0.8rem;
}
.methodology .intro { font-size: 0.95rem; color: var(--muted); margin-bottom: 4rem; max-width: 50ch; line-height: 1.7; }
.method-flow {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; position: relative;
}
.method-flow::before {
  content: ''; position: absolute;
  top: 3.5rem; left: calc(100%/12); right: calc(100%/12);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(43,71,245,0.2) 100%);
  z-index: 0;
}
.method-step { padding: 0 1rem 2rem; position: relative; z-index: 1; text-align: center; }
.method-dot-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.method-dot {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900; color: var(--blue-lt);
  transition: all 0.3s; position: relative;
}
.method-step:hover .method-dot {
  background: var(--blue); color: var(--white);
  box-shadow: 0 0 20px rgba(43,71,245,0.4);
}
.method-step:last-child .method-dot { border-color: var(--orange); color: var(--orange); }
.method-step:last-child:hover .method-dot { background: var(--orange); color: var(--white); box-shadow: 0 0 20px rgba(255,107,43,0.4); }
.method-step h3 { font-size: 0.82rem; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.3; color: var(--white); }
.method-step p { font-size: 0.75rem; line-height: 1.65; color: var(--muted); }

/* ════════════════════════════════
   FIT SECTION
════════════════════════════════ */
.fit-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700; margin-bottom: 3rem;
}
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.fit-card {
  padding: 2rem; border-radius: 3px;
  display: grid; grid-template-columns: 2rem 1fr;
  gap: 1rem; align-items: start;
}
.fit-yes {
  background: rgba(43,71,245,0.05);
  border: 1px solid rgba(43,71,245,0.2);
  border-top: 2px solid var(--blue);
}
.fit-no {
  background: rgba(200,212,248,0.02);
  border: 1px solid rgba(200,212,248,0.08);
  border-top: 2px solid rgba(200,212,248,0.15);
}
.fit-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.fit-yes .fit-icon { background: rgba(43,71,245,0.15); color: #4A64FF; }
.fit-no  .fit-icon { background: rgba(200,212,248,0.06); color: rgba(200,212,248,0.3); }
.fit-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.fit-yes .fit-label { color: var(--blue-lt); }
.fit-no  .fit-label { color: rgba(200,212,248,0.3); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.fit-list li { font-size: 0.88rem; line-height: 1.65; color: var(--muted); padding-left: 1rem; position: relative; }
.fit-yes .fit-list li::before { content: '—'; position: absolute; left: 0; color: rgba(43,71,245,0.4); font-size: 0.8rem; }
.fit-no  .fit-list li::before { content: '—'; position: absolute; left: 0; color: rgba(200,212,248,0.15); font-size: 0.8rem; }

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team { background: var(--navy2); }
.team h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 700; margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.founder-card { border: 1px solid var(--border); padding: 2.5rem; background: rgba(43,71,245,0.04); }
.founder-photo-wrap { position: relative; width: 90px; height: 90px; margin-bottom: 1.4rem; }
.founder-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid rgba(43,71,245,0.4); }
.founder-photo-ring { position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(255,107,43,0.3); pointer-events: none; }
.founder-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.founder-role { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 0.4rem; }
.founder-creds { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 1.2rem; }
.founder-bio { font-size: 0.87rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.5rem; }
.founder-quote { border-left: 2px solid var(--orange); padding-left: 1rem; font-style: italic; font-size: 0.87rem; color: rgba(240,244,255,0.55); line-height: 1.7; }
.team-right h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--off); margin-bottom: 1.5rem; }
.differentiator { background: rgba(43,71,245,0.06); border: 1px solid rgba(43,71,245,0.2); padding: 1.5rem; margin-bottom: 1.5rem; font-size: 0.88rem; line-height: 1.8; color: var(--muted); }
.differentiator strong { color: var(--white); font-weight: 500; }
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
.expertise-item { border: 1px solid var(--border); padding: 0.7rem; font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); text-align: center; transition: all 0.2s; }
.expertise-item:hover { border-color: var(--orange); color: var(--orange-lt); background: rgba(255,107,43,0.06); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3.2vw,2.8rem); font-weight: 700; margin-bottom: 3rem; }
.faq-list { max-width: 68ch; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.8rem 0; }
.faq-q { font-size: 0.97rem; font-weight: 500; color: var(--white); margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: start; gap: 1rem; cursor: pointer; user-select: none; }
.faq-q::after { content: '+'; color: var(--orange); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { font-size: 0.88rem; line-height: 1.8; color: var(--muted); display: none; }
.faq-a.open { display: block; }

/* ════════════════════════════════
   LEAD MAGNET STRIP
════════════════════════════════ */
.magnet-strip {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(43,71,245,0.03);
}
.magnet-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.magnet-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.magnet-tag::before { content: ''; display: block; width: 1.2rem; height: 1px; background: var(--orange); }
.magnet-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.magnet-desc { font-size: 0.88rem; line-height: 1.75; color: var(--muted); max-width: 50ch; }
.magnet-right { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; min-width: 200px; }
.magnet-preview {
  width: 160px; padding: 1rem 1.2rem;
  background: rgba(13,27,62,0.8);
  border: 1px solid var(--border); border-top: 2px solid var(--orange); border-radius: 2px;
}
.magnet-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0.8rem; }
.magnet-lines span { display: block; height: 2px; border-radius: 1px; background: rgba(200,212,248,0.12); }
.magnet-lines span:nth-child(1) { width: 90%; }
.magnet-lines span:nth-child(2) { width: 70%; }
.magnet-lines span:nth-child(3) { width: 85%; }
.magnet-lines span:nth-child(4) { width: 60%; }
.magnet-lines span:nth-child(5) { width: 75%; }
.magnet-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: center; }
.btn-magnet {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--white);
  padding: 0.8rem 1.6rem; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 4px 18px rgba(255,107,43,0.25);
  transition: background 0.2s, transform 0.15s;
}
.btn-magnet:hover { background: var(--orange-lt); transform: translateY(-1px); }
.magnet-note { font-size: 0.7rem; color: rgba(200,212,248,0.3); letter-spacing: 0.06em; text-align: center; }

/* ════════════════════════════════
   CTA FINAL
════════════════════════════════ */
.cta-final { background: var(--navy2); text-align: center; padding: 8rem 4rem; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 65% at 50% 50%, rgba(43,71,245,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-final .section-label { justify-content: center; }
.cta-final h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.8vw,3.3rem); font-weight: 900; line-height: 1.15; margin: 1.5rem auto 1.5rem; max-width: 20ch; position: relative; }
.cta-final > p { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.75; position: relative; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; position: relative; flex-wrap: wrap; }
.cta-micro { font-size: 0.72rem; color: var(--muted); margin-top: 1.2rem; letter-spacing: 0.06em; position: relative; }

/* ════════════════════════════════
   RESPONSIVE — LANDING
════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; min-height: 100svh; }
  .hero-stat { display: none; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary { width: 100%; text-align: center; padding: 1rem; justify-content: center; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 1.8rem 1rem; }
  .stat-num { font-size: 2rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 1.8rem 1.5rem; }
  .benefit-row { grid-template-columns: 1fr; }
  .benefit-left { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
  .benefit-right { padding: 2rem 1.5rem; }
  .benefit-num { font-size: 3.5rem; top: 1rem; right: 1rem; }
  .method-flow { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .method-flow::before { display: none; }
  .fit-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .faq-list { max-width: 100%; }
  .cta-final { padding: 5rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary { width: 100%; max-width: 320px; justify-content: center; }
  .magnet-inner { grid-template-columns: 1fr; gap: 2rem; }
  .magnet-right { align-items: flex-start; }
  .magnet-preview { display: none; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .method-flow { grid-template-columns: repeat(2,1fr); }
}
