/* =====================================================
   HeraPrime — Design System v1.5 (Abril 2026)
   Normas HeraPrime v1 (Mar 2024) + v1.5 addenda
   Fonts: DM Sans · Colors: navy/blue/cyan + yellow/orange/red/green
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:root {
  /* Primary brand (from logo) */
  --navy:        #062041;
  --blue:        #1A6796;
  --cyan:        #17A9D2;

  /* Secondary brand (vida e alegria) */
  --yellow:      #FED219;
  --orange:      #EE7526;
  --red:         #FF3545;
  --green:       #16A34A;   /* v1.5 — sucesso */

  /* Derived tints */
  --cyan-tint:   #E7F4FA;
  --blue-tint:   #E6EEF5;
  --yellow-tint: #FFF7D9;
  --orange-tint: #FCE6D6;
  --red-tint:    #FFE3E6;
  --green-tint:  #DCFCE7;   /* v1.5 — fundos de sucesso */

  /* Neutrals — escala oficial v1.5 derivada do navy */
  --white:       #FFFFFF;
  --off-white:   #F6F9FC;
  --gray-0:      #FFFFFF;
  --gray-50:     #F6F9FC;
  --gray-100:    #EFF3F8;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #4A5A75;   /* texto muted — passa AAA (7.0:1) */
  --gray-800:    #2B4764;   /* texto secundário */
  --gray-900:    #062041;   /* === navy */
  --ink:         #062041;
  --ink-soft:    #2B4764;
  --muted:       #4A5A75;   /* v1.5 — antes era #6B7C94, falhava AA */
  --muted-2:     #94A3B8;
  --rule:        #E2E8F0;
  --rule-soft:   #EFF3F8;

  /* Legacy aliases for existing inline styles */
  --paper:          var(--white);
  --paper-warm:     var(--white);
  --paper-cool:     var(--off-white);
  --ivy:            var(--blue);
  --ivy-mid:        var(--cyan);
  --ivy-tint:       var(--cyan-tint);
  --terracotta:     var(--orange);
  --terracotta-tint:var(--orange-tint);
  --stone:          var(--muted);
  --stone-light:    var(--muted-2);

  /* Typography — DM Sans v1.5 */
  --f-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --max-w: 1320px;
  --max-w-narrow: 900px;
  --pad-x: max(1.25rem, 5vw);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(6, 32, 65, 0.06), 0 1px 3px rgba(6, 32, 65, 0.04);
  --shadow-md: 0 4px 6px rgba(6, 32, 65, 0.04), 0 10px 15px rgba(6, 32, 65, 0.06);
  --shadow-lg: 0 10px 25px rgba(6, 32, 65, 0.08), 0 20px 40px rgba(6, 32, 65, 0.06);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5, .display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.h1, h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -0.02em; }
.h2, h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.1; letter-spacing: -0.015em; }
.h3, h3 { font-size: clamp(1.4rem, 2.4vw, 1.875rem); line-height: 1.2; letter-spacing: -0.01em; }
.h4, h4 { font-size: 1.25rem; line-height: 1.3; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

strong, b { font-weight: 700; color: var(--navy); }

/* HeraPrime style: <em> is stylistic emphasis (cyan + bold) used in headlines.
   For semantic italic emphasis in prose, use <i> — DM Sans has genuine italics. */
em, .serif-italic {
  font-style: normal;
  font-weight: 700;
  color: var(--cyan);
}
i { font-style: italic; font-weight: inherit; color: inherit; }

.prose a, a.link {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 103, 150, 0.35);
  transition: all .2s var(--ease);
}
.prose a:hover, a.link:hover { color: var(--cyan); text-decoration-color: var(--cyan); }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--sm { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

.rule { height: 1px; background: var(--rule); border: 0; }
.rule-soft { height: 1px; background: var(--rule-soft); border: 0; }

/* Decorative blobs — brand signature */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.blob svg { width: 100%; height: 100%; display: block; }
.has-blobs { position: relative; overflow: hidden; }
.has-blobs > .container { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo__svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo__text { display: inline-flex; align-items: baseline; }
.logo__hera { color: var(--navy); font-weight: 700; }
.logo__prime { color: var(--cyan); font-weight: 400; }

.site-nav { display: flex; gap: 0.125rem; align-items: center; }
.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--blue); background: var(--blue-tint); }
.site-nav a.is-current { color: var(--blue); background: var(--blue-tint); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Dropdown submenus (desktop) */
.site-nav .nav-item { position: relative; display: inline-block; }
.site-nav .nav-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.site-nav .nav-item__link:hover,
.site-nav .nav-item:hover > .nav-item__link,
.site-nav .nav-item:focus-within > .nav-item__link {
  color: var(--blue);
  background: var(--blue-tint);
}
.site-nav .nav-item__link.is-current { color: var(--blue); background: var(--blue-tint); }
.site-nav .nav-item__caret {
  opacity: 0.7;
  transition: transform .2s var(--ease);
}
.site-nav .nav-item:hover .nav-item__caret,
.site-nav .nav-item:focus-within .nav-item__caret {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(6, 32, 65, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 90;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.6rem; left: 0; right: 0; height: 0.6rem;
}
.site-nav .nav-item:hover > .nav-submenu,
.site-nav .nav-item:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav .nav-submenu__link {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: all .15s var(--ease);
  white-space: nowrap;
}
.site-nav .nav-submenu__link:hover {
  background: var(--blue-tint);
  color: var(--blue);
}
.site-nav .nav-item:nth-last-of-type(-n+2) .nav-submenu {
  left: auto;
  right: 0;
}

.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--rule);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-btn span { display: block; width: 16px; height: 2px; background: var(--navy); border-radius: var(--r-pill); }
@media (max-width: 900px) {
  .site-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-cta { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.2;
}
.btn--primary, .btn--ink {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--ink:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--accent {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover { background: #FFDC3D; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--text {
  padding: 0.5rem 0;
  color: var(--blue);
  border-radius: 0;
  font-weight: 600;
  gap: 0.4rem;
}
.btn--text:hover { color: var(--cyan); }
.btn--text .arrow { transition: transform .25s var(--ease); }
.btn--text:hover .arrow { transform: translateX(5px); }

/* Hero */
.hero {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.hero__headline em { color: var(--cyan); font-weight: 700; }
.hero__lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-top: 2.25rem; }

.hero__visual {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule-soft);
}
.hero__visual-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.hero__visual-quote { font-size: 1.125rem; line-height: 1.5; color: var(--navy); font-weight: 500; }
.hero__visual-attr {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

/* Stats bar */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}
.stats-bar .container { position: relative; z-index: 2; }
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 1.25rem;
}
@media (max-width: 900px) { .stats-bar__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stats-bar__grid { grid-template-columns: repeat(2, 1fr); } }
.stat { display: flex; flex-direction: column; gap: 0.375rem; }
.stat__value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat__value sup { font-size: 0.5em; vertical-align: super; margin-left: 0.05em; color: var(--cyan); }
.stat__value em { color: var(--cyan); font-style: normal; }
.stat__label { font-size: 0.8125rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); line-height: 1.4; }
.stats-bar__grid .stat:nth-child(2) .stat__value sup { color: var(--yellow); }
.stats-bar__grid .stat:nth-child(4) .stat__value { color: var(--yellow); }
.stats-bar__grid .stat:nth-child(6) .stat__value { color: var(--cyan); }

/* Section headers */
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: baseline;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 760px) { .section-header { grid-template-columns: 1fr; gap: 1rem; } }
.section-header__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cyan);
  letter-spacing: -0.02em;
  opacity: 0.7;
}
.section-header__title { color: var(--navy); }

/* Traumas */
.trauma-section { background: var(--off-white); }
.trauma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.trauma {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.trauma:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trauma__quote {
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}
.trauma__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2.5rem;
  color: var(--cyan);
  font-weight: 700;
  line-height: 1;
}
.trauma__quote::after { content: ''; }
.trauma__attr {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Pillars */
.pillars { display: grid; gap: 1.5rem; }
.pillar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  align-items: start;
  transition: box-shadow .3s var(--ease);
}
.pillar:hover { box-shadow: var(--shadow-md); }
@media (max-width: 860px) { .pillar { grid-template-columns: 1fr; gap: 1.25rem; } }
.pillar__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--blue);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.75rem;
  display: grid; place-items: center;
  letter-spacing: -0.02em;
}
.pillar:nth-child(2) .pillar__num { background: var(--yellow-tint); color: #9A7B00; }
.pillar:nth-child(3) .pillar__num { background: var(--orange-tint); color: var(--orange); }
.pillar__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: var(--navy);
}
.pillar__promise {
  font-weight: 500;
  color: var(--blue);
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.pillar__body { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.pillar__body strong { color: var(--navy); font-weight: 700; }
.pillar__body p + p { margin-top: 0.875rem; }

/* Presence (certifications dark section) */
.presence { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.presence .container { position: relative; z-index: 2; }
.presence .eyebrow { color: var(--cyan); }
.presence h2 { color: var(--white); }
.presence .lead { color: rgba(255, 255, 255, 0.82); }
.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 860px) { .presence-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .presence-grid { grid-template-columns: 1fr; } }
.cert {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: background .2s var(--ease);
}
.cert:hover { background: rgba(255, 255, 255, 0.08); }
.cert__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cyan);
  display: grid;
  place-items: center;
  margin-bottom: 0.375rem;
  color: var(--navy);
}
.presence-grid .cert:nth-child(2) .cert__icon { background: var(--yellow); }
.presence-grid .cert:nth-child(3) .cert__icon { background: var(--orange); color: var(--white); }
.presence-grid .cert:nth-child(4) .cert__icon { background: var(--red); color: var(--white); }
.cert__name { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--white); line-height: 1.15; }
.cert__desc { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; flex: 1; }
.cert__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-top: 0.5rem; }

/* Calendar */
.calendar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.calendar-header {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, var(--orange-tint) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--rule);
}
.calendar-header h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.875rem); line-height: 1.15; color: var(--navy); }
.calendar-header p { margin-top: 0.5rem; color: var(--ink-soft); font-size: 1rem; }
.calendar-rows { display: flex; flex-direction: column; }
.calendar-row {
  display: grid;
  grid-template-columns: minmax(110px, 130px) minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--rule-soft);
  align-items: center;
  transition: background .15s var(--ease);
}
.calendar-row:hover { background: var(--off-white); }
.calendar-row:first-child { border-top: 0; }
@media (max-width: 780px) {
  .calendar-row { grid-template-columns: auto 1fr; gap: 0.75rem 1rem; padding: 1.25rem 1.5rem; }
  .calendar-row > *:not(.cal-date) { grid-column: 2; }
  .calendar-row .cal-date { grid-column: 1; grid-row: 1 / span 3; }
}
.cal-date { font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700; color: var(--orange); line-height: 1.15; }
.cal-date small { display: block; font-size: 0.7rem; font-weight: 600; color: var(--muted); margin-top: 0.15rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cal-title { font-weight: 700; font-size: 1rem; color: var(--navy); }
.cal-impact { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5; }
.cal-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.375rem 0.8rem;
  background: var(--orange);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
@media (max-width: 780px) { .cal-tag { justify-self: start; } }

/* Sectors */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .sectors-grid { grid-template-columns: 1fr; } }
.sector {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 260px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.sectors-grid .sector:nth-child(1) .sector__icon { background: var(--cyan); }
.sectors-grid .sector:nth-child(2) .sector__icon { background: var(--blue); }
.sectors-grid .sector:nth-child(3) .sector__icon { background: var(--orange); }
.sector__name { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; line-height: 1.15; color: var(--navy); }
.sector__desc { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.5; }
.sector__footer { margin-top: auto; padding-top: 0.875rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }

/* Cards */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .cards-row { grid-template-columns: 1fr; } }
.card-link { display: block; color: inherit; height: 100%; }
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.card-link:hover .card { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.card__meta {
  display: flex; gap: 0.75rem; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
}
.card__meta-tag {
  color: var(--blue);
  background: var(--blue-tint);
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
}
.card__title { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; line-height: 1.2; color: var(--navy); }
.card-link:hover .card__title { color: var(--blue); }
.card__excerpt { color: var(--ink-soft); font-size: 0.9375rem; margin-top: 0.75rem; line-height: 1.55; flex: 1; }
.card__arrow { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--blue); }

/* CTA block */
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-block > * { position: relative; z-index: 2; }
@media (max-width: 760px) { .cta-block { grid-template-columns: 1fr; } }
.cta-block h2 { color: var(--white); font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.1; }
.cta-block h2 em { color: var(--yellow); font-weight: 700; }
.cta-block p { color: rgba(255, 255, 255, 0.82); margin-top: 1rem; line-height: 1.55; font-size: 1rem; }
.cta-block__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.cta-block .btn--primary { background: var(--yellow); color: var(--navy); }
.cta-block .btn--primary:hover { background: #FFDC3D; color: var(--navy); }
.cta-block .btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.cta-block .btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}
.site-footer .container { position: relative; z-index: 2; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand .logo__hera { color: var(--white); }
.footer__brand .logo__prime { color: var(--cyan); }
.footer__brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; max-width: 34ch; line-height: 1.55; }
.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.125rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.82); font-weight: 500; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--cyan); }
.footer-certs {
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-cert {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.88);
}
.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a:hover { color: var(--cyan); }

/* Page hero */
.page-hero {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); max-width: 22ch; line-height: 1.05; }
.page-hero .lead { margin-top: 1.5rem; max-width: 56ch; }

/* Pull quote */
.pull-quote {
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 3rem);
  background: var(--blue-tint);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
}
.pull-quote__text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--navy);
}
.pull-quote__text em { color: var(--cyan); font-weight: 700; }

/* Defs */
.defs { display: grid; gap: 1rem; }
.def {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  align-items: start;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) { .def { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; } }
.def__term { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; line-height: 1.2; color: var(--navy); }
.def__body { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.def__body strong { color: var(--navy); }

/* Steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.step:hover { box-shadow: var(--shadow-md); }
.step__num {
  counter-increment: step;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.step__num::before { content: counter(step); }
.step__body h4 { font-family: var(--f-display); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.375rem; color: var(--navy); }
.step__body p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }

/* Prose */
.prose { max-width: 68ch; font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.125rem; }
.prose h2 { margin-top: 2.5rem; font-size: 1.75rem; line-height: 1.2; color: var(--navy); }
.prose h3 { margin-top: 2rem; font-size: 1.375rem; line-height: 1.25; color: var(--navy); }
.prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 4px solid var(--cyan);
  background: var(--cyan-tint);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { padding-left: 1.75rem; position: relative; color: var(--ink-soft); }
.prose ul li + li { margin-top: 0.625rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--cyan); }
.prose strong { color: var(--navy); }

.prose-callout {
  padding: 1.5rem 1.75rem;
  background: var(--orange-tint);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--navy);
  font-size: 0.9875rem;
  line-height: 1.55;
}
.prose-callout .eyebrow { color: var(--orange); margin-bottom: 0.4rem; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.75rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.field input, .field textarea, .field select {
  border: 1.5px solid var(--rule);
  background: var(--white);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  font-family: var(--f-body);
  border-radius: var(--r-md);
  font-weight: 500;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-tint);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-submit { margin-top: 2rem; }
.form-consent {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.form-consent input { margin-top: 0.25rem; accent-color: var(--cyan); }

/* Utility */
.muted { color: var(--muted); }
.ivy { color: var(--blue); }
.cyan { color: var(--cyan); }
.yellow { color: var(--yellow); }
.orange { color: var(--orange); }
.center { text-align: center; }
.narrow { max-width: 68ch; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-tint);
}
.chip--urgent { color: var(--navy); background: var(--orange); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger > .reveal.is-visible { transition-delay: calc(var(--i, 0) * 80ms); }


/* ---- v1.5 — focus ring + success alert ---- */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: var(--r-pill);
}

/* Success alert / callout */
.alert--success {
  padding: 1.25rem 1.5rem;
  background: var(--green-tint);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--navy);
  font-size: 0.9875rem;
  line-height: 1.55;
}
.alert--success .eyebrow { color: var(--green); margin-bottom: 0.4rem; }

/* Tabular numerals for regulatory/financial data */
.tabular-nums { font-variant-numeric: tabular-nums; }
.cal-date, .stat__value, .cert__name, .cal-impact { font-variant-numeric: tabular-nums; }


/* ---- v1.5 — mobile menu drawer ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: flex-end;
}
body.menu-open .mobile-nav { display: flex; }
body.menu-open { overflow: hidden; }

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 65, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: mnav-fade 0.25s var(--ease);
}

.mobile-nav__panel {
  position: relative;
  z-index: 1;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  box-shadow: -20px 0 50px rgba(6, 32, 65, 0.18);
  animation: mnav-slide 0.3s var(--ease);
  overflow-y: auto;
}

.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s var(--ease);
}
.mobile-nav__close:hover { background: var(--gray-100); }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav__links a {
  display: block;
  padding: 0.95rem 1rem;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-md);
  transition: all 0.15s var(--ease);
}
.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible,
.mobile-nav__links a.is-current {
  background: var(--blue-tint);
  color: var(--blue);
}

.mobile-nav__group {
  border-bottom: 1px solid var(--rule);
  padding: 0.25rem 0;
}
.mobile-nav__group:last-child { border-bottom: 0; }
.mobile-nav__links a.mobile-nav__top {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.0625rem;
}
.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0.5rem;
  margin-top: -0.1rem;
  margin-bottom: 0.35rem;
}
.mobile-nav__links a.mobile-nav__sublink {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.mobile-nav__cta:hover { background: var(--blue); }

/* Burger morphs into X when menu is open */
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-btn span {
  transition: transform 0.2s var(--ease), opacity 0.15s var(--ease);
}

@keyframes mnav-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mnav-slide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Hide mobile nav entirely at desktop */
@media (min-width: 901px) {
  .mobile-nav { display: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-block, .nav-cta, .blob { display: none !important; }
  body { background: white; color: black; }
}

/* ==========================================================
   v1.5.1 — Components for full sitemap (sectors, packs, quiz)
   ========================================================== */

/* --- Sector tier badges --- */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
}
.tier-badge--tier1 { background: var(--cyan-tint); color: var(--blue); }
.tier-badge--tier2 { background: var(--gray-100); color: var(--gray-600); }

/* --- Pack hero — oferta-hero destaque --- */
.pack-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0A2F5C 55%, var(--blue) 100%);
  color: var(--white);
  overflow: hidden;
}
.pack-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  opacity: 0.25;
  border-radius: 50%;
  pointer-events: none;
}
.pack-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}
.pack-hero .container { position: relative; z-index: 1; }
.pack-hero .eyebrow { color: var(--cyan); }
.pack-hero h1 { color: var(--white); }
.pack-hero .lead { color: rgba(255,255,255,0.85); max-width: 52ch; }
.pack-hero em { color: var(--yellow); font-style: normal; font-weight: 700; }

/* --- Pack scope grid --- */
.pack-scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pack-scope-item {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pack-scope-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pack-scope-item__num {
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pack-scope-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pack-scope-item__body {
  font-size: 0.875rem;
  color: var(--gray-800);
  line-height: 1.55;
}

/* --- Persona CTA triple (hero of homepage) --- */
.persona-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) {
  .persona-triple { grid-template-columns: 1fr; }
}
.persona-card {
  display: block;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--ease);
}
.persona-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(23,169,210,0.12);
  transform: translateY(-2px);
}
.persona-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.persona-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.persona-card__body {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.persona-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.persona-card:hover .persona-card__link { color: var(--cyan); }

/* --- Diagnóstico quiz entry button --- */
.quiz-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--r-md);
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
}
.quiz-callout__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan);
  flex-shrink: 0;
}
.quiz-callout__text { flex: 1; }
.quiz-callout__text strong { color: var(--navy); }
.quiz-callout a {
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* --- Sector Tier 2 grid card --- */
.sector-card {
  display: block;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--ease);
  height: 100%;
}
.sector-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(6,32,65,0.08);
}
.sector-card__tier { margin-bottom: 0.75rem; }
.sector-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.sector-card__body {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
.sector-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

/* --- Proof block (numbers callout) --- */
.proof-strip {
  background: var(--gray-50);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 820px) {
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-strip__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.proof-strip__num sup { font-size: 0.5em; color: var(--cyan); vertical-align: super; }
.proof-strip__label {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* --- FAQ accordion --- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-800);
  max-width: 68ch;
}

/* --- Pricing table (como cobramos) --- */
.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.pricing-row:first-child { border-top: 1px solid var(--gray-200); }
@media (max-width: 720px) {
  .pricing-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem 0; }
}
.pricing-row__label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
}
.pricing-row__range {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.pricing-row__note {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

