:root {
  color-scheme: light;
  --blue-950: #071b33;
  --blue-900: #0b2341;
  --blue-800: #123d66;
  --blue-700: #174a7c;
  --blue-100: #eaf3fa;
  --blue-050: #f4f9fd;
  --green-700: #0b5f2a;
  --green-600: #0f7a37;
  --green-100: #dcfce7;
  --amber-500: #f59e0b;
  --gray-950: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 27, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 92px;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--white);
  color: var(--gray-950);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

body::selection {
  background: var(--blue-100);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

a:focus-visible,
summary:focus-visible,
.table-wrap:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(16px, calc((100% - 1140px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.site-header > *,
.hero-grid > *,
.split > *,
.price-panel > *,
.final-cta-grid > *,
.footer-grid > * {
  min-width: 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand-mark img {
  display: block;
  width: 24px;
  height: 24px;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-nav {
  justify-content: center;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a,
.site-footer a {
  color: var(--gray-600);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue-700);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green-600);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.cta-whatsapp {
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  font-weight: 800;
  touch-action: manipulation;
}

.button.cta-whatsapp {
  min-height: 48px;
}

.text-link.cta-whatsapp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.header-cta {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.header-cta:hover,
.button:hover {
  background: var(--green-700);
}

.button-secondary {
  background: transparent;
  color: var(--blue-900);
  box-shadow: inset 0 0 0 1px rgba(11, 35, 65, 0.22);
}

.button-secondary:hover {
  background: var(--blue-100);
}

.hero .button-secondary {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-on-dark {
  background: var(--green-600);
  color: var(--white);
}

.mobile-sticky-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(18, 61, 102, 0.92)),
    var(--blue-900);
  color: var(--white);
  padding: 78px 0 64px;
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.hero-content {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green-100);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  color: var(--blue-700);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.25rem;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: 2.6rem;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.12rem;
}

p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.hero-visual {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-align: center;
}

.metrics {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid article {
  padding: 24px;
  border-left: 1px solid var(--gray-200);
}

.metrics-grid article:last-child {
  border-right: 1px solid var(--gray-200);
}

.metrics strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1.2;
}

.metrics span {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--blue-050);
}

.section-intro {
  background: linear-gradient(180deg, var(--white), var(--blue-050));
}

.section-dark {
  background: var(--blue-950);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.final-cta h2 {
  color: var(--white);
}

.section-dark .section-label {
  color: var(--green-100);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
}

.copy-stack p,
.section-heading p,
.content-narrow p,
.price-panel p,
.final-cta p {
  color: var(--gray-600);
}

.copy-stack p:last-child,
.content-narrow p:last-of-type,
.price-panel p:last-of-type {
  margin-bottom: 24px;
}

.content-narrow {
  max-width: 840px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--blue-900);
  color: var(--white);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  color: var(--blue-900);
}

.card-grid,
.profile-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin-bottom: 28px;
  list-style: none;
}

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

.region-grid li {
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green-600);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(7, 27, 51, 0.06);
}

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

.info-card,
.profile-grid article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 27, 51, 0.08);
}

.card-grid li,
.profile-grid li {
  min-width: 0;
}

.section-dark .info-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .info-card p {
  color: rgba(255, 255, 255, 0.74);
}

.card-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-grid article {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--blue-700);
}

.profile-grid p {
  flex: 1;
  margin-bottom: 0;
  color: var(--gray-600);
}

.profile-grid .text-link {
  margin-top: 14px;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border-radius: 8px;
  background: var(--blue-050);
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

details {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-950);
  font-weight: 900;
}

details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--gray-600);
}

.final-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
}

.final-cta .section-label,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.site-footer {
  padding: 38px 0;
  background: var(--blue-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
}

.site-footer p {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.footer-brand {
  color: var(--white);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-cta {
    width: fit-content;
  }

  .hero-grid,
  .split,
  .price-panel,
  .final-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .card-grid,
  .coverage-grid,
  .profile-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .container {
    width: calc(100% - 32px);
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(7, 27, 51, 0.12);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--blue-950);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--blue-050);
    color: var(--blue-700);
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    min-width: 0;
    font-size: 0.88rem;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-visual {
    width: min(100%, 360px);
    margin: 22px auto 0;
    padding: 14px;
    box-shadow: none;
  }

  .hero-visual figcaption {
    font-size: 0.84rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .button,
  .header-cta {
    width: min(358px, 100%);
    max-width: 100%;
  }

  .hero-actions,
  .trust-list {
    flex-direction: column;
  }

  .metrics-grid,
  .card-grid,
  .coverage-grid,
  .profile-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid article {
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }

  .price-panel {
    padding: 24px;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  table {
    min-width: 0;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap th,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .table-wrap tbody tr:last-child {
    border-bottom: 0;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 8px 14px;
    border-bottom: 0;
  }

  .table-wrap tbody th {
    background: var(--blue-900);
    color: var(--white);
  }

  .table-wrap td {
    overflow-wrap: anywhere;
  }

  .table-wrap td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--blue-700);
    content: attr(data-label);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .has-mobile-sticky-cta .site-footer {
    padding-bottom: 108px;
  }

  .has-mobile-sticky-cta #duvidas {
    padding-bottom: 112px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 16px;
    z-index: 40;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--green-600);
    color: var(--white);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(7, 27, 51, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  }

  .mobile-sticky-cta:hover {
    background: var(--green-700);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta.is-near-footer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    padding: 30px 0 42px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 1.78rem;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 18px;
  }
}

.blog-hero {
  padding: 72px 0 58px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(18, 61, 102, 0.9)),
    var(--blue-900);
  color: var(--white);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: end;
  gap: 36px;
}

.blog-hero h1 {
  margin-bottom: 18px;
}

.blog-hero-panel,
.sidebar-box,
.article-callout {
  border-radius: 8px;
}

.blog-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.blog-hero-panel strong,
.blog-hero-panel span {
  display: block;
}

.blog-hero-panel strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.2;
}

.blog-hero-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 27, 51, 0.08);
}

.blog-card-featured {
  border-top: 5px solid var(--green-600);
}

.blog-card-cover {
  display: block;
  overflow: hidden;
  margin: -24px -24px 20px;
  border-radius: 8px 8px 0 0;
  background: var(--blue-050);
  text-decoration: none;
}

.blog-card-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.blog-card-cover:hover img {
  transform: scale(1.015);
}

.blog-card-meta,
.article-meta,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.blog-card-meta,
.article-meta {
  margin-bottom: 14px;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-card-meta span {
  color: var(--blue-700);
  text-transform: uppercase;
}

.blog-card h3 a {
  color: var(--blue-950);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--blue-700);
}

.blog-card p {
  flex: 1;
  color: var(--gray-600);
}

.article-header {
  padding: 58px 0 44px;
  background: var(--blue-050);
}

.article-header-inner {
  max-width: 900px;
}

.breadcrumb {
  margin-bottom: 24px;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--blue-700);
  text-decoration: none;
}

.breadcrumb-on-dark {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb-on-dark a {
  color: var(--green-100);
}

.value-hero .breadcrumb {
  margin-bottom: 18px;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  counter-reset: quote-step;
}

.quote-steps li {
  position: relative;
  min-width: 0;
  padding: 46px 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-600);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(7, 27, 51, 0.06);
}

.quote-steps li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--blue-700);
  content: counter(quote-step, decimal-leading-zero);
  counter-increment: quote-step;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.article-summary {
  max-width: 820px;
  color: var(--gray-600);
  font-size: 1.16rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(260px, 340px);
  gap: 48px;
  padding-top: 58px;
  padding-bottom: 72px;
}

.article-content,
.article-sidebar {
  min-width: 0;
}

.article-content h2 {
  margin-top: 34px;
  font-size: 1.72rem;
}

.article-content p,
.article-content li {
  color: var(--gray-600);
}

.article-content ul {
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-callout {
  margin: 30px 0;
  padding: 22px;
  border-left: 5px solid var(--green-600);
  background: var(--blue-050);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.05rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article-takeaways,
.related-links {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.06);
}

.article-takeaways h2,
.related-links h2 {
  margin-top: 0;
}

.related-links ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.related-links a {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: none;
}

.related-links a:hover {
  color: var(--blue-950);
}

.sidebar-box {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 27, 51, 0.08);
}

.sidebar-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.16rem;
  line-height: 1.2;
}

.sidebar-box p {
  color: var(--gray-600);
}

.article-table {
  margin-top: 28px;
}


@media (max-width: 960px) {
  .blog-hero-grid,
  .article-layout,
  .quote-steps {
    grid-template-columns: 1fr;
  }

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

  .sidebar-box {
    position: static;
  }
}

@media (max-width: 680px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .article-header {
    padding: 48px 0;
  }

  .article-layout {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .article-summary {
    font-size: 1.05rem;
  }
}
