:root {
  --teal-950: #011c1c;
  --teal-850: #012b2b;
  --teal-800: #013f3f;
  --teal-700: #014a3a;
  --teal-600: #016362;
  --teal-100: #e8f7f6;
  --teal-50: #f4fbfa;
  --gold-700: #b8860b;
  --gold-600: #d4a017;
  --gold-100: #fdf4dc;
  --neutral-950: #0a0f0f;
  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  --white: #fff;
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;
  --success: #059669;
  --muted-dark: #9fe1cb;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --section: 84px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --shadow-soft: 0 1px 2px rgba(10, 15, 15, .05), 0 16px 36px rgba(1, 99, 98, .08);
  --shadow-strong: 0 24px 70px rgba(1, 63, 63, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--neutral-700);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: rgba(1, 99, 98, .18); color: var(--neutral-950); }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.section {
  padding: var(--section) 0;
  position: relative;
}
.section-soft { background: var(--teal-100); }
.section-dark {
  background:
    radial-gradient(circle at 12% 20%, rgba(159, 225, 203, .10), transparent 28%),
    linear-gradient(135deg, var(--teal-800), var(--teal-850));
  color: var(--white);
}
.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--muted-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--neutral-950);
  font-family: var(--font-display);
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
}
h3 {
  color: var(--neutral-900);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--neutral-500);
  font-size: 18px;
  line-height: 1.75;
}
.section-dark .lead,
.section-dark p { color: rgba(255, 255, 255, .78); }
.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--teal-800);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.announcement span { opacity: .48; padding-inline: 14px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(229, 231, 235, .9);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.nav.is-scrolled {
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(1, 63, 63, .08);
}
.nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(1, 99, 98, .18);
  border-radius: 999px;
  background: var(--white);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 1px 8px rgba(1, 63, 63, .08);
}
.brand-name {
  display: block;
  color: var(--neutral-900);
  font-weight: 800;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-600);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal-600); }
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--neutral-900);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold-600); color: var(--neutral-900); }
.btn-gold:hover { background: var(--gold-700); }
.btn-teal { background: var(--teal-600); color: var(--white); }
.btn-teal:hover { background: var(--teal-800); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-outline { border-color: rgba(1, 99, 98, .45); color: var(--teal-600); background: transparent; }
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-600); }
.btn-white { border-color: rgba(255, 255, 255, .45); color: var(--white); background: transparent; }
.btn-white:hover { background: rgba(255, 255, 255, .10); border-color: var(--white); }

.hero {
  overflow: hidden;
  padding: 88px 0 96px;
  background: 
    linear-gradient(90deg, #f8fafa 35%, rgba(248, 250, 250, 0.9) 60%, rgba(248, 250, 250, 0.1) 100%),
    var(--hero-background-image) no-repeat right center;
  background-size: cover;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .76fr);
  gap: 62px;
  align-items: center;
}
.badge {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 160, 23, .5);
  border-radius: 6px;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero-copy .lead { max-width: 560px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 600;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-row i { color: var(--success); }
.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(1, 99, 98, .96), rgba(1, 63, 63, .92)),
    var(--teal-800);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 120px;
  height: 120px;
  border-top: 3px solid rgba(212, 160, 23, .72);
  border-right: 3px solid rgba(212, 160, 23, .72);
  border-radius: 0 18px 0 0;
  z-index: 0;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -50px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(159, 225, 203, .16);
  z-index: 0;
}
.portrait-wrap {
  position: absolute;
  inset: 28px 28px 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  z-index: 1;
}
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 34px;
  color: rgba(255, 255, 255, .88);
  text-align: center;
}
.portrait-fallback i {
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 54px;
}
.portrait-fallback strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}
.portrait-fallback span {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
  line-height: 1.6;
}
.credential-card {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}
.credential-card strong {
  display: block;
  color: var(--neutral-900);
  font-size: 14px;
  line-height: 1.2;
}
.credential-card span {
  display: block;
  margin-top: 4px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 600;
}
.credential-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.service-card,
.proof-card,
.authority-card,
.case-card {
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10, 15, 15, .03);
}
.service-card {
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 99, 98, .35);
  box-shadow: var(--shadow-soft);
}
.service-card.featured {
  border-color: rgba(1, 99, 98, .32);
  background: linear-gradient(180deg, var(--white), #fbfefd);
}
.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--teal-600);
  font-size: 24px;
}
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-card p { margin-bottom: 0; color: var(--neutral-500); font-size: 15px; }
.service-note {
  margin-top: 18px;
  color: var(--teal-600);
  font-size: 14px;
  font-weight: 700;
}
.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
.authority-card {
  padding: 28px;
  border-color: rgba(1, 99, 98, .22);
  box-shadow: var(--shadow-soft);
}
.authority-card .icon-box {
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid rgba(1, 99, 98, .16);
}
.authority-card p { margin-bottom: 0; color: var(--neutral-500); }
.country-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  flex-shrink: 0;
}
.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(1, 99, 98, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--neutral-700);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
}
.center-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--neutral-600);
  font-weight: 600;
  text-align: center;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 22px;
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 0 0 8px var(--teal-50);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  border-top: 2px dashed var(--neutral-200);
}
.step i {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-600);
  font-size: 28px;
}
.step p { margin-bottom: 0; color: var(--neutral-500); font-size: 14px; line-height: 1.65; }

.expert-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.dark-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dark-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  padding: 22px;
}
.dark-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 30px;
}
.dark-card p { margin-bottom: 0; color: var(--muted-dark); font-size: 14px; line-height: 1.65; }
.credential-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.credential-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.5;
}
.credential-list i { color: var(--gold-600); transform: translateY(2px); }

.expert-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
}
.expert-photo {
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  overflow: hidden;
}
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-photo i { color: var(--gold-600); font-size: 42px; }
.expert-card h3 { margin-bottom: 6px; font-size: 22px; }
.expert-role {
  margin-bottom: 14px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 700;
}
.expert-card p { margin-bottom: 18px; color: rgba(255, 255, 255, .76); font-size: 15px; }

.proof-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  border: 1px solid rgba(1, 99, 98, .14);
  border-radius: 12px;
  background: var(--white);
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
}
.rating {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rating strong {
  color: var(--teal-600);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}
.stars { color: var(--gold-600); letter-spacing: .06em; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.proof-card {
  padding: 24px;
  border-left: 3px solid var(--teal-600);
  border-radius: 0 12px 12px 0;
}
.proof-card blockquote {
  margin: 12px 0 18px;
  color: var(--neutral-700);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
}
.proof-card cite {
  display: block;
  color: var(--neutral-900);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
.proof-card span {
  display: block;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 600;
}
.case-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.case-card {
  display: flex;
  gap: 16px;
  padding: 22px;
}
.case-card i {
  color: var(--teal-600);
  font-size: 30px;
  flex: 0 0 auto;
}
.case-card p { margin-bottom: 0; color: var(--neutral-500); font-size: 14px; }

.documents-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: start;
}
.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.doc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(1, 99, 98, .20);
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
}
.doc-pill i { color: var(--success); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(1, 99, 98, .16);
}
.faq-item {
  border-bottom: 1px solid rgba(1, 99, 98, .16);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--neutral-900);
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}
.faq-question i {
  color: var(--teal-600);
  font-size: 22px;
  transition: transform .2s ease;
}
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--neutral-50);
  font-size: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.contact-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  padding: 30px;
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row i {
  color: var(--gold-600);
  font-size: 23px;
  transform: translateY(3px);
}
.contact-row strong {
  display: block;
  color: var(--white);
  line-height: 1.3;
}
.contact-row span,
.contact-row a {
  display: block;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}
.map-link {
  margin-top: 4px;
  color: var(--white) !important;
  font-weight: 700;
}

.footer {
  background: var(--teal-950);
  color: rgba(255, 255, 255, .64);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .85fr 1.15fr;
  gap: 34px;
}
.footer h3,
.footer-label {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-brand {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}
.footer-sub { display: block; color: var(--muted-dark); font-size: 13px; }
.footer p { color: rgba(255, 255, 255, .56); font-size: 14px; }
.footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  transition: color .2s ease;
}
.footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

.mobile-sticky {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 8px;
  box-shadow: 0 14px 44px rgba(1, 63, 63, .22);
  backdrop-filter: blur(16px);
}
.mobile-sticky .btn { min-height: 44px; padding: 11px 12px; font-size: 14px; }

.blog-hero,
.single-post-hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 18% 16%, rgba(212, 160, 23, .12), transparent 30%),
    linear-gradient(135deg, var(--teal-50), var(--white));
  border-bottom: 1px solid rgba(1, 99, 98, .10);
}
.blog-hero-inner,
.single-post-hero-inner {
  max-width: 880px;
  text-align: center;
}
.blog-hero h1,
.single-post-hero h1,
.blog-hero .lead,
.single-post-hero .lead,
.archive-description {
  margin-inline: auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10, 15, 15, .03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 99, 98, .32);
  box-shadow: var(--shadow-soft);
}
.post-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--teal-100);
  overflow: hidden;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--teal-600);
  font-size: 44px;
}
.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.post-card-meta,
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 700;
}
.post-card-meta {
  margin-bottom: 14px;
}
.post-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}
.post-card h2 a {
  color: var(--neutral-950);
  transition: color .2s ease;
}
.post-card h2 a:hover {
  color: var(--teal-600);
}
.post-card p {
  margin-bottom: 22px;
  color: var(--neutral-500);
  font-size: 15px;
  line-height: 1.7;
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teal-600);
  font-weight: 800;
}
.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(1, 99, 98, .22);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--teal-600);
  font-weight: 800;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--teal-600);
  color: var(--white);
}
.empty-state {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.single-post-layout {
  background: var(--white);
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--teal-600);
  font-weight: 800;
}
.single-post-meta {
  justify-content: center;
  margin-top: 18px;
}
.single-post-meta a {
  color: var(--teal-600);
}
.single-featured-image {
  margin-top: 44px;
}
.single-featured-image img {
  width: 100%;
  max-height: 560px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.single-post-content {
  max-width: 840px;
  padding: 58px 0 42px;
}
.single-post-content > * {
  margin-bottom: 24px;
}
.single-post-content h2,
.single-post-content h3 {
  margin-top: 38px;
}
.single-post-content h2 {
  font-size: 34px;
}
.single-post-content p,
.single-post-content li {
  color: var(--neutral-700);
  font-size: 18px;
  line-height: 1.85;
}
.single-post-content a {
  color: var(--teal-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post-content blockquote {
  margin: 34px 0;
  border-left: 4px solid var(--gold-600);
  background: var(--teal-50);
  padding: 24px 28px;
  color: var(--neutral-900);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.45;
}
.post-page-links,
.single-post-tags,
.post-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.post-page-links,
.single-post-tags {
  margin-top: 34px;
}
.post-page-links a,
.single-post-tags a,
.post-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(1, 99, 98, .24);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--teal-600);
  font-weight: 800;
}
.post-navigation {
  max-width: 900px;
  justify-content: space-between;
  padding-bottom: 76px;
}

.maker-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 160, 23, .14), transparent 28%),
    linear-gradient(135deg, var(--teal-50), var(--white));
  text-align: center;
}
.maker-hero-inner {
  max-width: 860px;
}
.maker-hero h1,
.maker-hero .lead {
  margin-inline: auto;
}
.maker-card {
  width: min(100%, 520px);
  margin: 34px auto 0;
  border: 1px solid rgba(1, 99, 98, .18);
  border-radius: 14px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.maker-card span {
  display: block;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.maker-card strong {
  display: block;
  margin-top: 6px;
  color: var(--neutral-950);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
}
.maker-card p {
  margin: 10px 0 0;
  color: var(--neutral-500);
}
.maker-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    min-height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--teal-800);
    padding: 24px;
    color: var(--white);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding: 18px 0;
    font-size: 18px;
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--muted-dark); }
  .hero-grid,
  .split,
  .expert-panel,
  .documents-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 58px;
    background: 
      linear-gradient(180deg, #f8fafa 45%, rgba(248, 250, 250, 0.9) 75%, rgba(248, 250, 250, 0.3) 100%),
      var(--hero-background-image) no-repeat center center;
    background-size: cover;
  }
  .hero-panel { min-height: 520px; max-width: 520px; }
  .services-secondary,
  .proof-grid,
  .blog-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 0; }
  .step:not(:last-child)::after { display: none; }
  .center-cta { flex-direction: column; }
}

@media (max-width: 720px) {
  :root { --section: 62px; }
  .container { width: min(100% - 32px, var(--container)); }
  .announcement {
    justify-content: flex-start;
    overflow: hidden;
    padding: 0 16px;
    white-space: nowrap;
  }
  .announcement div {
    display: inline-block;
    min-width: max-content;
    animation: ticker 18s linear infinite;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-45%); }
  }
  h1 { font-size: clamp(38px, 11vw, 46px); }
  h2 { font-size: clamp(29px, 8vw, 36px); }
  .lead { font-size: 16px; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .trust-row { display: grid; }
  .hero-panel { min-height: 450px; border-radius: 20px; }
  .portrait-wrap { inset: 20px 20px 98px; }
  .credential-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .services-layout,
  .services-secondary,
  .authority-grid,
  .process,
  .dark-features,
  .proof-grid,
  .case-row,
  .pill-grid,
  .footer-grid,
  .expert-card {
    grid-template-columns: 1fr;
  }
  .service-card, .authority-card, .proof-card, .case-card, .contact-card { padding: 22px; }
  .blog-hero,
  .single-post-hero { padding: 70px 0 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-card-body { padding: 22px; }
  .single-post-content { padding-top: 44px; }
  .single-post-content p,
  .single-post-content li { font-size: 16px; }
  .post-navigation { flex-direction: column; }
  .proof-banner { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .maker-hero { padding: 72px 0; }
  .maker-links {
    align-items: stretch;
    flex-direction: column;
  }
  .maker-links .btn { width: 100%; }
  .mobile-sticky { display: grid; }
  body { padding-bottom: 78px; }
}
