:root {
  --bg: #0A1626;
  --bg-alt: #102945;
  --surface: #E6E2DB;
  --surface-strong: #B6A89A;
  --primary: #147980;
  --primary-strong: #0c787d;
  --text-on-dark: #E6E2DB;
  --text-on-light: #102945;
  --muted-on-dark: rgba(246, 241, 234, 0.72);
  --muted-on-light: rgba(19, 40, 63, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(6, 16, 27, 0.22);
  --radius: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text-on-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(16, 41, 69, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}

.brand strong,
.site-footer strong,
.hero-brand-text strong {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
}

.brand span,
.site-footer span,
.hero-brand-text span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted-on-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(15, 143, 149, 0.18);
  border-color: rgba(15, 143, 149, 0.45);
  transform: translateY(-1px);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
  background: rgba(221, 42, 123, 0.13);
  border-color: rgba(221, 42, 123, 0.36);
}

.social-link--whatsapp:hover,
.social-link--whatsapp:focus-visible {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.36);
}

.social-link--whatsapp svg {
  width: 15px;
  height: 15px;
}

.footer-badge {
  display: block;
  height: 34px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
  opacity: 0.86;
}

.footer-badge--bni {
  margin-left: 6px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
  font-size: 1rem;
  transition: background 120ms ease, transform 120ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: rgba(15, 143, 149, 0.22);
  box-shadow: inset 0 0 0 1px rgba(15, 143, 149, 0.45);
}

.menu {
  display: flex;
  gap: 24px;
  color: var(--muted-on-dark);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text-on-dark);
}

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(15, 143, 149, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(20, 50, 79, 0.48), transparent 100%);
}

.hero-grid,
.two-column,
.split-callout {
  display: grid;
  gap: 32px;
}

.hero-grid,
.two-column,
.split-callout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow,
.section-label,
.hero-badge {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--primary);
  margin-bottom: 12px;
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0 0 16px;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.hero-text,
.section p,
.card p,
.steps p,
.bullets li {
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-text,
.hero-card ul,
.section-dark p,
.section-dark .steps p,
.section-dark .bullets li {
  color: var(--muted-on-dark);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-strong);
}

.button-secondary {
  border: 1px solid rgba(241, 236, 230, 0.22);
  color: var(--text-on-dark);
}

.hero-card,
.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 32px;
  align-self: end;
}

.hero-card-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-card-mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-badge {
  color: var(--surface);
  opacity: 0.9;
}

.hero-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 12px;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--surface);
  color: var(--text-on-light);
}

.section-light p,
.section-light .bullets li,
.section-light .steps p {
  color: var(--muted-on-light);
}

.section-dark {
  background: var(--bg);
  color: var(--text-on-dark);
}

.section-accent {
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
}

.section-offers {
  background: var(--surface);
  color: var(--text-on-light);
  padding: 64px 0;
}

.offers-callout {
  display: grid;
  gap: 32px;
  border-top: 1px solid rgba(19, 40, 63, 0.14);
  border-bottom: 1px solid rgba(19, 40, 63, 0.14);
  padding: 34px 0;
}

.offers-heading h2 {
  margin: 0 0 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.offers-heading {
  max-width: 680px;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(19, 40, 63, 0.96), rgba(34, 86, 126, 0.92));
  box-shadow: var(--shadow);
  color: var(--text-on-dark);
}

.offer-kicker {
  margin: 0;
  color: var(--surface);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.offer-card p:not(.offer-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.offer-card .button {
  justify-self: start;
  margin-top: 6px;
}

.cards,
.steps {
  display: grid;
  gap: 24px;
}

.cards {
  margin-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 28px;
}

.card h3,
.steps h3 {
  margin: 0 0 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.3rem;
}

.steps {
  margin-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 24px 0;
  border-top: 1px solid rgba(19, 40, 63, 0.14);
}

.section-dark .steps article {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.sprint-hero h1 {
  max-width: 13ch;
}

.signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sprint-deliverables article {
  border-top-color: rgba(19, 40, 63, 0.14);
}

.fit-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.bullets li {
  position: relative;
  padding-left: 22px;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-panel {
  max-width: 760px;
}

.contact-panel p:not(.section-label) {
  color: var(--muted-on-dark);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-on-dark);
}

.footer-legal {
  display: grid;
  gap: 6px;
  max-width: 780px;
  text-align: right;
}

.footer-legal p {
  margin: 0;
}

.footer-legal-info {
  color: rgba(220, 231, 222, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .split-callout,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .offers-callout,
  .offer-cards,
  .signal-grid,
  .fit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav {
    min-height: 72px;
  }

  .brand strong {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .brand span,
  .site-footer span {
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 52px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-switch {
    padding: 4px;
  }

  .social-links {
    gap: 6px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 15px;
    height: 15px;
  }

  .social-link--whatsapp svg {
    width: 14px;
    height: 14px;
  }

  .footer-badge {
    height: 30px;
    max-width: 82px;
  }

  .footer-badge--bni {
    margin-left: 4px;
  }

  .lang-btn {
    width: 30px;
    height: 30px;
  }

  .hero-card-brand {
    align-items: flex-start;
  }

  .hero-card-mark {
    width: 60px;
    height: 60px;
  }

  .section {
    padding: 72px 0;
  }

  .button {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 0.9rem;
    letter-spacing: 0.14em;
  }

  .brand span {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }
}

/* Radar IA + Bussola IA */
.radar-bussola-page {
  overflow-x: hidden;
}

.radar-bussola-page :where(a, summary):focus-visible {
  outline: 3px solid var(--surface);
  outline-offset: 4px;
}

.radar-bussola-page .section-light :where(a, summary):focus-visible {
  outline-color: var(--primary);
}

.radar-header .nav {
  min-height: 72px;
}

.radar-header .brand-mark {
  width: 48px;
  height: 48px;
}

.radar-header .menu {
  align-items: center;
}

.radar-header .menu a {
  padding: 10px 0;
  font-size: 0.92rem;
}

.radar-hero {
  padding: 72px 0;
}

.radar-hero .hero-grid {
  align-items: stretch;
}

.radar-hero .hero-copy {
  align-self: center;
}

.radar-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.15rem);
}

.radar-hero .hero-card {
  display: grid;
  gap: 28px;
  align-self: stretch;
}

.radar-hero .hero-card > div {
  position: relative;
  padding-left: 54px;
}

.radar-hero .hero-card > div + div {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.radar-hero .hero-card h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.radar-hero .hero-card p:last-child {
  margin: 0;
  color: var(--muted-on-dark);
  line-height: 1.7;
}

.journey-marker {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(230, 226, 219, 0.2);
  border-radius: 50%;
  color: var(--surface);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.radar-problem h2,
.radar-analysis h2,
.radar-transition h2,
.bussola-section h2,
.comparison-section h2,
.faq-section h2 {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.problem-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(19, 40, 63, 0.12);
  border-radius: 14px;
  color: var(--text-on-light);
  line-height: 1.5;
}

.problem-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 44px 0 0;
  counter-reset: none;
}

.journey-steps li {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  list-style: none;
}

.journey-steps span,
.dimension-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.journey-steps strong {
  display: block;
  min-height: 2.8em;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.14rem;
  line-height: 1.35;
}

.journey-steps p {
  margin: 12px 0 0;
  color: var(--muted-on-dark);
  font-size: 0.96rem;
  line-height: 1.65;
}

.radar-analysis h2 {
  max-width: 16ch;
}

.radar-dimensions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dimension-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(19, 40, 63, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
}

.dimension-card h3 {
  margin: 0;
  color: var(--text-on-light);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.26rem;
  line-height: 1.35;
}

.radar-transition {
  text-align: center;
}

.radar-transition .container {
  max-width: 900px;
}

.radar-transition h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.radar-transition p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted-on-dark);
}

.bussola-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.bussola-intro > p {
  margin: 0;
  color: var(--muted-on-dark);
}

.bussola-promise {
  max-width: 60rem;
  margin: 64px 0;
  padding-left: 28px;
  border-left: 4px solid var(--primary);
  color: var(--text-on-dark);
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.55;
}

.bussola-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 40px;
  align-items: start;
}

.bussola-content h3 {
  margin: 0 0 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.opportunity-plan {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  counter-reset: plan-item;
  list-style: none;
}

.opportunity-plan li {
  position: relative;
  min-width: 0;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted-on-dark);
  line-height: 1.55;
  counter-increment: plan-item;
}

.opportunity-plan li::before {
  content: counter(plan-item, decimal-leading-zero);
  position: absolute;
  top: 19px;
  left: 17px;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.bussola-limits {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(230, 226, 219, 0.16);
  border-radius: 20px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.bussola-limits ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bussola-limits li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-on-dark);
  line-height: 1.5;
}

.bussola-limits li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.bussola-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.bussola-action p {
  margin: 0;
  color: var(--muted-on-dark);
}

.comparison-section h2 {
  max-width: 18ch;
}

.comparison-table-wrap {
  max-width: 900px;
  margin-top: 40px;
  border: 1px solid rgba(230, 226, 219, 0.14);
  border-radius: 20px;
  overflow: hidden;
}

.journey-comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.journey-comparison th,
.journey-comparison td {
  width: 50%;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  overflow-wrap: anywhere;
}

.journey-comparison th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--surface);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.12rem;
}

.journey-comparison td {
  color: var(--muted-on-dark);
}

.journey-comparison th + th,
.journey-comparison td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid rgba(19, 40, 63, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
}

.faq-list summary {
  cursor: pointer;
  color: var(--text-on-light);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.45;
}

.faq-list details[open] summary {
  color: var(--primary-strong);
}

.faq-list p {
  margin: 14px 0 0;
}

.radar-bussola-page .site-footer .brand-mark {
  width: 46px;
  height: 46px;
}

.radar-bussola-page .site-footer p {
  margin: 0;
}

.radar-bussola-page .site-footer p span {
  display: inline;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .radar-header .nav {
    align-items: center;
  }

  .radar-header .menu {
    display: flex;
    gap: 16px;
  }

  .section-heading,
  .bussola-intro,
  .bussola-content,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .journey-steps,
  .radar-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bussola-promise {
    margin: 48px 0;
  }

  .faq-layout {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .radar-header .nav {
    min-height: 0;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .radar-header .menu {
    width: 100%;
    gap: 10px 18px;
    flex-wrap: wrap;
  }

  .radar-header .menu a {
    padding: 4px 0;
    font-size: 0.86rem;
  }

  .radar-hero {
    padding: 56px 0;
  }

  .radar-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .radar-hero .hero-card > div {
    padding-left: 48px;
  }

  .journey-steps,
  .radar-dimensions,
  .opportunity-plan {
    grid-template-columns: 1fr;
  }

  .journey-steps strong {
    min-height: 0;
  }

  .bussola-promise {
    padding-left: 20px;
  }

  .bussola-action {
    align-items: stretch;
    flex-direction: column;
  }

  .comparison-table-wrap {
    border-radius: 14px;
  }

  .journey-comparison {
    font-size: 0.88rem;
  }

  .journey-comparison th,
  .journey-comparison td {
    padding: 12px 9px;
    line-height: 1.4;
  }
}

/* IA que faz sentido */

.ia-que-faz-sentido-page :where(a, details > summary):focus-visible {
  outline: 3px solid var(--surface);
  outline-offset: 4px;
}

.ia-que-faz-sentido-page .section-light :where(a, details > summary):focus-visible {
  outline-color: var(--primary);
}

.ia-que-faz-sentido-page .ia-header .nav {
  min-height: 72px;
}

.ia-que-faz-sentido-page .ia-header .brand-mark {
  width: 48px;
  height: 48px;
}

.ia-que-faz-sentido-page .ia-header-link {
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  transition: color 120ms ease;
}

.ia-que-faz-sentido-page .ia-header-link:hover,
.ia-que-faz-sentido-page .ia-header-link:focus-visible {
  color: var(--text-on-dark);
}

.ia-que-faz-sentido-page .ia-hero {
  padding: 72px 0 64px;
}

.ia-que-faz-sentido-page .ia-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.7rem, 5vw, 4.15rem);
}

.ia-que-faz-sentido-page .ia-hero .hero-text {
  max-width: 62ch;
}

.ia-que-faz-sentido-page .entry-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ia-que-faz-sentido-page .entry-path {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.ia-que-faz-sentido-page .entry-path-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(230, 226, 219, 0.2);
  border-radius: 50%;
  color: var(--surface);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.ia-que-faz-sentido-page .entry-path-kicker {
  margin: 0;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ia-que-faz-sentido-page .entry-path h2 {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
}

.ia-que-faz-sentido-page .entry-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin: 20px 0 0;
}

.ia-que-faz-sentido-page .entry-support p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ia-que-faz-sentido-page .entry-support strong {
  margin-right: 6px;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ia-que-faz-sentido-page .entry-path .button {
  margin-top: auto;
  align-self: flex-start;
}

.ia-que-faz-sentido-page .ia-journey-section h2,
.ia-que-faz-sentido-page .ia-assessment-section h2,
.ia-que-faz-sentido-page .ia-friction-section h2,
.ia-que-faz-sentido-page .ia-after-section h2,
.ia-que-faz-sentido-page .ia-faq-section h2,
.ia-que-faz-sentido-page .ia-final-section h2 {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.ia-que-faz-sentido-page .process-journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.ia-que-faz-sentido-page .process-journey li {
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ia-que-faz-sentido-page .process-journey li > span {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ia-que-faz-sentido-page .process-journey h3 {
  margin: 0 0 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.14rem;
  line-height: 1.35;
}

.ia-que-faz-sentido-page .process-journey p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.96rem;
  line-height: 1.65;
}

.ia-que-faz-sentido-page .report-preview {
  margin: 44px 0 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(19, 40, 63, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.28);
}

.ia-que-faz-sentido-page .report-preview-title {
  display: inline-block;
  margin: 0 0 24px;
  padding: 6px 14px;
  border: 1px solid rgba(19, 40, 63, 0.2);
  border-radius: 999px;
  color: var(--text-on-light);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ia-que-faz-sentido-page .report-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ia-que-faz-sentido-page .report-preview-block {
  padding: 18px;
  border: 1px solid rgba(19, 40, 63, 0.14);
  border-radius: 14px;
  background: var(--surface);
}

.ia-que-faz-sentido-page .report-preview-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ia-que-faz-sentido-page .report-preview-block p {
  margin: 0;
  color: var(--muted-on-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ia-que-faz-sentido-page .report-preview figcaption {
  margin-top: 20px;
  color: var(--muted-on-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ia-que-faz-sentido-page .ia-assessment-actions {
  margin-top: 32px;
}

.ia-que-faz-sentido-page .friction-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.ia-que-faz-sentido-page .friction-map li {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ia-que-faz-sentido-page .friction-map h3 {
  margin: 0 0 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.14rem;
  line-height: 1.35;
}

.ia-que-faz-sentido-page .friction-map p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.96rem;
  line-height: 1.65;
}

.ia-que-faz-sentido-page .ia-after-copy {
  max-width: 900px;
}

.ia-que-faz-sentido-page .ia-after-copy p:not(.section-label) {
  color: var(--muted-on-dark);
  line-height: 1.8;
}

.ia-que-faz-sentido-page .ia-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.ia-que-faz-sentido-page .site-footer .brand-mark {
  width: 46px;
  height: 46px;
}

.ia-que-faz-sentido-page .site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .ia-que-faz-sentido-page .process-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ia-que-faz-sentido-page .friction-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ia-que-faz-sentido-page .ia-header .nav {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .ia-que-faz-sentido-page .ia-hero {
    padding: 32px 0 40px;
  }

  .ia-que-faz-sentido-page .ia-hero h1 {
    font-size: 2rem;
  }

  .ia-que-faz-sentido-page .entry-paths,
  .ia-que-faz-sentido-page .process-journey,
  .ia-que-faz-sentido-page .report-preview-grid,
  .ia-que-faz-sentido-page .friction-map {
    grid-template-columns: 1fr;
  }

  .ia-que-faz-sentido-page .entry-paths {
    gap: 16px;
    margin-top: 24px;
  }

  .ia-que-faz-sentido-page .entry-path {
    gap: 10px;
    padding: 18px;
  }

  .ia-que-faz-sentido-page .entry-path-number {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .ia-que-faz-sentido-page .entry-path h2 {
    font-size: 1.3rem;
  }

  .ia-que-faz-sentido-page .entry-path .button {
    align-self: stretch;
    min-height: 48px;
  }

  .ia-que-faz-sentido-page .entry-support {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
}
