/* ============================================================
   FORMA FUTBOL LAB — Brand Stylesheet v2
   Ink Teal #082B35 | Field Green #2E6A44 | Logo Lime #7F9B43
   Warm Gold #E3B83F | Matcha #B9CF58 | Stone #E7ECE3
   Headlines: Montserrat Bold | Body: Source Sans 3 / Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', 'Inter', sans-serif; color: #082B35; background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:   #082B35;
  --forest: #2E6A44;
  --amazon: #7F9B43;
  --yellow: #E3B83F;
  --cielo:  #B9CF58;
  --stone:  #E7ECE3;
  --white:  #FFFFFF;
  --lgreen: #F0F5E4;
  --lgray:  #F7F8F4;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', 'Inter', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(8,43,53,0.10);
  --shadow-lg: 0 8px 48px rgba(8,43,53,0.20);

  --max-w: 1200px;
}

/* ── Inline SVG Logo (can be used anywhere) ─────────────── */
/* Use .forma-logo class on an <svg> element or inject via JS */
.logo-wordmark {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* ── Topographic texture overlay ───────────────────────── */
/* Applied via ::before on dark sections */
.topo-bg {
  position: relative;
  overflow: hidden;
}
.topo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cellipse cx='400' cy='400' rx='380' ry='200'/%3E%3Cellipse cx='400' cy='400' rx='320' ry='160'/%3E%3Cellipse cx='400' cy='400' rx='260' ry='120'/%3E%3Cellipse cx='400' cy='400' rx='200' ry='85'/%3E%3Cellipse cx='400' cy='400' rx='140' ry='55'/%3E%3Cellipse cx='400' cy='400' rx='80' ry='30'/%3E%3Cellipse cx='200' cy='300' rx='180' ry='100'/%3E%3Cellipse cx='200' cy='300' rx='130' ry='70'/%3E%3Cellipse cx='200' cy='300' rx='80' ry='42'/%3E%3Cellipse cx='600' cy='500' rx='160' ry='90'/%3E%3Cellipse cx='600' cy='500' rx='110' ry='60'/%3E%3Cellipse cx='600' cy='500' rx='60' ry='33'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.topo-bg > * { position: relative; z-index: 1; }

/* Brushstroke accent (yellow) */
.brush-accent {
  position: relative;
}
.brush-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  transform: skewX(-8deg);
}

/* ── Container ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1.05rem; line-height: 1.8; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amazon);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--cielo); }
.eyebrow-yellow { color: var(--yellow); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover { background: #cfa22f; border-color: #cfa22f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,184,63,0.35); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--stone); transform: translateY(-2px); }

.btn-outline-white,
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover,
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-green {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-green:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(8,43,53,0.25);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-lg { padding: 20px 52px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }

/* ── Navigation ────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}

/* Forma Logo in nav */
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
.nav-logo-svg { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 36px; height: 36px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-forma {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--yellow);
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--yellow); }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 120px 32px 100px;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.hero-brand-mark {
  position: absolute;
  right: -44px;
  top: 50%;
  width: min(36vw, 430px);
  opacity: 0.16;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 30px 80px rgba(142,170,69,0.18));
}

/* Radial glow from right side (green-ish) */
.hero-glow::before {
  background: radial-gradient(ellipse at 75% 40%, rgba(142,170,69,0.22) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 85%, rgba(185,207,88,0.10) 0%, transparent 45%);
}

.hero-content { max-width: 700px; position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 28px; font-weight: 900; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  max-width: 560px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 64px; }

/* Country strip under hero content */
.country-strip {
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}
.cs-pill {
  padding: 9px 20px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.cs-col { background: var(--amazon); color: var(--navy); }
.cs-bra { background: var(--forest); }
.cs-arg { background: #C1B84A; color: var(--navy); }

/* Trust stats */
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── Proof bar ─────────────────────────────────────────── */
.proof-bar {
  background:
    radial-gradient(circle at 18% 20%, rgba(185,207,88,0.16), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--forest));
  padding: 22px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.proof-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.proof-copy {
  max-width: 520px;
}
.proof-kicker {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cielo);
}
.proof-copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.35;
}
.proof-tags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-item {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.05);
}
.proof-item-accent {
  color: var(--navy);
  background: var(--yellow);
  border-color: transparent;
}
.proof-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ── Section ───────────────────────────────────────────── */
.section { padding: 96px 32px; }
.section-dark { background: var(--navy); }
.section-stone { background: var(--stone); }
.section-lgreen { background: var(--lgreen); }
.section-lgray  { background: var(--lgray); }
.section-navy   { background: var(--navy); }

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin: 0 0 64px; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: rgba(8,43,53,0.6); font-size: 1.05rem; }
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255,255,255,0.6); }

/* Utility aliases used in about/teams pages */
.section-title { margin-bottom: 16px; }
.section-subtitle { color: rgba(8,43,53,0.6); font-size: 1.05rem; margin-bottom: 48px; }

.gap-callout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 52px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(8,43,53,0.08);
  border-left: 5px solid var(--amazon);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.gap-callout h2 { margin: 0; color: var(--navy); }
.gap-callout p {
  font-size: 1.02rem;
  color: rgba(8,43,53,0.72);
  margin-bottom: 16px;
}
.gap-callout p:last-child { margin-bottom: 0; }

/* ── Pricing Tiers ─────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(8,43,53,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tier-card.featured {
  border-color: var(--amazon);
  transform: scale(1.02);
}
.tier-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.tier-card.premium { border-color: var(--yellow); }

.tier-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 0 0 10px 10px;
}
.tier-badge.green { background: var(--forest); color: var(--white); }

/* Tier color bar at top */
.tier-bar { height: 5px; background: var(--amazon); }
.tier-bar.yellow { background: var(--yellow); }
.tier-bar.navy   { background: var(--navy); }

.tier-body { padding: 36px 32px 40px; }

.tier-name {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amazon); margin-bottom: 6px;
}
.tier-card.premium .tier-name { color: var(--navy); }

.tier-price {
  font-family: var(--font-head);
  font-size: 3.2rem; font-weight: 900;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.tier-price sup { font-size: 1.4rem; vertical-align: super; }
.tier-card.featured .tier-price { color: var(--amazon); }
.tier-card.premium .tier-price  { color: var(--navy); }

.tier-tagline {
  font-size: 0.88rem; color: rgba(8,43,53,0.5);
  margin-bottom: 28px; font-style: italic;
}

.tier-divider { border: none; border-top: 1px solid rgba(8,43,53,0.08); margin: 24px 0; }

.tier-what {
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(8,43,53,0.35); margin-bottom: 14px;
}

.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tier-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: rgba(8,43,53,0.8); line-height: 1.5;
}
.tier-features li .check {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--lgreen); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--amazon); font-weight: 900;
  margin-top: 1px;
}
.tier-card.featured .tier-features li .check { background: var(--amazon); color: var(--white); }
.tier-card.premium  .tier-features li .check { background: #F5E8C6; color: #6F5620; }

.tier-cta { width: 100%; text-align: center; }

/* Coach highlight callout inside tier */
.coach-note {
  background: var(--lgray); border-radius: var(--radius);
  padding: 12px 14px; margin-bottom: 20px;
  font-size: 0.82rem; color: rgba(8,43,53,0.65);
  border-left: 3px solid var(--amazon);
  line-height: 1.5;
}
.tier-card.premium .coach-note { border-left-color: var(--yellow); }

/* ── Steps ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px; background: rgba(8,43,53,0.08);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--yellow);
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.1);
}
.step-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.step-item p  { font-size: 0.85rem; color: rgba(8,43,53,0.6); }

/* Dark bg steps */
.steps-dark .step-num { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--yellow); }
.steps-dark .step-item h4 { color: var(--white); }
.steps-dark .step-item p  { color: rgba(255,255,255,0.55); }
.steps-dark::before { background: rgba(255,255,255,0.08); }

/* ── Deliverables ───────────────────────────────────────── */
.delivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.deliver-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--amazon);
  box-shadow: 0 2px 12px rgba(8,43,53,0.06);
  transition: transform 0.2s;
}
.deliver-card:hover { transform: translateY(-4px); }
.deliver-card h4 { color: var(--navy); margin-bottom: 10px; }
.deliver-card p  { font-size: 0.9rem; color: rgba(8,43,53,0.6); }
.deliver-icon { font-size: 1.8rem; margin-bottom: 14px; }

/* ── Coach Cards ───────────────────────────────────────── */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.coach-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.coach-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
.coach-flag-bar { height: 6px; }
.coach-flag-bar.col { background: linear-gradient(90deg, #FCD116 33%, #003893 33%, #003893 66%, #CE1126 66%); }
.coach-flag-bar.bra { background: linear-gradient(90deg, #009C3B 33%, #FFDF00 33%, #FFDF00 66%, #009C3B 66%); }
.coach-flag-bar.arg { background: linear-gradient(90deg, #74ACDF 33%, #fff 33%, #fff 66%, #74ACDF 66%); }
.coach-card-body { padding: 28px 24px; }
.coach-card h4  { color: var(--white); margin-bottom: 4px; }
.coach-origin {
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cielo); margin-bottom: 14px;
}
.coach-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.coach-cred {
  margin-top: 18px; padding: 10px 14px;
  background: rgba(142,170,69,0.2); border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 600; color: var(--cielo);
}

/* ── Quote ─────────────────────────────────────────────── */
.quote-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  position: relative; overflow: hidden;
}
.quote-wrap::before {
  content: '\201C';
  position: absolute; top: -40px; left: 24px;
  font-family: var(--font-head); font-size: 16rem;
  color: rgba(227,184,63,0.07); line-height: 1;
  pointer-events: none;
}
.quote-wrap::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(142,170,69,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.quote-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white); font-style: italic;
  line-height: 1.85; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.quote-attr {
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
}
.quote-dash { display: inline-block; width: 24px; height: 2px; background: var(--yellow); vertical-align: middle; margin-right: 10px; }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: 96px 32px; text-align: center;
}
.cta-band.navy { background: var(--navy); }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p  { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Club band ─────────────────────────────────────────── */
.club-band {
  background: var(--lgreen);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.club-band-text h3 { color: var(--navy); margin-bottom: 10px; }
.club-band-text p  { color: rgba(8,43,53,0.6); font-size: 0.95rem; max-width: 520px; }

/* ── Values ────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.values-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 56px;
  align-items: start;
}
.values-lead {
  position: sticky;
  top: 112px;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.values-lead::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,207,88,0.25), transparent 68%);
}
.values-lead .eyebrow { color: var(--cielo); }
.values-lead h2 { color: var(--white); margin-bottom: 18px; }
.values-lead p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.values-proof {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}
.values-proof strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.values-grid-about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(8,43,53,0.08);
  border-top: 4px solid var(--amazon);
  box-shadow: 0 2px 18px rgba(8,43,53,0.06);
}
.value-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: start;
  background: linear-gradient(135deg, #ffffff 0%, var(--lgreen) 100%);
  border-top-color: var(--yellow);
}
.value-kicker {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--amazon);
  margin-bottom: 14px;
}
.value-card-featured .value-kicker {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  margin-bottom: 0;
}
.value-card h4 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.92rem;
  color: rgba(8,43,53,0.68);
  line-height: 1.65;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(8,43,53,0.09); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 22px 0;
  font-family: var(--font-head); font-size: 0.98rem; font-weight: 700;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%; background: var(--lgreen);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--amazon); font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 22px; color: rgba(8,43,53,0.6); font-size: 0.95rem; line-height: 1.8; }

/* Dark FAQ */
.faq-dark .faq-item { border-color: rgba(255,255,255,0.08); }
.faq-dark .faq-q { color: var(--white); }
.faq-dark .faq-icon { background: rgba(255,255,255,0.06); color: var(--cielo); }
.faq-dark .faq-item.open .faq-icon { background: var(--forest); color: var(--white); }
.faq-dark .faq-a p { col