:root {
  --navy: #061f3a;
  --navy-2: #082b49;
  --navy-3: #0c3658;
  --ink: #091a2b;
  --text: #334252;
  --muted: #667482;
  --paper: #f7f5ef;
  --paper-2: #fbfaf6;
  --white: #ffffff;
  --line: #dfe6e8;
  --teal: #078aa4;
  --cyan: #00b8e6;
  --cyan-soft: #e8f8fd;
  --shadow: 0 24px 60px rgba(6, 36, 61, 0.10);
  --shadow-soft: 0 14px 34px rgba(6, 36, 61, 0.07);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 9999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 12px; }

.container {
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid rgba(9, 26, 43, 0.08);
  backdrop-filter: blur(18px);
}
.nav-shell {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(6, 36, 61, 0.16);
}
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 16px; letter-spacing: -0.015em; }
.brand small { color: var(--muted); margin-top: 4px; font-size: 12px; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  color: #324353;
  font-size: 13px;
  font-weight: 800;
}
.main-nav a,
.footer-nav a,
.footer-links a { transition: color 160ms ease; }
.main-nav a:hover,
.footer-nav a:hover,
.footer-links a:hover { color: var(--teal); }
.menu-toggle { display: none; }
.menu-icon {
  position: relative;
  width: 21px;
  height: 16px;
  display: block;
}
.menu-icon span {
  position: absolute;
  left: 0;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 140ms ease, top 180ms ease;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }
.menu-toggle.is-open .menu-icon span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-toggle.is-open .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-icon span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 184, 230, 0.48);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #18bcc8);
  color: #042033;
  box-shadow: 0 14px 30px rgba(26, 188, 200, 0.25);
}
.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.header-cta { white-space: nowrap; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 184, 230, 0.18), transparent 30%),
    linear-gradient(135deg, #041b33 0%, #062845 58%, #093652 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 740px;
  padding: 60px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 68px;
  align-items: stretch;
}
.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: #13a9ba;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}
.hero .eyebrow { color: #72eef2; margin-bottom: 25px; }
.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: 1px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 78px);
  line-height: 1.045;
  letter-spacing: -0.042em;
  text-wrap: balance;
}
.hero h1 span { color: var(--cyan); }
.hero-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #dceaf0;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-credentials {
  max-width: 760px;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.hero-credentials article {
  padding: 19px 18px 18px;
}
.hero-credentials article + article { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.hero-credentials strong {
  display: block;
  color: #6bf0f3;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-credentials span {
  display: block;
  margin-top: 7px;
  color: #bdd3dc;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 600;
}
.hero-visual {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  justify-items: stretch;
  min-width: 0;
  width: min(100%, 500px);
  justify-self: end;
  padding-top: 48px;
}
.hero-photo {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  justify-self: stretch;
  border-radius: 30px;
  padding: 7px;
  background: linear-gradient(145deg, rgba(43, 212, 220, 0.65), rgba(255, 255, 255, 0.12));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.30);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 475px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 24px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.proof-card {
  min-height: 132px;
  padding: 19px 20px;
  border: 1px solid rgba(137, 228, 234, 0.18);
  border-radius: 18px;
  background: rgba(9, 50, 75, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
.proof-card strong {
  display: block;
  color: #6bf0f3;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.05;
}
.proof-card span,
.proof-card small { display: block; }
.proof-card span { margin-top: 7px; color: #e6f1f4; font-size: 12.5px; font-weight: 700; }
.proof-card small { margin-top: 8px; color: #a9c3cd; font-size: 11px; line-height: 1.35; }


.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #e7ecec;
  border-bottom: 1px solid #e7ecec;
  background: var(--white);
  color: #273849;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding: 13px 0;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}
.ticker i {
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 92px 0; scroll-margin-top: 96px; }
.section-white { background: var(--white); }
.section-soft { background: var(--paper-2); }
.framed {
  padding: 54px;
  border: 1px solid rgba(9, 26, 43, 0.08);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 62px;
  align-items: center;
}
.display-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.section-copy > p,
.credentials-copy > p:last-child,
.section-heading > p:last-child,
.framework-intro > p,
.about-copy > p {
  color: var(--text);
  font-size: 17px;
}
.section-copy > p { margin: 0 0 28px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.step-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d5eef1;
  border-radius: var(--radius-md);
  background: var(--cyan-soft);
}
.step-card span,
.card-index,
.service-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.step-card strong { font-size: 15px; line-height: 1.35; }

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.73fr) minmax(0, 1.27fr);
  gap: 54px;
  align-items: center;
}
.credentials-copy .display-title { max-width: 540px; }
.credentials-copy > p:last-child { max-width: 540px; margin: 24px 0 0; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.logo-card {
  min-height: 205px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  border: 1px solid rgba(9, 26, 43, 0.11);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.logo-card img { width: 100%; max-width: 130px; max-height: 78px; object-fit: contain; }
.logo-card:nth-child(2) img { max-width: 102px; max-height: 90px; }
.logo-card:nth-child(3) img { max-width: 142px; }
.logo-card:nth-child(4) img { max-width: 118px; }
.logo-card:nth-child(5) img { max-width: 142px; }
.logo-card strong { color: #334354; font-size: 12.5px; line-height: 1.35; }

.section-heading { margin-bottom: 38px; }
.section-heading.max-wide { max-width: 1040px; }
.section-heading > p:last-child { max-width: 900px; margin: 20px 0 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.content-card {
  position: relative;
  padding: 24px 26px 25px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.content-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: var(--teal);
}
.content-card h3 {
  margin: 3px 0 11px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.content-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.framework-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: stretch;
}
.framework-intro {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.framework-intro > p { margin: 20px 0 0; max-width: 520px; }
.framework-value {
  margin-top: auto;
  max-width: 470px;
  padding: 24px 26px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: 20px;
  background: var(--paper-2);
}
.framework-value h3 { margin: 0 0 13px; font-size: 17px; }
.framework-value ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--muted); font-size: 14px; }
.framework-value li { position: relative; padding-left: 24px; }
.framework-value li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.framework-steps { display: grid; grid-template-rows: repeat(4, 1fr); gap: 12px; }
.framework-steps article {
  min-height: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 36, 61, 0.05);
}
.framework-steps article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: radial-gradient(circle at 34% 25%, #21c8d3, var(--navy) 72%);
}
.framework-steps h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 27px; line-height: 1.1; }
.framework-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 25px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.service-card.featured { border-color: #95dbe3; box-shadow: 0 18px 44px rgba(7, 149, 168, 0.11); }
.service-number { margin-bottom: 17px; }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; line-height: 1.16; letter-spacing: -0.025em; }
.service-question { margin: 7px 0 14px; color: var(--teal); font-size: 13px; font-weight: 800; }
.service-card > p:not(.service-question) { margin: 0 0 16px; color: var(--text); font-size: 15px; }
.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.service-card li { position: relative; padding-left: 21px; line-height: 1.45; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

.service-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(9, 26, 43, 0.10);
}
.service-price span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #087f90;
  font-size: 13px;
  font-weight: 800;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  overflow: hidden;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.case-card > img { width: 100%; height: 286px; object-fit: cover; }
.case-body { padding: 28px 30px 30px; }
.case-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #087f90;
  font-size: 10.5px;
  font-weight: 800;
}
.case-body h3 { margin: 14px 0 20px; font-family: var(--serif); font-size: 28px; line-height: 1.16; letter-spacing: -0.025em; }
.case-body p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }
.case-body p strong { color: var(--ink); }
.result-pill {
  display: inline-flex;
  margin-top: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0aa5b7;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
}
.about-copy > p { margin: 20px 0 0; }
.about-copy .belief {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
  color: var(--ink);
  font-weight: 700;
}
.about-credentials {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about-credentials article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: 17px;
  background: var(--white);
}
.about-credentials strong { display: block; font-size: 14px; line-height: 1.35; }
.about-credentials span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.about-photo { margin: 0; }
.about-photo img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.principles {
  background:
    radial-gradient(circle at 82% 20%, rgba(43, 212, 220, 0.15), transparent 30%),
    var(--navy);
  color: var(--white);
}
.light-heading .display-title { color: var(--white); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.principles-grid article {
  min-height: 190px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--cyan);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.principles-grid h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 23px; }
.principles-grid p { margin: 0; color: #bfd1da; font-size: 14px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card {
  min-height: 225px;
  padding: 27px 28px;
  border: 1px solid rgba(9, 26, 43, 0.09);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.faq-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 23px; line-height: 1.2; }
.faq-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 58px;
  align-items: center;
  padding: 52px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(43, 212, 220, 0.18), transparent 31%),
    linear-gradient(135deg, var(--navy), #07384d);
  box-shadow: 0 30px 70px rgba(6, 36, 61, 0.18);
}
.contact-copy .section-kicker { color: #6bf0f3; }
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.contact-copy > p { margin: 22px 0 0; color: #c4d8e0; font-size: 17px; max-width: 650px; }
.contact-links { margin-top: 28px; display: grid; gap: 9px; color: #dceaf0; font-size: 13px; }
.contact-links a { color: #70eef2; font-weight: 700; width: fit-content; }
.contact-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.field { display: grid; gap: 7px; margin-bottom: 13px; }
.field label { font-size: 12px; font-weight: 800; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #afc5cf; }
.form-submit { width: 100%; margin-top: 3px; }
.form-note { margin: 11px 0 0; color: #a9c2cc; font-size: 10.5px; line-height: 1.45; }

.site-footer { padding: 38px 0; background: #041a2e; color: #dce8ed; }
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 13px; min-width: max-content; }
.footer-brand img { width: 58px; height: 58px; border-radius: 15px; }
.footer-brand div { display: grid; }
.footer-brand strong { font-size: 14px; }
.footer-brand span { margin-top: 3px; color: #99b2bd; font-size: 11px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center; font-size: 11.5px; font-weight: 700; color: #b8ccd5; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0; color: #b9cdd5; font-size: 11.5px; }
.footer-links { margin-top: 7px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px; color: #6beef2; font-size: 10.5px; font-weight: 700; }
.footer-meta small { display: block; margin-top: 7px; color: #829ca8; font-size: 10px; }

@media (max-width: 1180px) {
  .container { width: min(100% - 48px, 1320px); }
  .nav-shell { grid-template-columns: auto auto 1fr; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(9, 26, 43, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    padding: 0;
    box-shadow: 0 8px 22px rgba(6, 36, 61, 0.08);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(9, 26, 43, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 55px rgba(6, 36, 61, 0.18);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 11px; font-size: 14px; }
  .main-nav a:hover { background: var(--cyan-soft); }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 42px; }
  .hero h1 { font-size: clamp(48px, 5.5vw, 68px); }
  .credentials-layout { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .logo-card { min-width: 150px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-nav { justify-content: flex-start; }
  .footer-meta { text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .hero-grid,
  .split-section,
  .framework-layout,
  .about-layout,
  .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 52px 0; gap: 38px; align-items: start; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 600px; width: 100%; justify-self: center; display: grid; grid-template-rows: auto auto; padding-top: 0; }
  .hero-photo { width: min(100%, 500px); height: auto; justify-self: center; }
  .hero-photo img { height: 520px; min-height: 0; }
  .problem-grid,
  .services-grid,
  .cases-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .content-card,
  .service-card,
  .faq-card { min-height: auto; }
  .about-photo { max-width: 620px; }
  .about-photo img { max-height: 560px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1320px); }
  .nav-shell { min-height: 72px; gap: 12px; }
  .brand img { width: 44px; height: 44px; border-radius: 13px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10.5px; }
  .menu-toggle { width: 46px; height: 46px; border-radius: 14px; }
  
.section { padding: 62px 0; }
  .hero { background: linear-gradient(145deg, #041b33, #093652); }
  .hero-grid { padding: 42px 0 46px; }
  .hero h1 { font-size: 43px; line-height: 1.06; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-credentials { grid-template-columns: 1fr; }
  .hero-credentials article + article { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .hero-credentials article { padding: 17px 18px; }
  .hero-photo { padding: 5px; border-radius: 24px; }
  .hero-photo img { height: 390px; border-radius: 19px; object-position: 50% 20%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 112px; }
  .framed { padding: 27px 22px; border-radius: 23px; }
  .display-title { font-size: 37px; line-height: 1.1; }
  .steps-grid,
  .about-credentials,
  .principles-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(5, 142px); gap: 11px; }
  .logo-card { min-height: 176px; }
  .content-card,
  .service-card,
  .case-body,
  .faq-card { padding: 24px; }
  .framework-steps article { grid-template-columns: 46px 1fr; padding: 18px; }
  .framework-steps article > span { width: 42px; height: 42px; }
  .framework-steps h3 { font-size: 23px; }
  .case-card > img { height: 220px; }
  .result-pill { border-radius: 14px; line-height: 1.35; }
  .about-photo img { max-height: 500px; }
  .contact-panel { padding: 28px 22px; border-radius: 24px; }
  .contact-copy h2 { font-size: 39px; }
  .contact-form { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.34);
  outline-offset: 4px;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 720px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* Blog + artículos */
.blog-hero {
  color: var(--white);
  padding: 92px 0 86px;
  background: radial-gradient(circle at 78% 18%, rgba(43,212,220,.18), transparent 31%), linear-gradient(135deg,#061d34 0%,#082942 60%,#07384d 100%);
}
.blog-hero h1 { margin:0; max-width:900px; font-family:var(--serif); font-size:clamp(48px,6vw,78px); line-height:1.04; letter-spacing:-.04em; }
.blog-hero h1 span { color:var(--cyan); }
.blog-hero > .container > p:last-child { max-width:760px; margin:24px 0 0; color:#dceaf0; font-size:18px; }
.blog-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.blog-grid-home { grid-template-columns:repeat(3,minmax(0,1fr)); }
.blog-card { overflow:hidden; border:1px solid var(--line); border-radius:24px; background:var(--white); box-shadow:var(--shadow-soft); }
.blog-card-visual { min-height:190px; display:flex; align-items:flex-end; padding:24px; position:relative; overflow:hidden; }
.blog-card-visual::after { content:""; position:absolute; width:230px; height:230px; border:1px solid rgba(255,255,255,.18); border-radius:50%; right:-70px; top:-85px; box-shadow:0 0 0 45px rgba(255,255,255,.035),0 0 0 90px rgba(255,255,255,.025); }
.blog-card-visual span { position:relative; z-index:1; color:#fff; font-size:12px; font-weight:800; letter-spacing:.16em; }
.visual-ai { background:linear-gradient(135deg,#061d34,#086b78); }
.visual-productivity { background:linear-gradient(135deg,#1f3442,#1b756e); }
.visual-risk { background:linear-gradient(135deg,#142032,#7b3b36); }
.visual-finance { background:linear-gradient(135deg,#092b43,#1d7784); }
.visual-growth { background:linear-gradient(135deg,#142c3e,#4d7b5b); }
.visual-design { background:linear-gradient(135deg,#24324a,#72587c); }
.blog-card-body { padding:26px 28px 29px; }
.blog-card-meta { margin:0 0 12px; color:var(--teal); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.blog-card h2,.blog-card h3 { margin:0; font-family:var(--serif); letter-spacing:-.026em; line-height:1.18; }
.blog-card h2 { font-size:27px; }
.blog-card h3 { font-size:23px; }
.blog-card-body > p:not(.blog-card-meta) { color:var(--muted); font-size:14px; margin:15px 0 18px; }
.text-link { color:#086f7c; font-weight:800; font-size:13px; }
.text-link:hover { color:var(--ink); }
.blog-card.compact .blog-card-visual { min-height:150px; }
.blog-card.compact .blog-card-body { padding:22px 23px 24px; }
.blog-cta { display:grid; grid-template-columns:1fr auto; align-items:center; gap:50px; }
.blog-cta p:not(.section-kicker) { max-width:730px; color:var(--muted); }

.article-page { background:var(--paper-2); }
.article-hero { padding:76px 0 62px; color:var(--white); background:radial-gradient(circle at 83% 10%,rgba(43,212,220,.17),transparent 31%),linear-gradient(135deg,#061d34,#08354a); }
.article-shell { width:min(960px,calc(100% - 72px)); margin-inline:auto; }
.breadcrumbs { display:flex; gap:8px; align-items:center; margin-bottom:40px; color:#9bb8c4; font-size:12px; font-weight:700; }
.breadcrumbs a:hover { color:var(--cyan); }
.article-kicker { margin:0 0 19px; color:#72eef2; text-transform:uppercase; letter-spacing:.15em; font-size:11px; font-weight:800; }
.article-hero h1 { margin:0; font-family:var(--serif); font-size:clamp(43px,5.5vw,72px); line-height:1.06; letter-spacing:-.042em; text-wrap:balance; }
.article-deck { max-width:840px; margin:25px 0 0; color:#d6e7ed; font-size:18px; line-height:1.7; }
.article-meta { display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; color:#9fb9c4; font-size:12px; }
.article-layout { width:min(1180px,calc(100% - 72px)); margin:0 auto; padding:64px 0 80px; display:grid; grid-template-columns:minmax(0,760px) 300px; gap:72px; align-items:start; }
.article-content { font-size:17px; line-height:1.82; color:#243443; }
.article-content > p { margin:0 0 23px; }
.article-content h2 { margin:52px 0 18px; font-family:var(--serif); font-size:31px; line-height:1.2; letter-spacing:-.027em; color:var(--ink); }
.article-content ul { margin:0 0 26px; padding-left:22px; }
.article-content li { margin:9px 0; }
.article-callout,.article-question,.article-flow,.article-ending { color:var(--ink); }
.article-callout { margin:34px 0 !important; padding:23px 25px; border-left:4px solid var(--cyan); background:#eefafb; font-size:18px; }
.article-question { margin:28px 0 !important; font-family:var(--serif); font-size:23px; line-height:1.45; }
.article-flow { margin:30px 0 !important; padding:18px 20px; border-radius:16px; text-align:center; background:#092b43; color:#fff; letter-spacing:.03em; font-size:14px; }
.article-ending { margin-top:42px !important; font-family:var(--serif); font-size:25px; line-height:1.45; }
.article-sources { margin-top:64px; padding-top:34px; border-top:1px solid var(--line); }
.article-sources h2 { margin:0 0 19px; font-size:25px; }
.article-sources ul { list-style:none; padding:0; margin:0; }
.article-sources li { padding:12px 0; border-bottom:1px solid #e6ebec; font-size:13px; line-height:1.55; }
.article-sources a { color:#4d6372; }
.article-sources a:hover { color:var(--teal); }
.article-side { position:sticky; top:116px; }
.author-card { padding:24px; border:1px solid var(--line); border-radius:22px; background:var(--white); box-shadow:var(--shadow-soft); }
.author-card img { width:76px; height:76px; object-fit:cover; object-position:50% 20%; border-radius:20px; margin-bottom:19px; }
.author-card .section-kicker { margin-bottom:10px; }
.author-card h2 { margin:0; font-family:var(--serif); font-size:23px; }
.author-card p:not(.section-kicker) { color:var(--muted); font-size:13px; line-height:1.65; }
.author-card .btn { width:100%; margin-top:5px; }
.article-next { padding:60px 0; background:#edf5f4; }
.article-next .container { display:grid; grid-template-columns:1fr auto; align-items:center; gap:30px; }
.article-next h2 { margin:0; font-family:var(--serif); font-size:34px; letter-spacing:-.03em; }
.btn-dark { background:var(--ink); color:#fff; }
.hp-field { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.form-status { min-height:22px; margin:13px 0 0; font-size:12px; font-weight:700; }
.form-status.success { color:#14755a; }
.form-status.error { color:#a84036; }
.form-submit:disabled { opacity:.65; cursor:wait; transform:none; }

@media (max-width: 1080px) {
  .blog-grid-home { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .article-layout { grid-template-columns:minmax(0,1fr) 260px; gap:44px; }
}
@media (max-width: 820px) {
  .blog-grid,.blog-grid-home { grid-template-columns:1fr; }
  .blog-cta,.article-next .container { grid-template-columns:1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-side { position:static; }
  .author-card { display:grid; grid-template-columns:76px 1fr; column-gap:18px; }
  .author-card img { grid-row:1/5; }
  .author-card .btn { grid-column:1/-1; }
}
@media (max-width: 720px) {
  .blog-hero { padding:62px 0 58px; }
  .blog-hero h1 { font-size:43px; }
  .article-hero { padding:56px 0 48px; }
  .article-shell,.article-layout { width:min(100% - 36px,760px); }
  .article-hero h1 { font-size:40px; }
  .article-deck { font-size:16px; }
  .article-layout { padding:46px 0 58px; }
  .article-content { font-size:16px; line-height:1.75; }
  .article-content h2 { font-size:27px; margin-top:42px; }
  .article-question { font-size:21px; }
}


/* Front 1 final: movimiento sutil y editorial */
.site-header {
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.985);
  border-bottom-color: rgba(9, 26, 43, 0.12);
  box-shadow: 0 10px 32px rgba(6, 36, 61, 0.07);
}
.site-header.is-scrolled .nav-shell { min-height: 72px; }
.nav-shell { transition: min-height 220ms ease; }
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transition: right 180ms ease;
}
.main-nav a:hover::after { right: 0; }
.proof-card,
.content-card,
.service-card,
.case-card,
.faq-card,
.blog-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.proof-card:hover,
.content-card:hover,
.service-card:hover,
.case-card:hover,
.faq-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(6, 36, 61, 0.10);
}
body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(.2,.65,.3,1), transform 620ms cubic-bezier(.2,.65,.3,1);
}
body.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.home-insights { padding-top: 66px; padding-bottom: 66px; }
.home-insights-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 48px;
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f2f8f7);
  box-shadow: var(--shadow-soft);
}
.home-insights-panel .display-title { margin-bottom: 14px; }
.home-insights-panel p:not(.section-kicker) { max-width: 760px; margin: 0; color: var(--muted); }

.blog-card-visual { min-height: 0; aspect-ratio:16 / 9; isolation: isolate; background: #0a304c; }
.blog-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(3,18,31,0.02) 32%, rgba(3,18,31,0.74) 100%);
}
.blog-card-visual::after { display:none; }
.blog-card-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  transition: transform 420ms cubic-bezier(.2,.65,.3,1), filter 420ms ease;
}
.blog-card:hover .blog-card-image { transform: scale(1.025); filter: saturate(1.03) contrast(1.02); }
.blog-card-visual span {
  display:inline-flex;
  width:max-content;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(4,27,45,.70);
  backdrop-filter: blur(8px);
  letter-spacing:.12em;
}

.article-media-shell {
  width:min(1180px,calc(100% - 72px));
  margin:-28px auto 0;
  position:relative;
  z-index:2;
}
.article-hero-image {
  margin:0;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:26px;
  background:#d9e1e3;
  box-shadow:0 28px 70px rgba(6,36,61,.16);
}
.article-hero-image img { width:100%; height:100%; object-fit:cover; }
.article-layout { padding-top:52px; }
.article-content .source-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(7,149,168,.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-content .source-link:hover { color: var(--teal); text-decoration-color: currentColor; }

@media (max-width: 820px) {
  .home-insights-panel { grid-template-columns:1fr; align-items:start; gap:24px; padding:30px; }
  .home-insights-panel .btn { width:max-content; }
}
@media (max-width: 720px) {
  .main-nav a::after { display:none; }
  .site-header.is-scrolled .nav-shell { min-height:68px; }
  .article-media-shell { width:calc(100% - 28px); margin-top:-18px; }
  .article-hero-image { border-radius:20px; }
  .article-layout { padding-top:38px; }
  .blog-card-visual { min-height:0; aspect-ratio:16 / 9; }
  .home-insights { padding-top:50px; padding-bottom:50px; }
  .home-insights-panel { padding:26px 22px; border-radius:22px; }
}
@media (prefers-reduced-motion: reduce) {
  body.motion-ready [data-reveal] { opacity:1; transform:none; }
  .blog-card-image, .main-nav a::after, .site-header, .nav-shell { transition:none !important; }
}


/* V4 final editorial refinement */
.article-media-shell { width:min(940px,calc(100% - 72px)); margin:-24px auto 0; }
.article-hero-image { aspect-ratio:16 / 9; }
.article-hero-image img { object-fit:cover; object-position:center; transform:scale(1.002); transition:transform 900ms cubic-bezier(.2,.65,.3,1); }
.article-media-shell.is-visible .article-hero-image img { transform:scale(1.018); }
.article-thesis { position:relative; margin:38px 0 42px; padding:32px 34px 30px 82px; border:0; border-radius:22px; background:#f0f5f7; color:var(--ink); }
.article-thesis > span { position:absolute; left:26px; top:10px; font-family:Georgia,serif; font-size:76px; line-height:1; color:var(--cyan); opacity:.72; }
.article-thesis p { margin:0; font-family:var(--serif); font-size:25px; line-height:1.45; letter-spacing:-.02em; }
.article-services { padding:66px 0 72px; background:#fff; border-top:1px solid var(--line); }
.article-services-head { max-width:720px; margin-bottom:30px; }
.article-services-head h2 { margin:0 0 10px; font-family:var(--serif); font-size:36px; letter-spacing:-.03em; }
.article-services-head > p:last-child { margin:0; color:var(--muted); }
.article-services-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.article-service-mini { display:flex; flex-direction:column; min-height:220px; padding:24px; border:1px solid var(--line); border-radius:20px; background:#fbfcfb; color:var(--ink); text-decoration:none; transition:transform 240ms ease,box-shadow 240ms ease,border-color 240ms ease,background 240ms ease; }
.article-service-mini:hover { transform:translateY(-5px); border-color:rgba(7,149,168,.35); background:#fff; box-shadow:0 18px 42px rgba(6,36,61,.10); }
.article-service-mini span { color:var(--teal); font-size:11px; font-weight:800; letter-spacing:.14em; }
.article-service-mini h3 { margin:18px 0 10px; font-family:var(--serif); font-size:20px; line-height:1.25; }
.article-service-mini p { margin:0 0 20px; color:var(--muted); font-size:13px; line-height:1.55; }
.article-service-mini strong { margin-top:auto; color:var(--teal); font-size:13px; }
[data-depth] { will-change:transform; }
@media (max-width:980px){ .article-services-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:720px){ .article-media-shell{width:calc(100% - 28px);margin-top:-16px}.article-thesis{padding:28px 24px 26px 64px}.article-thesis>span{left:18px;font-size:62px}.article-thesis p{font-size:21px}.article-services{padding:50px 0}.article-services-grid{grid-template-columns:1fr}.article-service-mini{min-height:0}.article-services-head h2{font-size:30px} }
@media (prefers-reduced-motion:reduce){ .article-hero-image img,.article-service-mini{transition:none!important;transform:none!important} }

/* Corporate motion pass — restrained depth, rhythm and interaction */
body.motion-ready [data-reveal] {
  transition-delay: var(--reveal-delay, 0ms);
}
body.motion-ready [data-reveal].reveal-left { transform: translate3d(-22px, 12px, 0); }
body.motion-ready [data-reveal].reveal-right { transform: translate3d(22px, 12px, 0); }
body.motion-ready [data-reveal].reveal-up { transform: translate3d(0, 20px, 0); }
body.motion-ready [data-reveal].is-visible { transform: translate3d(0, 0, 0); }

/* A faint section-level transition makes the page feel continuous without changing layout. */
main > .section {
  position: relative;
  isolation: isolate;
}
main > .section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: min(1160px, calc(100% - 72px));
  height: 1px;
  opacity: 0;
  transform: translateX(-50%) scaleX(.86);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(7,149,168,.18), transparent);
  transition: opacity 700ms ease, transform 850ms cubic-bezier(.2,.65,.3,1);
}
main > .section.section-in-view::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* Image movement stays inside its frame and remains visually quiet. */
.hero-photo,
.about-photo,
.case-card {
  overflow: hidden;
}
.hero-photo img,
.about-photo img,
.case-card > img {
  transition: scale 850ms cubic-bezier(.2,.65,.3,1), filter 500ms ease;
  will-change: translate, scale;
}
.hero-photo:hover img,
.about-photo:hover img,
.case-card:hover > img {
  scale: 1.018;
}

/* Secondary interactive surfaces: enough feedback to feel premium, never playful. */
.step-card,
.logo-card,
.framework-steps article,
.principles-grid article,
.about-credentials article {
  transition: transform 240ms cubic-bezier(.2,.65,.3,1), box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}
.step-card:hover,
.logo-card:hover,
.framework-steps article:hover,
.principles-grid article:hover,
.about-credentials article:hover {
  transform: translateY(-3px);
}
.logo-card:hover,
.framework-steps article:hover,
.about-credentials article:hover {
  box-shadow: 0 16px 34px rgba(6,36,61,.075);
}

/* Header compresses as one unit, including brand mark, for a more deliberate scroll state. */
.brand img {
  transition: width 220ms ease, height 220ms ease, border-radius 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled .brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(6,36,61,.12);
}

/* Keep scroll-linked movement compositor-friendly. */
[data-depth] { will-change: translate; }

@media (max-width: 820px) {
  body.motion-ready [data-reveal].reveal-left,
  body.motion-ready [data-reveal].reveal-right,
  body.motion-ready [data-reveal].reveal-up {
    transform: translate3d(0, 18px, 0);
  }
  body.motion-ready [data-reveal].is-visible { transform: translate3d(0,0,0); }
  main > .section::after { width: calc(100% - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready [data-reveal],
  body.motion-ready [data-reveal].reveal-left,
  body.motion-ready [data-reveal].reveal-right,
  body.motion-ready [data-reveal].reveal-up,
  body.motion-ready [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  main > .section::after { opacity: .55; transform: translateX(-50%) scaleX(1); transition: none !important; }
  .hero-photo img,
  .about-photo img,
  .case-card > img,
  .brand img,
  .step-card,
  .logo-card,
  .framework-steps article,
  .principles-grid article,
  .about-credentials article {
    transition: none !important;
    translate: none !important;
    scale: 1 !important;
  }
}

/* Safe crop reserve for scroll-linked image movement. */
.hero-photo img[data-depth="image"],
.about-photo img[data-depth="image"] { scale: 1.025; }
.case-card > img[data-depth="image"] { scale: 1.04; }
.article-hero-image img[data-depth="image"] { scale: 1.02; }
.hero-photo:hover img[data-depth="image"],
.about-photo:hover img[data-depth="image"] { scale: 1.038; }
.case-card:hover > img[data-depth="image"] { scale: 1.05; }

/* Final continuity pass: keep opening metrics stable while they count and let sections hand off sooner. */
.hero-credentials strong,
.proof-card strong {
  font-variant-numeric: tabular-nums;
}

/* The contact columns move independently; the panel itself stays present so the end of the page never feels blank. */
.contact-panel {
  transform: translateZ(0);
}

/* SEO landing pages — Margentrica commercial entry points */
.landing-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(43,212,220,.18), transparent 28%),
    linear-gradient(135deg, #041b33 0%, #062845 58%, #093652 100%);
}
.landing-hero::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.35;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:78px 78px;
}
.landing-hero-grid {
  position:relative;
  z-index:1;
  min-height:660px;
  padding:76px 0 68px;
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(390px,.76fr);
  gap:70px;
  align-items:center;
}
.landing-hero h1 {
  margin:0;
  max-width:820px;
  font-family:var(--serif);
  font-size:clamp(50px,5vw,76px);
  line-height:1.045;
  letter-spacing:-.043em;
  text-wrap:balance;
}
.landing-hero h1 span { color:var(--cyan); }
.landing-lead {
  max-width:780px;
  margin:26px 0 0;
  color:#d8e8ed;
  font-size:18px;
  line-height:1.72;
}
.landing-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.landing-actions .btn-secondary { border-color:rgba(255,255,255,.28); }
.landing-side-panel {
  position:relative;
  padding:30px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:28px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(12px);
  box-shadow:0 26px 64px rgba(0,0,0,.16);
}
.landing-side-panel > p:first-child {
  margin:0 0 22px;
  color:#6beef2;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.landing-side-list { display:grid; gap:12px; }
.landing-side-list article {
  display:grid;
  grid-template-columns:38px 1fr;
  gap:14px;
  align-items:start;
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.11);
}
.landing-side-list article:first-child { border-top:0; padding-top:0; }
.landing-side-list span {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(43,212,220,.14);
  color:#74f0f3;
  font-size:10px;
  font-weight:800;
}
.landing-side-list strong { display:block; font-size:14px; line-height:1.35; }
.landing-side-list small { display:block; margin-top:4px; color:#aec5cf; font-size:12px; line-height:1.45; }
.landing-proof-strip {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  border-top:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.08);
}
.landing-proof-strip article { padding:22px 24px; background:#08263d; }
.landing-proof-strip strong { display:block; color:#6bf0f3; font-family:var(--serif); font-size:26px; line-height:1; }
.landing-proof-strip span { display:block; margin-top:7px; color:#bfd1da; font-size:12px; line-height:1.45; }
.landing-intro-grid {
  display:grid;
  grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr);
  gap:64px;
  align-items:start;
}
.landing-intro-copy > p:not(.section-kicker) { margin:22px 0 0; color:var(--text); font-size:17px; }
.landing-card-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; }
.landing-card {
  min-height:190px;
  padding:25px;
  border:1px solid rgba(9,26,43,.09);
  border-radius:22px;
  background:var(--white);
  box-shadow:var(--shadow-soft);
  transition:transform 240ms cubic-bezier(.2,.65,.3,1), box-shadow 240ms ease, border-color 240ms ease;
}
.landing-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(6,36,61,.09); border-color:rgba(7,149,168,.26); }
.landing-card .card-index { margin-bottom:18px; }
.landing-card h3 { margin:0 0 10px; font-family:var(--serif); font-size:23px; line-height:1.2; letter-spacing:-.025em; }
.landing-card p { margin:0; color:var(--muted); font-size:14px; }
.landing-quote {
  position:relative;
  padding:54px 64px 54px 116px;
  border-radius:30px;
  background:var(--navy);
  color:var(--white);
  box-shadow:var(--shadow);
}
.landing-quote::before {
  content:"“";
  position:absolute;
  left:42px;
  top:18px;
  color:var(--cyan);
  font-family:Georgia,serif;
  font-size:92px;
  line-height:1;
  opacity:.82;
}
.landing-quote p { margin:0; max-width:980px; font-family:var(--serif); font-size:clamp(26px,3vw,39px); line-height:1.35; letter-spacing:-.025em; }
.landing-process {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}
.landing-process article {
  min-height:230px;
  padding:24px 21px;
  border:1px solid rgba(9,26,43,.09);
  border-radius:20px;
  background:var(--white);
  box-shadow:0 10px 28px rgba(6,36,61,.05);
}
.landing-process article > span {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--white);
  background:radial-gradient(circle at 34% 25%, #21c8d3, var(--navy) 72%);
  font-size:10px;
  font-weight:800;
}
.landing-process h3 { margin:22px 0 10px; font-family:var(--serif); font-size:21px; line-height:1.18; }
.landing-process p { margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.landing-deliver-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.landing-deliver {
  padding:28px;
  border-radius:22px;
  border:1px solid rgba(9,26,43,.09);
  background:var(--paper-2);
}
.landing-deliver strong { display:block; font-family:var(--serif); font-size:23px; line-height:1.2; }
.landing-deliver p { margin:10px 0 0; color:var(--muted); font-size:14px; }
.landing-results-band {
  background:
    radial-gradient(circle at 80% 25%, rgba(43,212,220,.14), transparent 30%),
    var(--navy);
  color:var(--white);
}
.landing-results-band .display-title { color:var(--white); }
.landing-result-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; margin-top:34px; }
.landing-result {
  min-height:190px;
  padding:26px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.06);
}
.landing-result strong { display:block; color:#69eef2; font-family:var(--serif); font-size:34px; line-height:1; }
.landing-result h3 { margin:17px 0 8px; font-size:15px; }
.landing-result p { margin:0; color:#b9cdd5; font-size:13px; }
.landing-insights-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.landing-insight {
  display:flex;
  min-height:190px;
  flex-direction:column;
  padding:26px;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--white);
  transition:transform 220ms ease, box-shadow 220ms ease;
}
.landing-insight:hover { transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.landing-insight span { color:var(--teal); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.landing-insight h3 { margin:14px 0 10px; font-family:var(--serif); font-size:24px; line-height:1.2; }
.landing-insight p { margin:0 0 18px; color:var(--muted); font-size:13px; }
.landing-insight strong { margin-top:auto; color:var(--teal); font-size:13px; }
.landing-related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.landing-related {
  display:flex;
  flex-direction:column;
  min-height:210px;
  padding:24px;
  border-radius:20px;
  border:1px solid rgba(9,26,43,.09);
  background:var(--white);
  transition:transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.landing-related:hover { transform:translateY(-4px); border-color:rgba(7,149,168,.32); box-shadow:var(--shadow-soft); }
.landing-related span { color:var(--teal); font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.landing-related h3 { margin:16px 0 10px; font-family:var(--serif); font-size:23px; line-height:1.2; }
.landing-related p { margin:0 0 18px; color:var(--muted); font-size:13px; }
.landing-related strong { margin-top:auto; color:var(--teal); font-size:13px; }
.landing-cta-panel {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:40px;
  align-items:center;
  padding:46px 50px;
  border-radius:28px;
  background:linear-gradient(135deg,#ffffff,#eef8f8);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.landing-cta-panel h2 { margin:0; font-family:var(--serif); font-size:clamp(34px,4vw,54px); line-height:1.08; letter-spacing:-.035em; }
.landing-cta-panel p { margin:15px 0 0; max-width:780px; color:var(--muted); }
.landing-cta-panel .btn { white-space:nowrap; }

@media (max-width:1080px) {
  .landing-hero-grid { grid-template-columns:1fr; min-height:0; gap:38px; }
  .landing-side-panel { max-width:760px; }
  .landing-process { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .landing-deliver-grid,.landing-result-grid,.landing-related-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:820px) {
  .landing-hero-grid { padding:58px 0 52px; }
  .landing-intro-grid { grid-template-columns:1fr; gap:38px; }
  .landing-card-grid { grid-template-columns:1fr; }
  .landing-process { grid-template-columns:1fr 1fr; }
  .landing-deliver-grid,.landing-result-grid,.landing-related-grid,.landing-insights-grid { grid-template-columns:1fr; }
  .landing-quote { padding:42px 32px 42px 84px; }
  .landing-quote::before { left:28px; font-size:76px; }
  .landing-cta-panel { grid-template-columns:1fr; align-items:start; }
}
@media (max-width:720px) {
  .landing-hero h1 { font-size:44px; }
  .landing-lead { font-size:16px; }
  .landing-side-panel { padding:24px 20px; border-radius:22px; }
  .landing-proof-strip { grid-template-columns:1fr; }
  .landing-proof-strip article + article { border-top:1px solid rgba(255,255,255,.08); }
  .landing-process { grid-template-columns:1fr; }
  .landing-process article { min-height:0; }
  .landing-quote { padding:34px 24px 34px 68px; border-radius:22px; }
  .landing-quote::before { left:18px; top:12px; font-size:64px; }
  .landing-cta-panel { padding:32px 24px; border-radius:22px; }
}
@media (prefers-reduced-motion:reduce) {
  .landing-card,.landing-insight,.landing-related { transition:none!important; transform:none!important; }
}

/* =========================================================
   MOBILE PREMIUM QA PASS — 2026-09-20
   Preserve desktop; make mobile a deliberate editorial system.
   ========================================================= */
@media (max-width: 720px) {
  :root {
    --mobile-radius-xl: 24px;
    --mobile-radius-lg: 20px;
    --mobile-shadow: 0 14px 34px rgba(6,36,61,.085);
    --mobile-shadow-soft: 0 9px 24px rgba(6,36,61,.065);
  }

  /* Global rhythm and touch ergonomics */
  body { overflow-x: hidden; }
  .container { width: calc(100% - 32px); }
  .section { padding: 58px 0; }
  .section-kicker, .eyebrow { margin-bottom: 15px; letter-spacing: .15em; }
  .display-title { font-size: clamp(34px, 9vw, 42px); line-height: 1.09; letter-spacing: -.035em; }
  .section-heading { margin-bottom: 28px; }
  .section-heading > p:last-child,
  .section-copy > p,
  .credentials-copy > p:last-child,
  .framework-intro > p,
  .about-copy > p { font-size: 16px; line-height: 1.7; }
  .btn { min-height: 50px; padding: 15px 20px; }

  /* Header: compact, premium and stable while scrolling */
  .site-header { backdrop-filter: blur(20px); }
  .nav-shell { min-height: 76px; gap: 10px; }
  .site-header.is-scrolled .nav-shell { min-height: 70px; }
  .brand { gap: 10px; min-width: 0; }
  .brand img,
  .site-header.is-scrolled .brand img { width: 46px; height: 46px; border-radius: 14px; }
  .brand span { min-width: 0; }
  .brand strong { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand small { font-size: 10.5px; white-space: nowrap; }
  .menu-toggle { width: 48px; height: 48px; border-radius: 16px; box-shadow: 0 9px 24px rgba(6,36,61,.10); }
  .main-nav { top: calc(100% + 6px); border-radius: 20px; padding: 9px; box-shadow: 0 22px 55px rgba(6,36,61,.19); }
  .main-nav a { padding: 14px; }

  /* Home hero and proof: retain depth instead of flattening */
  .hero-grid { padding: 38px 0 44px; gap: 30px; }
  .hero h1 { font-size: clamp(39px, 11vw, 47px); line-height: 1.04; }
  .hero-lead { margin-top: 20px; font-size: 16px; line-height: 1.62; }
  .hero-actions { margin-top: 24px; }
  .hero-credentials {
    margin-top: 26px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  }
  .hero-credentials article { padding: 18px 19px; }
  .hero-credentials strong { font-size: 28px; }
  .hero-photo { border-radius: 26px; box-shadow: 0 26px 60px rgba(0,0,0,.26); }
  .hero-photo img { height: 410px; border-radius: 21px; }
  .proof-grid { gap: 11px; }
  .proof-card { min-height: 0; padding: 20px; border-radius: 20px; }

  /* Consistent premium surfaces across the HOME */
  .framed { padding: 26px 21px; border-radius: var(--mobile-radius-xl); box-shadow: var(--mobile-shadow); }
  .step-card,
  .content-card,
  .service-card,
  .case-card,
  .faq-card,
  .about-credentials article,
  .framework-steps article {
    border-color: rgba(9,26,43,.10);
    box-shadow: var(--mobile-shadow-soft);
  }
  .steps-grid { grid-template-columns: 1fr; gap: 11px; }
  .step-card { min-height: 0; padding: 17px; border-radius: 18px; }
  .problem-grid,
  .services-grid,
  .cases-grid,
  .faq-grid,
  .about-credentials,
  .principles-grid { gap: 14px; }
  .content-card,
  .service-card,
  .faq-card { padding: 23px 21px; border-radius: var(--mobile-radius-lg); }
  .content-card h3 { font-size: 23px; }
  .service-card h3 { font-size: 25px; }
  .service-card { overflow: hidden; }
  .service-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--teal));
    opacity: .78;
  }
  .service-card.featured { box-shadow: 0 15px 34px rgba(7,149,168,.10); }
  .case-card { border-radius: 22px; }
  .case-card > img { height: auto; aspect-ratio: 16/10; }
  .case-body { padding: 23px 21px 24px; }
  .case-body h3 { font-size: 25px; margin-bottom: 16px; }
  .result-pill { border-radius: 14px; }
  .framework-layout, .about-layout { gap: 34px; }
  .framework-value { margin-top: 24px; padding: 21px; border-radius: 18px; }
  .framework-steps { gap: 11px; }
  .framework-steps article { padding: 17px; border-radius: 18px; }
  .framework-steps h3 { font-size: 22px; }
  .about-copy .belief {
    margin-top: 24px;
    padding: 18px 18px 18px 20px;
    border: 1px solid #cfe7e9;
    border-left: 4px solid var(--teal);
    border-radius: 0 17px 17px 0;
    background: #f2f9f9;
  }
  .about-credentials article { min-height: 0; padding: 18px; border-radius: 18px; }
  .about-photo img { max-height: none; aspect-ratio: 4 / 5; border-radius: 22px; }
  .principles-grid article { min-height: 0; padding: 23px 21px; border-radius: 19px; }
  .faq-card { min-height: 0; }

  /* Contact should feel like a deliberate closing chapter */
  .contact-panel { gap: 28px; padding: 28px 21px; border-radius: 24px; box-shadow: 0 24px 56px rgba(6,36,61,.17); }
  .contact-copy h2 { font-size: clamp(35px, 10vw, 43px); }
  .contact-copy > p { font-size: 16px; line-height: 1.65; }
  .contact-form { padding: 20px; border-radius: 19px; background: rgba(255,255,255,.095); }
  .field input, .field textarea { min-height: 48px; }
  .field textarea { min-height: 124px; }

  /* Blog index: editorial cards retain their premium container on small screens */
  .blog-hero { padding: 54px 0 52px; }
  .blog-hero h1 { font-size: clamp(39px, 11vw, 47px); line-height: 1.055; }
  .blog-hero > .container > p:last-child { margin-top: 20px; font-size: 16px; line-height: 1.65; }
  .blog-grid { gap: 18px; }
  .blog-card {
    border-radius: 22px;
    border-color: rgba(9,26,43,.10);
    box-shadow: var(--mobile-shadow);
    background: #fff;
  }
  .blog-card-visual { aspect-ratio: 16 / 9; }
  .blog-card-visual span { margin: 0 0 2px 0; padding: 7px 10px; font-size: 10px; }
  .blog-card-body { padding: 22px 20px 23px; }
  .blog-card-meta { margin-bottom: 10px; font-size: 10px; line-height: 1.5; }
  .blog-card h2 { font-size: 25px; }
  .blog-card h3 { font-size: 23px; }
  .blog-card-body > p:not(.blog-card-meta) { margin: 13px 0 17px; font-size: 14px; line-height: 1.6; }
  .text-link { display: inline-flex; align-items: center; min-height: 36px; }
  .blog-cta {
    gap: 24px;
    padding: 27px 22px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: linear-gradient(145deg,#fff,#f0f8f7);
    box-shadow: var(--mobile-shadow-soft);
  }
  .blog-cta .display-title { font-size: 33px; }
  .blog-cta .btn { width: 100%; }

  /* Articles: same editorial hierarchy as desktop, deliberately re-composed */
  .article-hero { padding: 48px 0 42px; }
  .article-shell,
  .article-layout { width: calc(100% - 32px); }
  .breadcrumbs { margin-bottom: 28px; font-size: 11px; }
  .article-kicker { margin-bottom: 15px; }
  .article-hero h1 { font-size: clamp(35px, 10.2vw, 43px); line-height: 1.075; }
  .article-deck { margin-top: 20px; font-size: 16px; line-height: 1.65; }
  .article-meta { margin-top: 22px; gap: 7px 9px; line-height: 1.5; }
  .article-media-shell { width: calc(100% - 24px); margin-top: -14px; }
  .article-hero-image { border-radius: 22px; box-shadow: 0 20px 44px rgba(6,36,61,.15); }
  .article-layout { padding: 38px 0 52px; gap: 38px; }
  .article-content { font-size: 16px; line-height: 1.78; }
  .article-content > p { margin-bottom: 21px; }
  .article-content h2 { margin: 40px 0 16px; font-size: 27px; }

  /* The thesis block must never collapse into plain text on mobile. */
  .article-thesis {
    display: block !important;
    position: relative !important;
    overflow: hidden;
    margin: 30px 0 34px !important;
    padding: 30px 22px 28px 62px !important;
    border: 1px solid #d8e7ea !important;
    border-left: 4px solid var(--cyan) !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg,#edf6f7,#f7faf9) !important;
    color: var(--ink) !important;
    box-shadow: 0 12px 28px rgba(6,36,61,.065) !important;
  }
  .article-thesis::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -85px;
    top: -92px;
    border-radius: 50%;
    background: rgba(43,212,220,.08);
    pointer-events: none;
  }
  .article-thesis > span {
    left: 17px !important;
    top: 10px !important;
    color: var(--teal) !important;
    font-size: 60px !important;
    opacity: .72 !important;
  }
  .article-thesis p {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: 20px !important;
    line-height: 1.48 !important;
    letter-spacing: -.018em;
  }
  .article-callout {
    margin: 28px 0 !important;
    padding: 20px 19px !important;
    border-left-width: 4px;
    border-radius: 0 15px 15px 0;
    background: #edf9fa;
    font-size: 17px;
  }
  .article-question { font-size: 20px; line-height: 1.45; }
  .article-flow { padding: 17px; border-radius: 15px; line-height: 1.55; }
  .article-ending { margin-top: 34px !important; font-size: 22px; line-height: 1.45; }
  .article-sources { margin-top: 50px; padding-top: 28px; }
  .article-sources h2 { font-size: 24px; }
  .article-sources li { padding: 13px 0; line-height: 1.6; }
  .author-card {
    display: grid;
    grid-template-columns: 66px 1fr;
    column-gap: 16px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--mobile-shadow-soft);
  }
  .author-card img { width: 66px; height: 66px; border-radius: 17px; margin: 0; }
  .author-card h2 { font-size: 21px; }
  .author-card p:not(.section-kicker) { line-height: 1.58; }

  /* Article services: explicit card treatment, protected against inherited mobile flattening. */
  .article-services {
    padding: 52px 0 56px !important;
    background: linear-gradient(180deg,#fff 0%,#f7faf9 100%) !important;
    border-top: 1px solid var(--line) !important;
  }
  .article-services-head { margin-bottom: 24px; }
  .article-services-head h2 { font-size: 31px; line-height: 1.12; }
  .article-services-head > p:last-child { font-size: 15px; line-height: 1.6; }
  .article-services-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 13px !important; }
  .article-service-mini {
    position: relative;
    display: grid !important;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    min-height: 0 !important;
    padding: 20px !important;
    overflow: hidden;
    border: 1px solid #dce6e8 !important;
    border-radius: 20px !important;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: var(--mobile-shadow-soft) !important;
  }
  .article-service-mini::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg,var(--cyan),var(--teal));
  }
  .article-service-mini span {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: start;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .article-service-mini h3 {
    grid-column: 2;
    margin: 1px 0 7px !important;
    font-size: 20px;
    line-height: 1.25;
  }
  .article-service-mini p {
    grid-column: 2;
    margin: 0 0 10px !important;
    font-size: 13px;
    line-height: 1.55;
  }
  .article-service-mini strong {
    grid-column: 2;
    margin-top: 0 !important;
    font-size: 12.5px;
  }
  .article-next { padding: 48px 0; }
  .article-next .container { gap: 18px; }
  .article-next h2 { font-size: 30px; line-height: 1.15; }
  .article-next .btn { width: 100%; }

  /* SEO landings: visual hierarchy remains editorial rather than a long stack of text */
  .landing-hero-grid { padding: 48px 0 46px; gap: 28px; }
  .landing-hero h1 { font-size: clamp(39px, 11vw, 46px); line-height: 1.055; }
  .landing-lead { margin-top: 20px; font-size: 16px; line-height: 1.65; }
  .landing-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .landing-actions .btn { width: 100%; }
  .landing-side-panel { padding: 22px 19px; border-radius: 22px; box-shadow: 0 22px 48px rgba(0,0,0,.14); }
  .landing-side-list article { grid-template-columns: 36px 1fr; padding: 13px 0; }
  .landing-proof-strip article { padding: 19px 20px; }
  .landing-intro-grid { gap: 30px; }
  .landing-card-grid { gap: 13px; }
  .landing-card,
  .landing-process article,
  .landing-deliver,
  .landing-result,
  .landing-insight,
  .landing-related {
    min-height: 0;
    border-radius: 20px;
    box-shadow: var(--mobile-shadow-soft);
  }
  .landing-card { padding: 22px 20px; }
  .landing-card h3 { font-size: 22px; }
  .landing-quote {
    padding: 30px 21px 30px 61px;
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(6,36,61,.15);
  }
  .landing-quote::before { left: 17px; top: 10px; font-size: 60px; }
  .landing-quote p { font-size: 22px; line-height: 1.42; }
  .landing-process { gap: 12px; }
  .landing-process article { padding: 21px 19px; }
  .landing-process h3 { margin-top: 18px; font-size: 21px; }
  .landing-deliver,
  .landing-result,
  .landing-insight,
  .landing-related { padding: 22px 20px; }
  .landing-cta-panel { padding: 27px 21px; border-radius: 22px; gap: 23px; box-shadow: var(--mobile-shadow); }
  .landing-cta-panel h2 { font-size: 33px; }
  .landing-cta-panel .btn { width: 100%; }

  /* Footer: quiet, ordered and clearly separated from content */
  .site-footer { padding: 34px 0 38px; }
  .footer-grid { gap: 26px; }
  .footer-brand { min-width: 0; }
  .footer-brand img { width: 52px; height: 52px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 16px; font-size: 11px; }
  .footer-links { gap: 10px 15px; }
  .footer-meta p { line-height: 1.55; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; box-shadow: 0 12px 28px rgba(0,0,0,.20); }

  /* Touch devices should not rely on desktop hover movement for visual quality. */
  @media (hover: none) {
    .proof-card:hover,
    .content-card:hover,
    .service-card:hover,
    .case-card:hover,
    .faq-card:hover,
    .blog-card:hover,
    .article-service-mini:hover,
    .landing-card:hover,
    .landing-insight:hover,
    .landing-related:hover { transform: none; }
  }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 28px); }
  .brand strong { max-width: 205px; }
  .brand small { max-width: 205px; overflow: hidden; text-overflow: ellipsis; }
  .hero h1,
  .blog-hero h1,
  .landing-hero h1 { font-size: 40px; }
  .article-hero h1 { font-size: 37px; }
  .hero-photo img { height: 380px; }
  .blog-card-body { padding-inline: 19px; }
  .article-shell,
  .article-layout { width: calc(100% - 28px); }
  .article-media-shell { width: calc(100% - 20px); }
  .article-thesis { padding: 27px 19px 25px 57px !important; }
  .article-thesis > span { left: 14px !important; font-size: 55px !important; }
  .article-thesis p { font-size: 19px !important; }
  .article-service-mini { padding: 18px !important; grid-template-columns: 38px 1fr; column-gap: 12px; }
  .article-service-mini span { width: 35px; height: 35px; }
  .footer-nav { grid-template-columns: 1fr; }
}


/* =========================================================
   EDITORIAL / CONSULTING LANGUAGE PASS — 2026-09-20
   Preserve the approved visual system; add depth to proof and service pages.
   ========================================================= */
.service-deep-link {
  display:inline-flex;
  margin-top:18px;
  color:var(--teal);
  font-size:12px;
  font-weight:800;
  letter-spacing:.01em;
}
.case-outcome {
  margin-top:20px !important;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--ink) !important;
}

/* Credentials move as a restrained proof system, not as decorative animation. */
.logo-card img { transform-origin:center; }
.credentials-layout.section-in-view .logo-card img,
#credenciales.section-in-view .logo-card img { animation:credentialDrift 6.8s ease-in-out infinite; }
.logo-card:nth-child(2) img { animation-delay:.5s !important; }
.logo-card:nth-child(3) img { animation-delay:1s !important; }
.logo-card:nth-child(4) img { animation-delay:1.5s !important; }
.logo-card:nth-child(5) img { animation-delay:2s !important; }
@keyframes credentialDrift {
  0%,100% { transform:translateY(0) scale(1); }
  50% { transform:translateY(-4px) scale(1.012); }
}

/* Premium service pages: visually connected to the HOME, with people, proof and narrative. */
.landing-hero-grid-visual { grid-template-columns:minmax(0,1.02fr) minmax(360px,.72fr); }
.landing-profile-card {
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:rgba(255,255,255,.07);
  box-shadow:0 28px 70px rgba(0,0,0,.20);
}
.landing-profile-card figure { margin:0; aspect-ratio:4/4.25; overflow:hidden; }
.landing-profile-card figure img { width:100%; height:100%; object-fit:cover; object-position:center 24%; transform:scale(1.025); }
.landing-profile-copy {
  position:absolute;
  left:18px; right:18px; bottom:18px;
  padding:20px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  background:rgba(6,36,61,.86);
  backdrop-filter:blur(12px);
}
.landing-profile-copy p { margin:0 0 8px; color:#65edf1; font-size:10px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.landing-profile-copy strong { display:block; font-family:var(--serif); font-size:22px; line-height:1.22; }
.landing-profile-copy > span { display:block; margin-top:8px; color:#c5d8df; font-size:12px; line-height:1.5; }
.landing-profile-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.landing-profile-tags span { padding:6px 9px; border-radius:999px; background:rgba(43,212,220,.12); color:#c8f7f8; font-size:9px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.landing-proof-strip-premium { position:relative; z-index:2; }
.landing-story-grid {
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
  gap:64px;
  align-items:center;
}
.landing-story-grid-reverse { grid-template-columns:minmax(0,1.06fr) minmax(0,.94fr); }
.landing-story-media {
  margin:0;
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
  background:var(--navy);
}
.landing-story-media img { width:100%; aspect-ratio:16/11; object-fit:cover; transition:transform 600ms cubic-bezier(.2,.65,.3,1); }
.landing-story-media:hover img { transform:scale(1.025); }
.landing-person-media img { aspect-ratio:4/5; object-position:center 20%; }
.landing-story-copy .display-title { margin-bottom:22px; }
.landing-story-copy > p:not(.section-kicker) { margin:0 0 15px; color:var(--text); font-size:16px; line-height:1.72; }
.landing-story-result {
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:24px;
  align-items:center;
  margin-top:28px;
  padding:22px 24px;
  border:1px solid #cfe6e8;
  border-radius:20px;
  background:linear-gradient(135deg,#f3fbfb,#fff);
}
.landing-story-result strong { color:var(--navy); font-family:var(--serif); font-size:29px; line-height:1.08; }
.landing-story-result span { color:var(--text); font-size:13px; line-height:1.55; }
.landing-about-link { margin-top:8px; }
.landing-case-mini {
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:44px;
  align-items:end;
  padding:36px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  background:rgba(255,255,255,.055);
}
.landing-case-mini h3 { margin:14px 0 10px; color:#fff; font-family:var(--serif); font-size:30px; line-height:1.17; }
.landing-case-mini p { margin:0; color:#bfd1d8; }
.landing-case-mini-result { padding-left:28px; border-left:1px solid rgba(255,255,255,.16); }
.landing-case-mini-result strong { display:block; color:#69eef2; font-family:var(--serif); font-size:40px; line-height:1; }
.landing-case-mini-result span { display:block; margin-top:10px; color:#d3e2e7; font-size:13px; line-height:1.5; }
.landing-business-case-visual {
  padding:30px;
  border-radius:28px;
  background:var(--navy);
  color:#fff;
  box-shadow:var(--shadow);
}
.landing-business-case-visual > p { margin:0 0 20px; color:#6beef2; font-size:10px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.landing-business-case-visual ol { list-style:none; padding:0; margin:0; }
.landing-business-case-visual li { display:grid; grid-template-columns:40px 1fr; gap:13px; align-items:center; padding:16px 0; border-top:1px solid rgba(255,255,255,.12); }
.landing-business-case-visual li:first-child { border-top:0; }
.landing-business-case-visual li span { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:rgba(43,212,220,.13); color:#70edf1; font-size:9px; font-weight:800; }
.landing-business-case-visual li strong { font-size:15px; line-height:1.35; }

@media (max-width:1080px) {
  .landing-hero-grid-visual, .landing-story-grid, .landing-story-grid-reverse { grid-template-columns:1fr; }
  .landing-profile-card { max-width:660px; }
  .landing-story-media { max-width:820px; }
}
@media (max-width:720px) {
  .service-deep-link { margin-top:16px; }
  .landing-profile-card { border-radius:24px; }
  .landing-profile-card figure { aspect-ratio:4/4.5; }
  .landing-profile-copy { left:13px; right:13px; bottom:13px; padding:17px; border-radius:17px; }
  .landing-profile-copy strong { font-size:20px; }
  .landing-story-grid, .landing-story-grid-reverse { gap:28px; }
  .landing-story-media { border-radius:22px; }
  .landing-story-copy > p:not(.section-kicker) { font-size:15px; line-height:1.68; }
  .landing-story-result { grid-template-columns:1fr; gap:9px; padding:20px; border-radius:18px; }
  .landing-story-result strong { font-size:28px; }
  .landing-case-mini { grid-template-columns:1fr; gap:24px; padding:24px 20px; border-radius:22px; }
  .landing-case-mini h3 { font-size:26px; }
  .landing-case-mini-result { padding:20px 0 0; border-left:0; border-top:1px solid rgba(255,255,255,.16); }
  .landing-case-mini-result strong { font-size:34px; }
  .landing-business-case-visual { padding:23px 20px; border-radius:22px; }
}
@media (prefers-reduced-motion:reduce) {
  .credentials-layout.section-in-view .logo-card img, #credenciales.section-in-view .logo-card img { animation:none !important; }
  .landing-story-media img { transition:none !important; transform:none !important; }
}


/* 2026-09-21 — authority and desktop composition refinement */
@media (min-width:1081px) {
  .landing-hero-grid-visual {
    min-height: 690px;
    padding: 90px 0 78px;
    grid-template-columns: minmax(0,1.03fr) minmax(390px,.71fr);
    gap: 86px;
    align-items: center;
  }
  .landing-hero-grid-visual > div:first-child { padding-top: 4px; }
  .landing-hero-premium h1 { max-width: 780px; font-size: clamp(50px,4.45vw,72px); line-height: 1.055; }
  .landing-profile-card { align-self: center; max-width: 500px; justify-self: end; }
  .landing-profile-card figure { aspect-ratio: 4 / 4.12; }
  .landing-profile-copy { left: 20px; right: 20px; bottom: 20px; padding: 21px 22px; }
  .landing-profile-copy strong { font-size: 21px; line-height: 1.24; }
  .landing-profile-copy > span { font-size: 12px; line-height: 1.52; }
  .landing-proof-strip-premium article { min-height: 104px; display:flex; flex-direction:column; justify-content:center; }
  .landing-story-grid, .landing-story-grid-reverse { gap: 72px; }
  .landing-person-media { max-width: 500px; justify-self: end; width:100%; }
}


/* FINAL CLOSE — Specializations + concise evidence-led About */
.specialization-section { overflow: hidden; }
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.specialization-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #d8e6e8;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff 0%, #f5fbfb 100%);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(8, 38, 61, 0.07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.specialization-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal), #69edf0);
  opacity: .9;
}
.specialization-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 203, 211, .14), rgba(37, 203, 211, 0) 70%);
  transition: transform .45s ease;
}
.specialization-card:hover {
  transform: translateY(-5px);
  border-color: #9bdde3;
  box-shadow: 0 28px 62px rgba(8, 38, 61, 0.11);
}
.specialization-card:hover::after { transform: scale(1.12); }
.specialization-tag {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #0795a8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.specialization-card h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 39px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.specialization-card p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.specialization-card strong {
  position: relative;
  z-index: 1;
  color: #087f90;
  font-size: 14px;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.about-proof-grid article {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid #d9e6e8;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(8, 38, 61, .05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.about-proof-grid article:hover {
  transform: translateY(-3px);
  border-color: #a8dfe4;
  box-shadow: 0 18px 36px rgba(8, 38, 61, .09);
}
.about-proof-grid strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.05;
}
.about-proof-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .about-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .specialization-grid { grid-template-columns: 1fr; gap: 13px; margin-top: 24px; }
  .specialization-card { min-height: 0; padding: 27px 24px; border-radius: 22px; }
  .specialization-card h3 { font-size: 29px; }
  .specialization-card p { font-size: 14.5px; margin: 15px 0 20px; }
  .about-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .about-proof-grid article { min-height: 120px; padding: 16px 14px; border-radius: 16px; }
  .about-proof-grid strong { font-size: 24px; }
  .about-proof-grid span { font-size: 11px; }
}
@media (max-width: 430px) {
  .about-proof-grid { grid-template-columns: 1fr; }
  .about-proof-grid article { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .specialization-card,
  .specialization-card::after,
  .about-proof-grid article { transition: none !important; transform: none !important; }
}


/* 2026-09-21 — integral editorial architecture close */
.about-training {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(9,26,43,.10);
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.6;
}
.about-logos-wrap { margin-top: 44px; }
.about-logos-kicker { margin-bottom: 18px; }
.about-logo-grid .logo-card { min-height: 168px; }
.about-logo-grid .logo-card img { transition: transform .45s ease, filter .45s ease; }
.about-logo-grid .logo-card:hover img { transform: translateY(-4px) scale(1.025); filter: saturate(1.04); }
.about-proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .about-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .about-logos-wrap { margin-top: 32px; }
  .about-logo-grid .logo-card { min-height: 148px; }
  .about-training { font-size: 12.5px !important; }
}
@media (max-width: 430px) { .about-proof-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .about-logo-grid .logo-card img { transition:none !important; transform:none !important; } }

/* 2026-09-21 — FINAL MOBILE POLISH: only image scale + landing profile-card position */
@media (max-width: 640px) {
  /* HOME — keep the second portrait present, but avoid a full-screen crop on phones. */
  .about-photo {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
  .about-photo img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 22px;
  }

  /* LANDINGS — retain the premium profile plaque with only a slight overlap,
     so the portrait remains visible instead of being covered on mobile. */
  .landing-profile-card {
    overflow: hidden;
  }
  .landing-profile-card figure {
    aspect-ratio: 16 / 11;
  }
  .landing-profile-card figure img {
    object-position: 50% 22%;
    transform: scale(1.01);
  }
  .landing-profile-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -26px 13px 13px;
    padding: 17px;
    border-radius: 17px;
  }
}

/* Margentrica brand refinement */
.brand img, .footer-brand img { border-radius: 12px; }
.brand strong { letter-spacing: .025em; }
