@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-italic-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-italic-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700 800;
  font-display: swap;
  src: url("/fonts/playfair-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700 800;
  font-display: swap;
  src: url("/fonts/playfair-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --bg-dark: #111111;
  --text: #111111;
  --text-soft: #6b6b6b;
  --text-muted: #b3b0a8;
  --border: #e8e6e0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --success: #1d6a53;
  --radius-sm: 6px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  z-index: 200;
}

.container {
  width: min(1120px, calc(100vw - 4rem));
  margin: 0 auto;
}

.page-shell {
  position: relative;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav .logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 180ms ease;
}

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

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

.nav-right .btn-primary {
  min-width: 6.5rem;
  justify-content: center;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.lang-link {
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.lang-link:hover,
.lang-link:focus-visible,
.lang-link[aria-current="true"] {
  color: var(--text);
}

.lang-sep {
  color: var(--border);
  font-size: 0.65rem;
  user-select: none;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease,
    background 180ms ease;
  white-space: nowrap;
}

.btn-primary {
  padding: 0.6rem 1.25rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 0.78;
}

.btn-secondary {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--bg-alt);
  border-color: var(--text-muted);
}

.btn-ghost {
  padding: 0;
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text);
}

.hero {
  padding: 9.2rem 0 3.4rem;
}

.page-hero--service {
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb a {
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--border);
}

.hero-copy {
  max-width: 820px;
}

.hero-copy h1 {
  margin: 1.4rem 0 1.5rem;
  max-width: 13ch;
  font-size: clamp(3.25rem, 7vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy h1 em,
.section-title em,
.contact-copy h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy > p {
  margin: 0;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.service-summary {
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-summary-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.service-summary-item {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-summary-index {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.service-summary-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.service-summary-note {
  margin: 1.5rem 0 0;
  max-width: 60ch;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-header {
  display: grid;
  gap: 0.8rem;
  align-items: start;
  max-width: 820px;
  margin-bottom: 2.25rem;
}

.section-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-kicker,
.section-intro {
  margin: 0;
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.section-dark .eyebrow,
.section-dark .section-kicker,
.section-dark .section-intro,
.section-dark .pillar-card p,
.section-dark .fit-panel li {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .eyebrow::before {
  background: rgba(255, 255, 255, 0.22);
}

.problem-layout,
.fit-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.problem-layout {
  align-items: center;
}

.fit-grid,
.contact-layout {
  align-items: start;
}

.problem-story {
  display: grid;
  gap: 1.35rem;
}

.problem-title {
  max-width: 12.5ch;
  font-size: clamp(2.3rem, 4.2vw, 3.7rem);
  line-height: 1.02;
}

.problem-copy {
  display: grid;
  gap: 1rem;
  max-width: 56ch;
}

.problem-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.signal-list,
.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list {
  border-top: 1px solid var(--border);
}

.signal-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.signal-list li::before {
  content: "•";
  display: block;
  width: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.deliverables-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.pillar-card,
.deliverable-card,
.process-step,
.fit-panel {
  border-radius: 0;
  box-shadow: none;
}

.pillar-card {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.deliverable-card,
.process-step {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.fit-panel {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.card-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.section-dark .card-index {
  color: rgba(255, 255, 255, 0.35);
}

.pillar-card h3,
.deliverable-card h3,
.process-step h3,
.fit-panel h3,
.faq-summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.pillar-card p,
.deliverable-card p,
.process-step p,
.faq-content {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.section-dark .pillar-card p,
.section-dark .process-step p,
.section-dark .faq-content {
  color: rgba(255, 255, 255, 0.7);
}

.process-label {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.fit-panel ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fit-panel li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.fit-panel li::before {
  content: "•";
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
}

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

.faq-content {
  padding: 0 0 1.2rem;
  max-width: 60ch;
}

.services-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 180ms ease;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row:hover,
.service-row:focus-visible {
  padding-left: 0.625rem;
}

.service-row-number {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.service-row-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-row-description {
  margin: 0.25rem 0 0;
  max-width: 58ch;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.service-row-arrow {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: transform 180ms ease, color 180ms ease;
}

.service-row:hover .service-row-arrow,
.service-row:focus-visible .service-row-arrow {
  transform: translateX(3px);
  color: var(--text);
}

.related-list {
  margin-top: 0.5rem;
}

.contact-section {
  padding: 6.25rem 0;
  border-top: 1px solid var(--border);
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  margin: 0 0 1.25rem;
  max-width: 12ch;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-copy p {
  margin: 0;
  max-width: 56ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.contact-points li {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.contact-email {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.125rem;
  transition: border-color 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--text);
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: border-color 180ms ease;
  outline: none;
}

.form-input {
  min-height: 48px;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text);
}

.form-privacy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.form-privacy a {
  color: var(--text-soft);
}

.form-feedback {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1rem 1rem 0;
  border-top: 1px solid var(--border);
  color: var(--success);
}

.form-feedback.visible {
  display: flex;
}

.form-feedback--error {
  color: var(--text);
}

.feedback-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-feedback--error .feedback-icon {
  background: var(--text-soft);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.footer .logo img {
  height: 26px;
  width: auto;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a,
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-soft);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 8rem 0 3.5rem;
  }

  .section,
  .contact-section {
    padding: 4.25rem 0;
  }

  .service-summary-grid,
  .pillar-grid,
  .deliverables-grid,
  .process-grid,
  .problem-layout,
  .fit-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100vw - 2rem, 1120px);
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .nav-right {
    gap: 0.75rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .service-row {
    grid-template-columns: 28px 1fr 20px;
    gap: 0.875rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

/* ── LINK ARROW ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 150ms ease;
}

.link-arrow:hover {
  opacity: 0.6;
}

/* ── ARTICLE ── */
.article-wrap {
  padding-bottom: 0;
}

.article-header {
  padding: 7rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 150ms ease;
}

.back-link:hover {
  color: var(--text-soft);
}

.article-tag-row {
  margin-bottom: 1rem;
}

.article-header h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.article-subtitle {
  max-width: 600px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.article-meta-row {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.article-body {
  padding: 4rem 0 5rem;
}

.article-container {
  max-width: 680px;
}

.article-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-weight: 400;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.article-body p strong {
  color: var(--text);
  font-weight: 700;
}

.article-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin: 3rem 0 1rem;
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.article-body ul,
.article-body ol {
  padding-left: 0;
  margin: 1.25rem 0 1.75rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.article-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-body ol {
  counter-reset: ol-counter;
}

.article-body ol li {
  counter-increment: ol-counter;
}

.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.article-body ul li strong,
.article-body ol li strong {
  color: var(--text);
  font-weight: 700;
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 0 0 0 1.75rem;
  border-left: 3px solid var(--text);
}

.pull-quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem) !important;
  font-weight: 700;
  line-height: 1.45 !important;
  color: var(--text) !important;
  margin: 0 !important;
  letter-spacing: -0.01em;
}

.callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--text-muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.callout-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.callout p {
  margin: 0 !important;
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: var(--text) !important;
}

.callout ul {
  margin: 0.5rem 0 0 !important;
}

.callout ul li {
  font-size: 0.9375rem !important;
  color: var(--text) !important;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 2.5rem 0;
  overflow: hidden;
}

.stat-item {
  padding: 1.5rem 1.25rem;
  background: var(--bg);
  display: grid;
  gap: 0.35rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-num {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

.article-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 2rem;
}

.article-divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.article-divider span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.article-cta {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.article-cta p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--text-soft) !important;
  margin-bottom: 1.25rem !important;
}

@media (max-width: 640px) {
  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .article-header {
    padding-top: 6rem;
  }
}

/* ── RECURSOS ── */
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.recurso-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 0.75rem;
  align-content: start;
  transition: border-color 180ms ease;
}

.recurso-card:hover {
  border-color: var(--text-muted);
}

.recurso-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-sm);
}

.recurso-tag {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.recurso-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text);
}

.recurso-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.recurso-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

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