/* Portfolio Loïc Ponchon
   Style sobre, dark mode par défaut, accent bleu, mobile-first. */

:root {
  --bg: #0e1116;
  --bg-soft: #161b22;
  --bg-card: #1c2128;
  --border: #30363d;
  --border-soft: #21262d;
  --text: #f0f6fc;
  --text-soft: #c9d1d9;
  --text-mute: #8b949e;
  --accent: #4a8fe7;
  --accent-soft: #1f6feb;
  --accent-hover: #69aaff;
  --success: #3fb950;
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1080px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --bg-soft: #f6f8fa;
    --bg-card: #ffffff;
    --border: #d0d7de;
    --border-soft: #eaeef2;
    --text: #0e1116;
    --text-soft: #24292f;
    --text-mute: #57606a;
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

.skip {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  z-index: 100;
}
.skip:focus {
  top: 0;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(14, 17, 22, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

@media (prefers-color-scheme: light) {
  .nav {
    background: rgba(255, 255, 255, 0.85);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #6e40c9);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.brand-name {
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent-soft);
  color: white !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

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

@media (max-width: 720px) {
  .nav {
    padding: 12px 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 96px 24px 64px;
  overflow: hidden;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 14px;
  color: var(--text-mute);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.hero-amp {
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
  margin: 4px 0;
}

.hero-lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 0 36px;
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.meta-pill {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 140px;
}

.meta-pill--accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(74, 143, 231, 0.1), transparent);
}

.meta-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.meta-label {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-blob {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 143, 231, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-soft);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

/* SECTIONS */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 0 var(--space-lg);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 0 18px;
}

.about-text strong {
  color: var(--text);
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.card-mini-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mute);
  margin-bottom: 6px;
}

.card-mini-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.card-mini-note {
  font-size: 13px;
  color: var(--text-mute);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

@media (max-width: 880px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(74, 143, 231, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-soft);
  margin: 0 0 16px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-mute);
  margin: 6px 0;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 880px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s ease;
}

.project-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.project-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card), rgba(74, 143, 231, 0.05));
  border-color: var(--accent);
}

@media (max-width: 880px) {
  .project-card--featured {
    grid-column: span 1;
  }
}

.project-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.project-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.project-desc {
  color: var(--text-soft);
  margin: 0 0 16px;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.project-stack span {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(74, 143, 231, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.project-metrics div {
  font-size: 14px;
  color: var(--text-mute);
}

.project-metrics strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  display: block;
}

/* STACK */
.stack-group {
  margin-bottom: var(--space-lg);
}

.stack-group:last-child {
  margin-bottom: 0;
}

.stack-group-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-weight: 600;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-pills span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.stack-pills span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.stack-pills--accent span {
  background: rgba(74, 143, 231, 0.08);
  border-color: rgba(74, 143, 231, 0.3);
  color: var(--accent);
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-stars {
  font-size: 28px;
  color: #f59e0b;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* CONTACT */
.contact-inner {
  text-align: center;
}

.contact-inner .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--text);
  transition: all 0.2s ease;
  text-align: left;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  color: var(--text);
}

.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mute);
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 32px 24px;
  text-align: center;
}

.footer-inner p {
  margin: 4px 0;
  color: var(--text-mute);
  font-size: 14px;
}

.footer-meta {
  font-size: 12px !important;
  opacity: 0.7;
}

/* =================================================================
   V4 — Vendor-ready additions
   ================================================================= */

/* HERO BOLD with metrics */
.hero--bold {
  padding-top: 80px;
  padding-bottom: 56px;
}

.hero-title--metric {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 24px;
}

.hero-metric-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-metric-label {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-soft);
}

.hero-metric-sep {
  color: var(--text-mute);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.trust-pill {
  display: flex;
  flex-direction: column;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  min-width: 120px;
}

.trust-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.trust-num-small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mute);
}

.trust-label {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* TRUSTED BY strip */
.trusted-by {
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-mute);
  margin: 0 0 16px;
}

.trusted-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.trusted-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

/* WHY agentic */
.why {
  padding: var(--space-xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: 32px;
}

.why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.why-card-pain {
  color: #f87171;
  font-weight: 600;
}

.why-card-arrow {
  color: var(--text-mute);
}

.why-card-outcome {
  color: var(--success);
  font-weight: 600;
}

.why-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text);
}

.why-card-pain-text {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(248, 113, 113, 0.3);
}

.why-card-outcome-text {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid rgba(63, 185, 80, 0.4);
}

.why-card-outcome-text em {
  color: var(--text-mute);
  font-style: italic;
  font-size: 12px;
}

.why-cta {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(74, 143, 231, 0.08), rgba(74, 143, 231, 0.03));
  border: 1px solid rgba(74, 143, 231, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.why-cta p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CASE STUDY featured */
.case-study {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 8px;
}

.case-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: 32px;
}

@media (max-width: 880px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

.case-context p {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0 0 16px;
}

.case-context ul {
  padding-left: 20px;
  color: var(--text-soft);
}

.case-context ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.case-h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 24px 0 12px;
  font-weight: 700;
}

.case-h3:first-child {
  margin-top: 0;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: sticky;
  top: 80px;
}

.case-metric {
  text-align: center;
  padding: 12px 8px;
}

.case-metric-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.case-metric-num small {
  font-size: 18px;
}

.case-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mute);
  margin-top: 4px;
}

.case-metric--stack {
  grid-column: 1 / -1;
  text-align: left;
  padding: 12px 8px;
  border-top: 1px solid var(--border-soft);
  margin-top: 8px;
}

.case-metric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.case-metric-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 2px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  color: var(--text-soft);
}

/* Service tagline + bottom */
.service-tagline {
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  margin: 8px 0 12px;
}

.service-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.service-format {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
}

/* PROCESS */
.process {
  padding: var(--space-xl) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: 32px;
}

@media (max-width: 880px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  position: relative;
}

.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* REVIEWS */
.reviews {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: 32px 0;
}

.review-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.review-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
}

.review-quote {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
}

.review-author span {
  opacity: 0.7;
}

.reviews-cta {
  text-align: center;
  margin-top: 24px;
}

/* FAQ */
.faq {
  padding: var(--space-xl) 0;
}

.faq-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: background 0.2s ease;
}

.faq-item[open] {
  background: var(--bg-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 24px;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* =================================================================
   V5 — ICP serré, availability, who, guarantee, not-fit, sticky CTA
   ================================================================= */

/* Availability banner */
.availability-banner {
  background: linear-gradient(90deg, rgba(63, 185, 80, 0.12), rgba(63, 185, 80, 0.06));
  border-bottom: 1px solid rgba(63, 185, 80, 0.3);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* WHO this is for (ICP) */
.who {
  padding: var(--space-xl) 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: 32px;
}

@media (max-width: 880px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.who-card {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  position: relative;
}

.who-card-tag {
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: white;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
}

.who-card h3 {
  font-size: 20px;
  margin: 8px 0 16px;
  color: var(--text);
  line-height: 1.3;
}

.who-card-desc {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.6;
}

.who-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.who-card-list li {
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--text-soft);
  position: relative;
}

.who-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.who-card-deliver {
  padding: 12px 16px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* Guarantee */
.guarantee {
  padding: var(--space-lg) 0;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(63, 185, 80, 0.08), rgba(63, 185, 80, 0.02));
  border: 1px solid rgba(63, 185, 80, 0.3);
  border-radius: var(--radius);
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
}

.guarantee-text h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text);
}

.guarantee-text p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Not the right fit if */
.not-fit {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}

.not-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: 32px 0 24px;
}

@media (max-width: 880px) {
  .not-fit-grid {
    grid-template-columns: 1fr;
  }
}

.not-fit-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.not-fit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.not-fit-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text);
}

.not-fit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.not-fit-honest {
  text-align: center;
  color: var(--text-mute);
  font-style: italic;
  font-size: 14px;
  max-width: 700px;
  margin: 24px auto 0;
}

/* Contact card primary variant */
.contact-card--primary {
  background: linear-gradient(135deg, rgba(74, 143, 231, 0.12), rgba(74, 143, 231, 0.04)) !important;
  border-color: rgba(74, 143, 231, 0.4) !important;
}

.contact-card-note {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
}

.sticky-cta-text strong {
  font-size: 15px;
  color: var(--text);
}

.sticky-cta-text span {
  font-size: 12px;
  color: var(--text-mute);
}

@media (max-width: 600px) {
  .sticky-cta-inner {
    flex-direction: column;
    gap: 8px;
  }
  .sticky-cta-text {
    text-align: center;
    align-items: center;
  }
}
}
