:root {
  --brand: #00bf63;
  --brand-2: #00bf63;
  --ink: #dbdbdb;
  --muted: #dbdbdb;
  --soft: #dbdbdb;
  --paper: #dbdbdb;
  --paper-ink: #363636;
  --charcoal: #363636;
  --graphite: #363636;
  --panel: #363636;
  --panel-2: #363636;
  --line: #dbdbdb;
  --line-strong: #00bf63;
  --max: 1180px;
  --radius: 8px;
  font-family: Montserrat, "Montserrat Alternates", "Avenir Next", "Century Gothic", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--charcoal);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--charcoal); }
body { margin: 0; overflow-x: hidden; background: var(--charcoal); color: var(--ink); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--soft); line-height: 1.68; margin: 0; }
section, article, aside, div, nav, header, footer, main { min-width: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 0;
  background: #363636;
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform .24s ease;
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 154px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14px; color: #dbdbdb; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-2); }
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.footer-links a:focus-visible,
.contact-list a:focus-visible {
  outline: 2px solid #00bf63;
  outline-offset: 3px;
}
.nav-cta, .btn, .footer-cta {
  --button-bg: #00bf63;
  --button-fg: #363636;
  --button-border: #00bf63;
  --button-hover-bg: #363636;
  --button-hover-fg: #00bf63;
  --button-hover-border: #00bf63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--button-border);
  padding: 0 20px;
  font-weight: 700;
  color: var(--button-fg);
  background: var(--button-bg);
  box-shadow: none;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateY(0);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible,
.btn:hover,
.btn:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--button-hover-fg);
  background-color: var(--button-hover-bg);
  border-color: var(--button-hover-border);
  transform: translateY(-1px);
}
.nav-cta:active,
.btn:active,
.footer-cta:active {
  transform: translateY(0);
}
.btn.secondary {
  --button-bg: #363636;
  --button-fg: #dbdbdb;
  --button-border: #dbdbdb;
  --button-hover-bg: #00bf63;
  --button-hover-fg: #363636;
  --button-hover-border: #00bf63;
}
.btn.ghost {
  --button-bg: #363636;
  --button-fg: #00bf63;
  --button-border: #00bf63;
  --button-hover-bg: #00bf63;
  --button-hover-fg: #363636;
  --button-hover-border: #00bf63;
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid #dbdbdb; border-radius: 999px; background: #363636; color: #dbdbdb; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }

main { overflow: clip; }
.section { padding: 78px 0; }
.wrap { width: calc(100% - 32px); max-width: var(--max); margin: 0 auto; }
.eyebrow { color: var(--brand-2); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.hero-title, h1, h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}
h1 { font-size: clamp(38px, 4.7vw, 64px); }
h2 { font-size: clamp(28px, 3.3vw, 44px); }
h1, h2 { text-wrap: balance; overflow-wrap: break-word; }
h3 { margin: 0; font-size: clamp(21px, 2vw, 29px); font-weight: 700; line-height: 1.2; letter-spacing: 0; }
.lead { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.58; color: #dbdbdb; max-width: 700px; }
.lead { overflow-wrap: break-word; }
.text-green { color: var(--brand-2); }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: end start;
  position: relative;
  padding: 120px 0 80px;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) brightness(.48); transform: scale(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: #363636; opacity: .72; }
.hero-copy { width: min(930px, calc(100% - 32px)); margin: 0 auto; }
.hero-copy .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 760px; margin-top: 42px; }
.metric { border: 1px solid #dbdbdb; background: #363636; border-radius: 8px; padding: 16px; }
.metric strong { display: block; color: var(--brand-2); font-size: 22px; font-weight: 700; }
.metric span { color: var(--muted); font-size: 13px; }

.home-hero-v2 {
  min-height: 100vh;
  padding: 132px 0 54px;
  background: #dbdbdb;
  color: #363636;
  display: grid;
  align-content: center;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.home-hero-copy { max-width: 820px; }
.home-hero-copy .eyebrow { color: #363636; }
.home-hero-copy h1 {
  max-width: 720px;
  color: #363636;
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 1.02;
}
.home-hero-copy .lead {
  max-width: 680px;
  margin-top: 24px;
  color: #363636;
}
.home-hero-v2 .btn.secondary {
  color: #363636;
  background: #dbdbdb;
  border-color: #363636;
}
.home-hero-panel {
  position: relative;
  min-height: 590px;
  border: 1px solid #363636;
  border-radius: 8px;
  overflow: hidden;
  background: #dbdbdb;
}
.home-hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  filter: grayscale(.35) brightness(.82);
}
.home-hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid #363636;
  border-radius: 8px;
  background: #dbdbdb;
  padding: 18px;
}
.home-hero-note strong,
.home-hero-note span {
  display: block;
  line-height: 1.48;
  overflow-wrap: anywhere;
}
.home-hero-note strong {
  width: fit-content;
  color: #363636;
  background: #00bf63;
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.home-hero-note span { color: #363636; }
.home-hero-copy .area-note {
  color: #363636;
  border-left: 4px solid #00bf63;
  padding-left: 12px;
}
.home-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}
.home-trust-row a {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid #363636;
  border-radius: 8px;
  color: #363636;
  font-weight: 700;
  line-height: 1.35;
  padding: 14px 18px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.home-trust-row a:hover {
  color: #363636;
  background: #00bf63;
  border-color: #00bf63;
}
.home-scroll-lab .story-bg { opacity: .56; }
.home-scroll-lab .story-overlay { opacity: .82; }
.sound-story-layout {
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
}
.sound-story-layout .sound-console {
  grid-column: 1;
  grid-row: 1;
  min-height: 500px;
}
.sound-story-layout .scene-text {
  grid-column: 2;
  grid-row: 1;
}
.sound-story-layout .scene-text h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.7vw, 82px);
}
.sound-story-layout .scene-text p:not(.eyebrow) {
  max-width: 620px;
}
.sound-spectrum {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 112px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 12px;
}
.sound-spectrum i {
  display: block;
  min-height: 14px;
  background: #00bf63;
  transform-origin: bottom;
  transform: scaleY(var(--bar, .08));
  transition: transform .18s linear;
}
.home-intents h2 {
  max-width: 920px;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.intent-card {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid #363636;
  border-radius: 8px;
  color: #363636;
  padding: 24px;
}
.intent-card span {
  width: fit-content;
  color: #363636;
  background: #00bf63;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 700;
}
.intent-card strong {
  display: block;
  max-width: 340px;
  color: #363636;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}
.intent-card p { color: #363636; }
.method-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid #dbdbdb;
}
.method-lines div {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 22px;
  border-bottom: 1px solid #dbdbdb;
  padding: 24px 0;
}
.method-lines strong {
  color: #00bf63;
  font-size: 20px;
  line-height: 1.25;
}
.method-lines span {
  color: #dbdbdb;
  line-height: 1.6;
}
.home-services-simple h2 { max-width: 860px; }
.home-services-simple .eyebrow,
.home-services-simple h2 { color: #363636; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  margin-top: 36px;
}
.service-strip a {
  min-height: 118px;
  display: flex;
  align-items: end;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  color: #dbdbdb;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.12;
  padding: 18px;
}
.service-strip a:hover { color: #00bf63; }
.light-band .service-strip {
  border-top-color: #363636;
  border-left-color: #363636;
}
.light-band .service-strip a {
  color: #363636;
  border-right-color: #363636;
  border-bottom-color: #363636;
}
.light-band .service-strip a:hover {
  color: #363636;
  background: #00bf63;
  border-color: #00bf63;
}
.home-about-image {
  min-height: 560px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
  margin: 0;
}
.home-about-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: grayscale(.42) brightness(.72);
}
.home-final-cta .contact-card {
  border-color: #363636;
}
.inline-photo {
  margin: 30px 0 0;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
}
.inline-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(.28) brightness(.78);
}
.service-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.service-photo-row figure,
.service-evidence figure {
  margin: 0;
  border: 1px solid #363636;
  border-radius: 8px;
  overflow: hidden;
  background: #dbdbdb;
}
.service-photo-row img,
.service-evidence img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(.18) brightness(.9);
}
.service-photo-row figcaption,
.service-evidence figcaption {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #363636;
  font-weight: 700;
  line-height: 1.25;
}
.quiet-credential {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #dbdbdb;
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  color: #dbdbdb;
  font-weight: 700;
  line-height: 1.25;
}
.quiet-credential img {
  width: 42px;
  height: 24px;
  object-fit: contain;
}

.home-premium-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 112px 0 72px;
  background: #363636;
  color: #dbdbdb;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/media/igoris/home-portada.webp");
  background-size: cover;
  background-position: 62% 50%;
  background-attachment: scroll;
  transform: none;
  animation: none;
  transition: none;
  filter: grayscale(.35) brightness(.82);
}
.home-premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #363636;
  opacity: .48;
}
.home-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 0;
  align-items: center;
}
.home-premium-copy {
  max-width: 680px;
  min-width: 0;
}
.home-premium-copy .eyebrow,
.home-premium-copy h1,
.home-premium-copy .lead {
  color: #dbdbdb;
}
.home-premium-copy h1 {
  max-width: 660px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.08;
}
.home-premium-copy .lead {
  max-width: 540px;
  margin-top: 16px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
}
.home-trust-line {
  max-width: 540px;
  margin-top: 16px;
  border-left: 3px solid #00bf63;
  padding-left: 14px;
  color: #dbdbdb;
  font-weight: 700;
  line-height: 1.5;
}
.home-premium-actions {
  margin-top: 24px;
}
.home-premium-hero .btn.secondary {
  --button-bg: #363636;
  --button-fg: #dbdbdb;
  --button-border: #dbdbdb;
}
.home-proof-band {
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
  background: #dbdbdb;
  color: #363636;
}
.home-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.home-proof-list p {
  min-width: 0;
  padding: 18px 18px;
  border-left: 1px solid #363636;
  color: #363636;
}
.home-proof-list p:last-child {
  border-right: 1px solid #363636;
}
.home-proof-list strong,
.home-proof-list span {
  display: block;
  color: #363636;
  line-height: 1.45;
}
.home-proof-list strong {
  margin-bottom: 6px;
  font-size: 16px;
}
.home-service-families h2,
.home-intents h2 {
  max-width: 900px;
  color: #363636;
}
.home-service-families .lead {
  max-width: 720px;
  margin-top: 14px;
  color: #363636;
  font-size: clamp(16px, 1.25vw, 18px);
}
.home-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  width: 100%;
  min-width: 0;
}
.home-family-grid article {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 10px;
  min-height: 176px;
  padding: 20px;
  border: 1px solid #363636;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color .22s ease, transform .22s ease;
}
.home-family-grid h3 {
  color: #363636;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.home-family-grid p {
  color: #363636;
  font-size: 14.5px;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
}
.home-family-grid a {
  display: block;
  align-self: end;
  justify-self: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #363636;
  border-bottom: 0;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  background-image: linear-gradient(#00bf63, #00bf63);
  background-repeat: no-repeat;
  background-size: 72px 1px;
  background-position: left bottom;
  overflow-wrap: break-word;
  word-break: normal;
  transition: color .22s ease, background-size .28s ease, transform .22s ease;
}
.home-family-grid article:hover,
.home-family-grid article:focus-within {
  border-color: #00bf63;
  transform: translateY(-2px);
}
.home-family-grid article:hover a {
  background-size: 100% 1px;
  color: #00bf63;
}
.home-family-grid article:focus-within a {
  background-size: 100% 1px;
  color: #00bf63;
}
.faq-premium .seo-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}
.faq-intro-panel {
  border: 1px solid #363636;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 28px;
  color: #363636;
}
.faq-intro-panel p,
.faq-intro-panel a {
  color: #363636;
}
.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.faq-topic-nav a {
  border: 1px solid #363636;
  border-radius: 999px;
  padding: 10px 14px;
  color: #363636;
  font-weight: 700;
  line-height: 1.2;
}
.faq-topic-nav a:hover {
  background: #00bf63;
  border-color: #00bf63;
  color: #363636;
}
.faq-section {
  border-top: 1px solid #363636;
  padding-top: 34px;
  margin-top: 44px;
}
.faq-section:first-of-type {
  margin-top: 0;
}
.faq-section h2 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #363636;
  font-size: clamp(34px, 4.4vw, 58px);
}
.faq-accordion {
  display: grid;
  gap: 0;
  border-top: 1px solid #363636;
}
.faq-accordion details {
  border-bottom: 1px solid #363636;
  color: #363636;
}
.faq-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  color: #363636;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.22;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion summary::after {
  content: "+";
  float: right;
  margin-left: 18px;
  color: #00bf63;
}
.faq-accordion details[open] summary::after {
  content: "-";
}
.faq-accordion .answer {
  max-width: 760px;
  padding: 0 0 24px;
}
.faq-accordion p,
.faq-accordion li,
.faq-accordion a {
  color: #363636;
}
.faq-accordion p + p {
  margin-top: 12px;
}
.faq-accordion ul {
  margin: 14px 0 0;
  padding-left: 20px;
}
.faq-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.faq-side .contact-card {
  border-color: #363636;
  background: #dbdbdb;
}
.faq-side .contact-card h3,
.faq-side .contact-card p {
  color: #363636;
}
.faq-side .btn.secondary {
  --button-bg: #dbdbdb;
  --button-fg: #363636;
  --button-border: #363636;
}
.faq-side-links {
  display: grid;
  gap: 10px;
}
.faq-side-links a {
  display: block;
  border-bottom: 1px solid #00bf63;
  padding-bottom: 8px;
  color: #363636;
  font-weight: 700;
  line-height: 1.3;
}
.home-process-grid,
.home-cta-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.home-process-grid h2 {
  max-width: 620px;
}
.home-process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dbdbdb;
}
.home-process-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 22px;
  border-bottom: 1px solid #dbdbdb;
  padding: 18px 0;
}
.home-process-list strong {
  color: #00bf63;
  font-size: 18px;
  line-height: 1.25;
}
.home-process-list span {
  color: #dbdbdb;
  line-height: 1.6;
}
.home-need-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid #363636;
}
.home-need-list a {
  display: block;
  min-width: 0;
  border-bottom: 1px solid #363636;
  padding: 16px 0;
  color: #363636;
  font-size: clamp(18px, 1.9vw, 27px);
  font-weight: 700;
  line-height: 1.14;
}
.home-need-list a:hover {
  color: #363636;
  background: #00bf63;
  padding-left: 14px;
}
.home-support-links {
  max-width: 760px;
  margin-top: 22px;
  color: #dbdbdb;
  font-weight: 700;
}
.home-support-links a {
  color: #00bf63;
}
.home-cta-panel {
  min-width: 0;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 24px;
}
.home-cta-panel h3 {
  color: #dbdbdb;
  font-size: clamp(24px, 2.4vw, 32px);
}
.home-cta-panel p {
  margin-top: 16px;
  color: #dbdbdb;
}
.home-cta-panel .btn.secondary {
  --button-bg: #363636;
  --button-fg: #dbdbdb;
  --button-border: #dbdbdb;
}
.thanks-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.thanks-grid h2 {
  max-width: 620px;
}
.thanks-steps {
  border-top-color: #363636;
}
.thanks-steps li {
  border-bottom-color: #363636;
}
.thanks-steps span {
  color: #363636;
}
.thank-you-hero h1 {
  max-width: 900px;
}
.about-hero { padding-bottom: 58px; }
.about-hero-strong {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 112px 0 48px;
  overflow: hidden;
}
.about-hero-strong::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: #363636;
  opacity: .16;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 26px;
}
.about-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  overflow-wrap: normal;
}
.about-hero-copy .lead {
  max-width: 620px;
  font-size: clamp(16px, 1.25vw, 19px);
}
.about-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 34px;
}
.about-proof-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 12px 16px;
  color: #dbdbdb;
  font-weight: 700;
}
.about-hero-photo {
  position: relative;
  margin: 0;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
  transform: translateY(8px);
  max-width: 440px;
  justify-self: end;
}
.about-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid #00bf63;
  opacity: .75;
  pointer-events: none;
}
.about-hero-photo > img {
  width: 100%;
  height: min(430px, 54vh);
  min-height: 360px;
  object-fit: cover;
  object-position: 45% 38%;
  filter: grayscale(.12) brightness(.82);
}
.about-hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background: #363636;
  padding: 12px 14px;
  color: #dbdbdb;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.about-hero-photo figcaption img {
  width: 54px;
  height: 30px;
  object-fit: contain;
  filter: none;
}
.credential-coitt {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
}
.credential-coitt img {
  width: 82px;
  max-height: 46px;
  object-fit: contain;
}
.coitt-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.coitt-inline img {
  width: 34px;
  height: 20px;
  object-fit: contain;
}
.service-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.scroll-story { height: 560vh; position: relative; background: #363636; }
.story-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.story-bg { position: absolute; inset: 0; opacity: .72; }
.story-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) brightness(.42); }
.story-overlay { position: absolute; inset: 0; background: #363636; opacity: .78; }
.story-sticky::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 3px;
  background: #dbdbdb;
}
.story-sticky::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  height: 3px;
  width: calc(var(--story-progress, 0) * 100%);
  background: #00bf63;
}
.wave-field { position: absolute; inset: 0; opacity: .42; pointer-events: none; }
.wave-field svg { width: 100%; height: 100%; }
.wave-line { fill: none; stroke: var(--brand); stroke-width: 2; opacity: .42; stroke-dasharray: 8 18; animation: wave 12s linear infinite; }
.wave-line:nth-child(2) { animation-duration: 16s; opacity: .24; transform: translateY(90px); }
.wave-line:nth-child(3) { animation-duration: 20s; opacity: .18; transform: translateY(-110px); }
@keyframes wave { to { stroke-dashoffset: -220; } }
.story-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 32px)); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.scene-text { opacity: 0; visibility: hidden; transform: translateY(28px); transition: opacity .22s ease, transform .22s ease; grid-column: 1; grid-row: 1; }
.scene-text.is-active { opacity: 1; visibility: visible; transform: none; }
.scene-text h2 { max-width: 760px; }
.scene-text p { margin-top: 22px; max-width: 600px; font-size: 19px; line-height: 1.7; }
.scene-panel { grid-column: 2; grid-row: 1; border: 1px solid #dbdbdb; background: #363636; border-radius: 8px; padding: 24px; min-height: 430px; box-shadow: none; }
.db-meter { height: 100%; display: grid; align-content: center; gap: 20px; }
.db-readout { font-size: clamp(58px, 7vw, 104px); font-weight: 700; color: var(--brand-2); letter-spacing: 0; }
.db-readout span { font-size: .28em; color: #dbdbdb; letter-spacing: 0; }
.db-equivalent { border: 1px solid #dbdbdb; border-radius: 8px; padding: 16px; min-height: 116px; }
.db-equivalent strong { display: block; color: #00bf63; font-size: 20px; margin-bottom: 6px; }
.db-equivalent span { color: #dbdbdb; line-height: 1.45; }
.bars { display: grid; gap: 9px; }
.bars i { display: block; height: 10px; border-radius: 999px; background: #00bf63; transform-origin: left; transform: scaleX(var(--bar, .08)); transition: transform .18s linear; }
.db-scale { display: flex; justify-content: space-between; color: #dbdbdb; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.story-progress { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.story-progress i { width: 34px; height: 3px; border-radius: 9px; background: #dbdbdb; }
.story-progress i.is-active { background: var(--brand); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split > * { min-width: 0; }
.panel { border: 1px solid #dbdbdb; border-radius: var(--radius); background: #363636; padding: 28px; }
.panel p { overflow-wrap: anywhere; }
.image-card { border-radius: 8px; overflow: hidden; border: 1px solid #dbdbdb; background: #363636; min-height: 480px; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card--empty {
  min-height: 220px;
  background: #363636;
  border: 1px solid #dbdbdb;
}
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
.service-card { min-height: 292px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #dbdbdb; border-radius: 8px; overflow: hidden; background: #363636; }
.service-card img { height: 150px; width: 100%; object-fit: cover; filter: grayscale(.1) brightness(.78); }
.service-card div { padding: 20px; }
.service-card h3 { font-size: 22px; line-height: 1.22; margin-bottom: 10px; }
.service-card p { font-size: 15px; line-height: 1.62; }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--soft); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; counter-reset: step; }
.split > .process { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
.process .panel { counter-increment: step; }
.process .panel::before { content: "0" counter(step); color: var(--brand); font-weight: 700; display: block; margin-bottom: 24px; }
.light-band { background: #dbdbdb; color: #363636; }
.light-band p { color: #363636; }
.light-band h1, .light-band h2, .light-band h3 { color: #363636; }
.light-band .eyebrow { color: #363636; }
.light-band .panel { color: #363636; background: #dbdbdb; border-color: #363636; }
.light-band .panel p { color: #363636; }
.light-band .btn.secondary, .light-band .btn.ghost { --button-bg: #dbdbdb; --button-fg: #363636; --button-border: #363636; }
.contact-card h3 { color: var(--ink); }
.contact-card p { color: var(--soft); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.quote { background: #dbdbdb; color: #363636; border: 1px solid #363636; border-radius: 8px; padding: 24px; }
.quote p { color: #363636; }
.quote strong { display: block; margin-top: 16px; color: #363636; }

.page-hero,
.seo-hero { padding: 112px 0 54px; background: #363636; }
.page-hero .wrap,
.seo-hero .wrap { max-width: var(--max); }
.page-hero h1,
.seo-hero h1 { max-width: 900px; font-size: clamp(36px, 4vw, 56px); }
.page-hero .lead,
.seo-hero .lead { max-width: 700px; margin-top: 24px; }
.page-hero + .section { padding-top: 50px; }
.bio-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 52px; align-items: start; }
.credential-list { display: grid; gap: 14px; margin-top: 28px; }
.credential { border-left: 3px solid var(--brand); padding: 16px 18px; background: #363636; border-radius: 0 8px 8px 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.contact-grid-single {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}
.contact-card { box-sizing: border-box; border: 1px solid #dbdbdb; border-radius: 8px; padding: 20px; background: #363636; display: grid; gap: 12px; align-content: start; }
.contact-card h2 { font-size: clamp(26px, 2.4vw, 34px); line-height: 1.14; }
.contact-card h3 { font-size: clamp(23px, 2vw, 30px); }
.contact-direct-card {
  max-width: 980px;
  margin: 0 auto;
}
.contact-whatsapp-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #dbdbdb;
}
.contact-whatsapp-fallback p {
  margin: 0;
  color: #dbdbdb;
  font-size: 15px;
}
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-list a, .contact-list span { display: grid; grid-template-columns: minmax(110px, .34fr) minmax(0, 1fr); align-items: start; gap: 14px; border-bottom: 1px solid #dbdbdb; padding-bottom: 14px; color: #dbdbdb; overflow-wrap: normal; word-break: normal; }
.contact-list a > span,
.contact-list span > span { white-space: nowrap; }
.contact-list strong { overflow-wrap: anywhere; line-height: 1.45; }
.legal { max-width: 900px; }
.legal h2 { margin: 50px 0 16px; font-size: clamp(26px, 3vw, 42px); }
.legal p { color: #dbdbdb; margin-bottom: 14px; }

.site-footer {
  scroll-margin-top: 82px;
  border-top: 1px solid #dbdbdb;
  background: #363636;
  padding: 52px 0 24px;
}
.footer-shell { display: grid; gap: 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, .7fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}
.footer-brand img { width: 150px; display: block; }
.footer-brand-block {
  display: grid;
  gap: 18px;
}
.footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: #dbdbdb;
  font-size: 16px;
  line-height: 1.55;
}
.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}
.footer-col span {
  margin-bottom: 6px;
  color: #00bf63;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-col a,
.footer-bottom a,
.footer-bottom p {
  color: #dbdbdb;
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact {
  font-style: normal;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid #dbdbdb;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-cta {
  width: fit-content;
  min-height: 40px;
  padding: 9px 18px;
}
.footer-col a.footer-cta,
.footer-col a.footer-cta:hover {
  color: var(--button-fg);
}
.footer-col a.footer-cta:hover,
.footer-col a.footer-cta:focus-visible {
  color: var(--button-hover-fg);
}
.footer-col a:hover,
.footer-bottom a:hover { color: #00bf63; }

.igoris-form { display: grid; gap: 10px; margin-top: 4px; min-width: 0; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; min-width: 0; }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { color: #dbdbdb; font-size: 12px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background: #363636;
  color: #dbdbdb;
  min-height: 42px;
  padding: 9px 12px;
  font: inherit;
  font-size: 15px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid #00bf63; outline-offset: 2px; }
.honeypot {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.reveal-on-scroll {
  will-change: auto;
}
.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .46s ease, transform .46s ease;
  will-change: opacity, transform;
}
.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.file-field {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 12px 14px;
  position: relative;
}
.file-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field .file-control {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #dbdbdb;
  border-radius: 999px;
  background: #363636;
  color: #dbdbdb;
  padding: 9px 13px;
  margin: 8px 0 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.file-field span {
  color: #dbdbdb;
  font-size: 14px;
  line-height: 1.5;
}
.file-field [data-file-summary] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.file-pill {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 999px;
  padding: 6px 10px;
  overflow-wrap: anywhere;
}
.turnstile-shell {
  min-height: 66px;
  display: grid;
  align-items: center;
}
.form-status { min-height: 22px; color: #00bf63; font-weight: 700; }
.form-status.is-error { color: #dbdbdb; }
.form-hint { color: #dbdbdb; font-size: 14px; }
.form-hint a { color: #00bf63; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.area-note {
  display: block;
  max-width: 820px;
  margin-top: 18px;
  color: #00bf63;
  font-weight: 700;
  line-height: 1.5;
}

.service-finder-section { padding-top: 86px; }
.service-finder {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: stretch;
}
.service-finder-copy { display: grid; align-content: start; gap: 22px; }
.service-finder-copy .lead { color: #363636; }
.service-paths {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.service-path {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid #363636;
  padding: 18px 0;
  color: #363636;
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}
.service-path strong {
  color: #00bf63;
  font-size: 15px;
  line-height: 1.25;
  transition: color .22s ease;
}
.service-path span { line-height: 1.55; }
.service-path:hover,
.service-path:focus-visible {
  border-color: #00bf63;
  transform: translateX(6px);
}
.service-path:hover span,
.service-path:focus-visible span {
  color: #00bf63;
}
.service-related-links {
  display: grid;
  gap: 14px;
  border-top: 1px solid #363636;
  padding-top: 22px;
  color: #363636;
  font-size: 15px;
}
.service-related-links p {
  color: #363636;
  line-height: 1.55;
}
.service-related-links p strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}
.service-related-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid #363636;
  border-radius: 8px;
  padding: 9px 14px;
  color: #363636;
  font-weight: 700;
  line-height: 1.2;
  transition: color .22s ease, border-color .22s ease, background-color .22s ease;
}
.service-related-links a:hover,
.service-related-links a:focus-visible {
  color: #363636;
  border-color: #00bf63;
  background-color: #00bf63;
}
.service-visual {
  position: sticky;
  top: 102px;
  min-height: 460px;
  border: 1px solid #363636;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
  color: #dbdbdb;
}
.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: grayscale(.45) brightness(.64);
}
.service-visual--empty {
  min-height: 520px;
  background: #363636;
}

.municipality-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.municipality-list a,
.municipality-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid #dbdbdb;
  color: #363636;
  background: #dbdbdb;
  font-weight: 700;
}

.municipality-list a {
  color: #00bf63;
}

.local-query-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.service-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background: #363636;
  padding: 20px;
}
.service-visual-caption strong { display: block; color: #00bf63; margin-bottom: 8px; }
.service-visual-caption span { color: #dbdbdb; line-height: 1.55; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #dbdbdb;
  font-size: 14px;
}
.breadcrumb a { color: #00bf63; font-weight: 700; }
.seo-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: start; }
.seo-copy { display: grid; gap: 28px; }
.seo-block { border: 1px solid #dbdbdb; border-radius: 8px; padding: 28px; background: #363636; }
.seo-block h2 { font-size: clamp(28px, 3.2vw, 46px); margin-bottom: 18px; }
.seo-block h3 { font-size: clamp(21px, 2vw, 28px); margin-bottom: 12px; }
.seo-block p + p { margin-top: 14px; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { border-left: 3px solid #00bf63; padding: 10px 0 10px 16px; color: #dbdbdb; line-height: 1.62; }
.seo-aside { position: sticky; top: 102px; display: grid; gap: 18px; }
.seo-aside .contact-card { border-radius: 8px; }
.mini-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.mini-link-grid a {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 14px;
  color: #dbdbdb;
  line-height: 1.35;
}
.mini-link-grid a strong { display: block; color: #00bf63; margin-bottom: 4px; }
.faq-list { display: grid; gap: 14px; margin-top: 24px; }
.faq-item { border: 1px solid #dbdbdb; border-radius: 8px; padding: 20px; background: #363636; }
.faq-item h3 { font-size: 21px; margin-bottom: 8px; }

@media (max-width: 980px) {
  .seo-grid { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
  .faq-premium .seo-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .service-finder { grid-template-columns: 1fr; gap: 30px; }
  .service-visual { position: relative; top: auto; min-height: 420px; }
  .service-visual img { min-height: 420px; }
}

@media (max-width: 860px) {
  .nav { height: 70px; }
  .brand img { width: 118px; }
  .menu-toggle { display: block; position: fixed; top: 13px; left: min(calc(100vw - 60px), 330px); z-index: 61; border-width: 2px; }
  .nav-links {
    position: fixed;
    inset: 70px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #363636;
  }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 15px 12px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .hero { min-height: 92vh; padding-top: 104px; padding-bottom: 56px; }
  .home-hero-v2 {
    min-height: auto;
    padding: 112px 0 40px;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-hero-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.02;
  }
  .home-hero-copy .lead {
    margin-top: 20px;
    font-size: 18px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .home-hero-panel {
    min-height: 360px;
    border-radius: 8px;
  }
  .home-hero-panel img {
    min-height: 360px;
  }
  .home-hero-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
  .home-hero-note strong { font-size: 15px; }
  .home-hero-note span { font-size: 14px; }
  .home-trust-row {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
    gap: 8px;
  }
  .home-trust-row a {
    min-height: 56px;
    padding: 12px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .home-hero-bg {
    background-attachment: scroll;
  }
  h1 { font-size: clamp(30px, 8vw, 38px); letter-spacing: 0; }
  h2 { font-size: clamp(26px, 6.7vw, 34px); }
  h3 { font-size: clamp(20px, 5.3vw, 24px); }
  .eyebrow { font-size: 11px; line-height: 1.45; letter-spacing: .08em; overflow-wrap: break-word; }
  .hero-copy { width: min(100% - 32px, 720px); }
  .lead { max-width: 100%; font-size: 16px; line-height: 1.58; }
  .hero-copy h1 { max-width: 360px; }
  .hero-copy .lead { max-width: 342px; }
  .hero-actions { max-width: 342px; }
  .hero::after { background: #363636; opacity: .72; }
  .metrics, .service-grid, .process, .split > .process, .quote-grid, .split, .story-content, .bio-grid, .contact-grid, .about-hero-grid, .service-photo-row, .service-evidence { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .story-sticky {
    height: 100svh;
    min-height: 620px;
  }
  .story-content {
    min-height: 100svh;
    align-content: start;
    gap: 12px;
    padding: 74px 0 76px;
  }
  .scene-panel {
    display: block;
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    padding: 12px;
    border-radius: 8px;
  }
  .db-meter { gap: 9px; }
  .db-readout { font-size: clamp(42px, 15vw, 62px); line-height: .95; }
  .db-readout span { font-size: .24em; }
  .db-equivalent { min-height: 0; padding: 10px; }
  .db-equivalent strong { font-size: 16px; margin-bottom: 4px; }
  .db-equivalent span { font-size: 13px; line-height: 1.35; }
  .bars { gap: 4px; }
  .bars i { height: 5px; }
  .db-scale { font-size: 10px; }
  .scene-text { grid-column: 1; grid-row: 2; }
  .sound-story-layout .scene-text { grid-column: 1; grid-row: 2; }
  .sound-story-layout .sound-console { grid-column: 1; grid-row: 1; }
  .sound-story-layout .scene-text h2 { font-size: clamp(27px, 8vw, 34px); }
  .sound-spectrum { min-height: 58px; gap: 5px; }
  .sound-spectrum i { min-height: 10px; }
  .scene-text h2 { font-size: clamp(27px, 8vw, 34px); line-height: 1.1; }
  .scene-text p { font-size: 15px; line-height: 1.5; margin-top: 10px; }
  .story-progress { bottom: 18px; }
  .contact-card h2 { font-size: clamp(26px, 6.6vw, 32px); }
  .scroll-story { height: 520vh; }
  .image-card { min-height: 360px; }
  .page-hero {
    padding: 100px 0 42px;
  }
  .page-hero .wrap {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }
  .page-hero h1 {
    max-width: 320px;
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.14;
    text-wrap: normal;
    overflow-wrap: anywhere;
  }
  .page-hero .lead {
    max-width: 320px;
    font-size: 15.5px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .page-hero .area-note {
    max-width: 320px;
    overflow-wrap: anywhere;
  }
  .contact-card h2,
  .contact-card h3,
  .contact-card p,
  .contact-card strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .wrap.contact-grid {
    width: calc(100% - 48px);
    max-width: calc(100vw - 48px);
  }
  .contact-card {
    max-width: 100%;
  }
  .contact-grid > .contact-card {
    width: min(310px, calc(100vw - 80px));
    justify-self: start;
  }
  .contact-grid-single > .contact-card {
    width: min(100%, 280px);
    justify-self: center;
  }
  .site-footer { padding: 24px 0 18px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand img { width: 138px; }
  .footer-col a,
  .footer-bottom a { overflow-wrap: anywhere; }
  .footer-cta { width: fit-content; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-list a, .contact-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-list a > span,
  .contact-list span > span {
    white-space: normal;
  }
  .intent-grid { grid-template-columns: 1fr; gap: 12px; }
  .intent-card { min-height: 250px; padding: 20px; }
  .method-lines div { grid-template-columns: 1fr; gap: 8px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip a { min-height: 88px; }
  .home-about-image,
  .home-about-image img { min-height: 440px; }
  .inline-photo { margin-top: 24px; }
  .service-photo-row { gap: 12px; }
  .about-hero-strong {
    min-height: auto;
    padding: 104px 0 52px;
  }
  .about-hero-strong .wrap {
    width: min(356px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }
  .about-hero-copy {
    padding-bottom: 0;
  }
  .about-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 7.6vw, 36px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .about-hero-copy .lead {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .about-proof-row { max-width: 300px; }
  .about-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }
  .about-proof-row span {
    min-height: 50px;
  }
  .about-hero-photo {
    transform: none;
    max-width: 100%;
    justify-self: stretch;
  }
  .about-hero-photo > img {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
    object-position: 45% 38%;
  }
  .about-hero-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
  .about-hero-photo figcaption img {
    width: 44px;
    height: 26px;
  }
  .quiet-credential {
    align-items: flex-start;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .credential-coitt { grid-template-columns: 58px 1fr; gap: 12px; }
  .credential-coitt img { width: 58px; }
  .service-finder-section { padding-top: 64px; }
  .service-finder-copy { gap: 16px; }
  .service-path {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .service-visual {
    min-height: 340px;
    border-radius: 8px;
  }
  .service-visual img { min-height: 340px; }
  .service-visual-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }
  .seo-hero { padding: 100px 0 42px; }
  .seo-hero .wrap, .seo-grid {
    width: min(326px, calc(100% - 48px));
    max-width: 100%;
  }
  .seo-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 7.8vw, 38px);
    line-height: 1.14;
    text-wrap: normal;
    overflow-wrap: anywhere;
  }
  .seo-hero .lead {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .seo-block, .seo-copy, .seo-aside, .contact-card, .image-card {
    max-width: 100%;
    min-width: 0;
  }
  .seo-block { padding: 22px; border-radius: 8px; }
  .seo-block h2 { font-size: 30px; line-height: 1.16; }
  .seo-block h3 { font-size: 22px; line-height: 1.24; }
  .check-list li, .mini-link-grid a, .faq-item p, .contact-card p {
    overflow-wrap: anywhere;
  }
  .mini-link-grid { grid-template-columns: 1fr; }
  .home-premium-hero {
    min-height: 100svh;
    padding: 96px 0 64px;
    align-items: center;
  }
  .home-hero-bg {
    background-attachment: scroll;
    background-size: cover;
    background-position: 66% 50%;
  }
  .home-premium-hero::after {
    opacity: .58;
  }
	  .home-premium-grid,
	  .home-proof-list,
	  .home-family-grid,
	  .home-process-grid,
	  .home-cta-grid,
	  .thanks-grid {
	    grid-template-columns: 1fr;
	  }
  .home-premium-copy h1 {
    font-size: clamp(30px, 7.4vw, 36px);
    line-height: 1.08;
    text-wrap: normal;
    overflow-wrap: anywhere;
  }
  .home-premium-copy .lead {
    max-width: 100%;
    font-size: 17px;
  }
  .home-trust-line {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .home-premium-actions {
    max-width: 100%;
  }
  .home-premium-actions .btn {
    width: 100%;
  }
  .reveal-ready .reveal-on-scroll {
    transform: translateY(20px);
    transition-duration: .6s;
  }
  .home-proof-list p {
    border-left: 0;
    border-top: 1px solid #363636;
    padding: 22px 0;
  }
  .home-proof-list p:last-child {
    border-right: 0;
  }
  .home-family-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    border-left: 0;
  }
  .home-family-grid article {
    width: 100%;
    min-height: auto;
    padding: 20px;
    border: 1px solid #363636;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .home-family-grid h3 {
    font-size: clamp(20px, 5.2vw, 23px);
    line-height: 1.18;
    overflow-wrap: normal;
    word-break: normal;
  }
  .home-family-grid p {
    font-size: 15.5px;
    overflow-wrap: normal;
    word-break: normal;
  }
  .home-family-grid a {
    overflow-wrap: break-word;
    word-break: normal;
  }
  .home-process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-need-list a {
    font-size: clamp(20px, 6vw, 26px);
  }
  .home-need-list a:hover {
    padding-left: 0;
  }
  .home-cta-panel {
    padding: 24px;
  }
  .home-cta-panel .hero-actions {
    max-width: 100%;
  }
  .home-cta-panel .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-premium-hero {
    min-height: 100svh;
    padding: 92px 0 58px;
    align-items: center;
  }
  .home-premium-hero .wrap {
    width: min(342px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }
  .home-premium-copy h1 {
    font-size: clamp(29px, 7.2vw, 34px);
  }
  .home-premium-copy .lead,
  .home-trust-line {
    overflow-wrap: anywhere;
  }
  .home-hero-v2 .wrap { width: min(358px, calc(100% - 32px)); }
  .home-trust-row { grid-template-columns: 1fr; }
  .home-hero-note {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .home-hero-copy h1 { font-size: clamp(38px, 10.5vw, 48px); }
  .home-hero-copy .lead {
    max-width: 330px;
    font-size: 17px;
  }
  .faq-intro-panel { padding: 20px; }
  .faq-topic-nav a { width: 100%; }
  .faq-section h2 { font-size: clamp(30px, 9vw, 40px); }
  .faq-accordion summary {
    font-size: 21px;
    padding: 20px 0;
  }
  .faq-accordion summary::after {
    float: none;
    display: inline-block;
  }
}

.blog-hero .blog-meta {
  margin-top: 28px;
}
.blog-hero .wrap:not(.blog-hero-grid):not(.blog-article-hero-grid) {
  max-width: var(--max);
}
.blog-hero-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.blog-hero-copy {
  border-left: 3px solid #00bf63;
  padding-left: clamp(20px, 3vw, 34px);
}
.blog-hero-copy .lead {
  max-width: 720px;
}
.blog-keys {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.blog-keys span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 12px;
  color: #dbdbdb;
  font-weight: 700;
  line-height: 1.25;
}
.blog-hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
}
.blog-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.blog-hero-visual-photo {
  border-color: #00bf63;
}
.blog-hero-visual-photo img {
  transform: scale(1.01);
}
.blog-hero-visual-placeholder {
  position: relative;
  isolation: isolate;
}
.blog-hero-visual-placeholder::before,
.blog-hero-visual-placeholder::after,
.blog-card-visual::before,
.blog-card-visual::after,
.blog-article-visual-placeholder::before,
.blog-article-visual-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  opacity: .7;
  z-index: -1;
}
.blog-hero-visual-placeholder::after,
.blog-card-visual::after,
.blog-article-visual-placeholder::after {
  inset: 44px;
  border-color: #00bf63;
  opacity: .9;
}
.blog-hero-visual-placeholder div {
  display: grid;
  gap: 12px;
  padding: 28px;
  text-align: center;
}
.blog-hero-visual-placeholder span,
.blog-hero-visual-placeholder strong,
.blog-hero-visual-placeholder small {
  color: #dbdbdb;
}
.blog-hero-visual-placeholder span {
  color: #00bf63;
  font-weight: 700;
}
.blog-hero-visual-placeholder strong {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}
.blog-hero-visual-placeholder small {
  max-width: 310px;
  margin: 6px auto 0;
  font-size: 15px;
  line-height: 1.55;
}
.blog-reading-section {
  background: #363636;
}
.blog-index-section {
  background: #dbdbdb;
  padding-top: clamp(54px, 6vw, 84px);
}
.blog-index-wrap {
  max-width: 1120px;
}
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #363636;
}
.blog-toolbar .eyebrow {
  color: #363636;
}
.blog-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-topic-nav a {
  border: 1px solid #363636;
  border-radius: 999px;
  padding: 8px 12px;
  color: #363636;
  font-size: 13px;
  font-weight: 700;
}
.blog-topic-nav a:hover,
.blog-topic-nav a:focus-visible {
  border-color: #00bf63;
  color: #00bf63;
}
.blog-category-section {
  scroll-margin-top: 96px;
  padding-top: clamp(34px, 4vw, 58px);
}
.blog-category-head {
  margin-bottom: 16px;
}
.blog-category-head .eyebrow {
  color: #363636;
}
.blog-featured {
  margin-top: 18px;
}
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}
.blog-shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.blog-shelf-grid-minimal {
  margin-top: clamp(28px, 4vw, 46px);
}
.blog-shelf-grid-minimal .blog-card {
  scroll-margin-top: 96px;
  height: 100%;
}
.blog-shelf-grid .blog-card-featured {
  grid-row: auto;
}
.blog-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #363636;
  border-radius: 8px;
  overflow: hidden;
  background: #dbdbdb;
  color: #363636;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.blog-card:has(a:hover),
.blog-card:has(a:focus-visible) {
  transform: translateY(-4px);
  border-color: #00bf63;
}
.blog-card-featured {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 500px;
  border-width: 2px;
}
.blog-shelf-grid .blog-card-featured {
  display: flex;
  grid-template-columns: 1fr;
  min-height: 0;
}
.blog-shelf-grid .blog-card-featured .blog-card-visual {
  min-height: 300px;
  border-right: 0;
  border-bottom: 1px solid #363636;
}
.blog-card-visual {
  position: relative;
  isolation: isolate;
  min-height: 240px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #363636;
  background: #363636;
}
.blog-shelf-grid-minimal .blog-card-visual {
  min-height: 0;
  height: 260px;
}
.blog-index-section .blog-card-visual {
  border-color: #00bf63;
}
.blog-index-section .blog-card-visual::after {
  pointer-events: none;
  opacity: 0;
}
.blog-card-visual-static {
  cursor: default;
}
.blog-card-featured .blog-card-visual {
  min-height: 100%;
  border-right: 1px solid #dbdbdb;
  border-bottom: 0;
}
.blog-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-index-section .blog-card-visual img {
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.01);
  transition: filter .34s ease, transform .34s ease;
}
.blog-index-section .blog-card:has(a:hover) .blog-card-visual img,
.blog-index-section .blog-card:has(a:focus-visible) .blog-card-visual img {
  filter: none;
  transform: scale(1.055);
}
.blog-index-section .blog-card:has(a:hover) .blog-card-visual::after,
.blog-index-section .blog-card:has(a:focus-visible) .blog-card-visual::after {
  opacity: 0;
}
.blog-card-visual span,
.blog-article-visual-placeholder span {
  max-width: 80%;
  border: 1px solid #00bf63;
  border-radius: 999px;
  padding: 8px 14px;
  color: #00bf63;
  font-weight: 700;
  text-align: center;
}
.blog-card-copy {
  padding: clamp(20px, 2.4vw, 28px);
  flex: 1 1 auto;
}
.blog-card-copy .eyebrow {
  color: #00bf63;
}
.blog-card h3 {
  max-width: 780px;
  margin: 12px 0 14px;
  color: #363636;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}
.blog-card:not(.blog-card-featured) h3 {
  font-size: clamp(22px, 2vw, 30px);
}
.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  color: #00bf63;
}
.blog-card p {
  max-width: 760px;
  color: #363636;
  overflow-wrap: anywhere;
}
.blog-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  border-top: 1px solid #363636;
  padding: 16px clamp(20px, 2.4vw, 28px);
}
.blog-read-link {
  color: #00bf63;
  font-weight: 700;
}
.blog-card-draft {
  min-height: 0;
  border-style: dashed;
}
.blog-card-draft .blog-card-visual {
  min-height: 0;
  height: 260px;
}
.blog-card-draft h3 {
  color: #363636;
}
.blog-draft-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #363636;
  font-size: 14px;
}
.blog-meta span,
.blog-meta time {
  border: 1px solid #363636;
  border-radius: 999px;
  padding: 6px 10px;
}
.blog-index-cta {
  max-width: none;
  margin-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid #363636;
  border-radius: 0;
  padding: clamp(22px, 3vw, 34px) 0 0;
  background: transparent;
}
.blog-index-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(27px, 2.7vw, 40px);
  color: #dbdbdb;
}
.blog-index-cta p {
  max-width: 720px;
  margin-bottom: 18px;
  color: #363636;
}
.blog-section-block + .blog-section-block {
  margin-top: 64px;
}
.blog-library-block {
  border-top: 3px solid #363636;
  padding-top: clamp(28px, 4vw, 42px);
}
.blog-library-block .blog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(240px, .42fr);
  gap: 24px;
  align-items: end;
  max-width: none;
}
.blog-library-block .blog-section-heading .eyebrow {
  grid-column: 1 / -1;
}
.blog-library-block .blog-section-heading h2,
.blog-library-block .blog-section-heading p:not(.eyebrow) {
  margin: 0;
}
.blog-library-block .blog-section-heading::after {
  content: "1 publicado · 2 en preparación";
  justify-self: end;
  border: 1px solid #363636;
  border-radius: 999px;
  padding: 9px 13px;
  color: #363636;
  font-size: 13px;
  font-weight: 700;
}
.blog-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}
.blog-section-heading h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}
.blog-index-section .blog-section-heading h2 {
  color: #363636;
}
.blog-section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 10px;
  color: #dbdbdb;
  font-size: 17px;
  line-height: 1.65;
}
.blog-index-section .blog-section-heading p:not(.eyebrow) {
  color: #363636;
}
.blog-index-section .blog-section-heading .eyebrow {
  color: #363636;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.upcoming-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 22px;
  background: #363636;
}
.upcoming-card h3 {
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.2;
}
.upcoming-card span {
  width: fit-content;
  border: 1px solid #00bf63;
  border-radius: 999px;
  padding: 6px 10px;
  color: #00bf63;
  font-weight: 700;
  font-size: 13px;
}
.blog-article-hero {
  padding: 92px 0 clamp(38px, 4vw, 56px);
}
.blog-article-hero-v2 .blog-article-hero-wrap {
  max-width: 1120px;
}
.blog-article-hero-v2 .breadcrumb {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.blog-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
}
.blog-article-hero-copy {
  min-width: 0;
  border-left: 3px solid #00bf63;
  padding-left: clamp(18px, 2.6vw, 30px);
}
.blog-article-hero-copy .lead {
  max-width: 820px;
}
.blog-article-hero-v2 h1 {
  max-width: 1020px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.07;
}
.blog-article-hero-v2 .lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
}
.blog-article-hero-v2 .blog-meta {
  margin-top: clamp(18px, 2vw, 24px);
  color: #dbdbdb;
}
.blog-article-hero-v2 .blog-meta span,
.blog-article-hero-v2 .blog-meta time {
  border-color: #dbdbdb;
}
.blog-article-hero-media {
  margin-top: clamp(24px, 3.2vw, 38px);
}
.blog-article-hero-media .blog-article-visual {
  width: min(100%, 1040px);
  justify-self: center;
  min-height: 0;
  display: block;
  aspect-ratio: 16 / 9;
  border-color: #dbdbdb;
  background: #363636;
}
.blog-article-hero-media .blog-article-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #363636;
}
.blog-article-hero-media .blog-article-visual::before {
  content: none;
}
.blog-reading-shell {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 780px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.blog-reading-shell > .blog-article-visual {
  grid-column: 1 / -1;
  width: min(100%, 980px);
  justify-self: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 560px;
}
.blog-reading-shell > .blog-article-visual img {
  min-height: 0;
}
.blog-reading-aside {
  position: sticky;
  top: 26px;
  align-self: start;
}
.blog-article {
  display: grid;
  gap: 38px;
  min-width: 0;
}
.blog-article .seo-block {
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 0 0 38px;
  scroll-margin-top: 24px;
}
.blog-article .seo-block h2 {
  max-width: 760px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}
.blog-article .seo-block p {
  max-width: 740px;
  font-size: 18px;
  line-height: 1.82;
}
.blog-references {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #dbdbdb;
  line-height: 1.62;
}
.blog-article-visual {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  background: #363636;
}
.blog-article-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.blog-toc {
  display: grid;
  gap: 9px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 18px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
.blog-toc p {
  color: #00bf63;
  font-weight: 700;
  line-height: 1.3;
}
.blog-toc a {
  color: #dbdbdb;
  line-height: 1.35;
  font-size: 14px;
  border-left: 2px solid #dbdbdb;
  padding-left: 10px;
  transition: color .18s ease, border-color .18s ease;
}
.blog-toc a:hover,
.blog-toc a:focus-visible,
.blog-toc a.is-active {
  color: #00bf63;
  border-color: #00bf63;
}
.blog-final-cta {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: #363636;
}
.blog-final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.5vw, 36px);
}
.blog-final-cta p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
}
.blog-bullet-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #dbdbdb;
  font-size: 18px;
  line-height: 1.72;
}
.blog-bullet-list li::marker {
  color: #00bf63;
}
.blog-table-wrap {
  width: 100%;
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
}
.blog-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: #dbdbdb;
  font-size: 15px;
  line-height: 1.5;
}
.blog-table th,
.blog-table td {
  border-bottom: 1px solid #dbdbdb;
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
.blog-table th {
  color: #00bf63;
  font-weight: 700;
}
.blog-table tr:last-child td {
  border-bottom: 0;
}
.blog-references a {
  color: #00bf63;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .blog-index-wrap,
  .blog-reading-shell {
    width: min(326px, calc(100% - 48px));
    max-width: 100%;
  }
  .blog-hero-grid {
    grid-template-columns: 1fr;
    width: min(326px, calc(100% - 48px));
    max-width: 100%;
  }
  .blog-keys {
    grid-template-columns: 1fr 1fr;
  }
  .blog-hero-visual {
    min-height: 300px;
  }
  .blog-hero-visual img {
    min-height: 300px;
  }
  .blog-index-grid,
  .blog-shelf-grid,
  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .blog-library-block .blog-section-heading {
    grid-template-columns: 1fr;
  }
  .blog-library-block .blog-section-heading::after {
    justify-self: start;
  }
  .blog-card {
    min-height: auto;
    height: auto;
  }
  .blog-shelf-grid-minimal .blog-card {
    min-height: 760px;
  }
  .blog-shelf-grid-minimal .blog-card-visual,
  .blog-card-draft .blog-card-visual {
    height: 220px;
  }
  .blog-card-featured {
    display: flex;
  }
  .blog-card-featured .blog-card-visual {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid #dbdbdb;
  }
  .blog-shelf-grid .blog-card-featured .blog-card-visual {
    min-height: 230px;
  }
  .blog-card h3 {
    font-size: 28px;
  }
  .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-meta {
    gap: 6px;
  }
  .blog-meta span,
  .blog-meta time {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .blog-article {
    gap: 24px;
  }
  .blog-article .seo-block {
    padding-bottom: 24px;
  }
  .blog-article .seo-block p,
  .blog-final-cta p {
    font-size: 16px;
  }
  .blog-article-hero {
    padding: 96px 0 42px;
  }
  .blog-article-hero-v2 .blog-article-hero-wrap {
    width: calc(100% - 32px);
    max-width: 760px;
    margin-inline: auto;
  }
  .blog-article-hero-v2 .breadcrumb {
    margin-bottom: 18px;
  }
  .blog-article-hero-copy {
    border-left-width: 2px;
    padding-left: 16px;
  }
  .blog-article-hero-v2 h1 {
    font-size: clamp(30px, 8.4vw, 39px);
    line-height: 1.08;
  }
  .blog-article-hero-v2 .lead {
    font-size: 16px;
  }
  .blog-article-hero-media .blog-article-visual {
    width: calc(100% - 32px);
    margin-inline: auto;
    margin-top: 22px;
    aspect-ratio: 16 / 10;
  }
  .blog-reading-shell {
    grid-template-columns: 1fr;
  }
  .blog-reading-shell > .blog-article-visual {
    aspect-ratio: 16 / 10;
  }
  .blog-reading-aside {
    position: static;
  }
  .blog-article-visual {
    min-height: 260px;
  }
  .blog-article-visual img {
    min-height: 260px;
  }
  .upcoming-card {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .section > .wrap,
  .home-proof-band .wrap,
  .contact-card,
  .reveal-on-scroll,
  .service-path {
    animation: none !important;
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
  }
  .home-family-grid article:hover,
  .home-family-grid article:focus-within,
  .service-path:hover,
  .service-path:focus-visible {
    transform: none;
  }
  .home-hero-bg { background-attachment: scroll; }
  .scroll-story { height: auto; }
  .story-sticky { position: relative; min-height: 100vh; }
  .scene-text { position: static; opacity: 1; transform: none; margin-bottom: 28px; }
  .story-content { display: block; padding: 120px 0 70px; }
}
