:root {
  --navy-950: #082733;
  --navy-900: #0d323c;
  --navy-800: #123d49;
  --navy-700: #174e5d;
  --teal-700: #138985;
  --teal-600: #169b96;
  --teal-500: #20aaa5;
  --teal-400: #2ac2bb;
  --amber: #f2b544;
  --ice: #f2f4f5;
  --ice-50: #f8fafa;
  --line: #dfe8ea;
  --line-dark: rgba(18, 61, 73, 0.13);
  --muted: #65787e;
  --muted-2: #829298;
  --ink: #172b31;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(8, 39, 51, 0.07);
  --shadow-md: 0 22px 52px rgba(8, 39, 51, 0.11);
  --shadow-lg: 0 30px 80px rgba(8, 39, 51, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--navy-950);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4.7vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.34rem;
  font-weight: 750;
}

::selection {
  color: var(--white);
  background: var(--teal-600);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 9px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.topbar {
  color: var(--navy-800);
  background: var(--ice);
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar p span {
  margin-inline: 7px;
  color: var(--teal-500);
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--teal-700);
}

.topbar a svg {
  width: 14px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(8, 39, 51, 0.06);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-logo img {
  width: 238px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 28px);
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal-500);
  transition: right var(--transition);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  right: 0;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-button span + span {
  margin-top: 5px;
}

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

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

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--teal-500);
  border: 1px solid var(--teal-500);
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(32, 170, 165, 0.16);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  background: var(--teal-700);
  border-color: var(--teal-700);
  box-shadow: 0 14px 28px rgba(19, 137, 133, 0.2);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 43px;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.button--outline {
  color: var(--navy-800);
  background: var(--white);
  border-color: var(--line-dark);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--teal-700);
  background: var(--ice-50);
  border-color: var(--teal-500);
  box-shadow: none;
}

.button--light {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--navy-950);
  background: #eaf4f4;
  border-color: #eaf4f4;
  box-shadow: none;
}

.button--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.eyebrow {
  min-width: 0;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--teal-500);
}

.eyebrow--light {
  color: var(--teal-400);
}

.eyebrow--light span {
  background: var(--teal-400);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(32, 170, 165, 0.08), transparent 24%),
    radial-gradient(circle at 94% 80%, rgba(18, 61, 73, 0.05), transparent 27%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.hero__decor {
  position: absolute;
  border: 1px solid rgba(32, 170, 165, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero__decor--one {
  top: -240px;
  right: -190px;
  width: 610px;
  height: 610px;
  box-shadow: 0 0 0 72px rgba(32, 170, 165, 0.025), 0 0 0 150px rgba(18, 61, 73, 0.018);
}

.hero__decor--two {
  bottom: -270px;
  left: -330px;
  width: 540px;
  height: 540px;
  border-width: 60px;
  opacity: 0.55;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
  padding-block: 78px 92px;
}

.hero__copy {
  min-width: 0;
  max-width: 650px;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--teal-500);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 7px;
  z-index: -1;
  background: var(--amber);
  border-radius: 4px;
  opacity: 0.75;
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__assurances {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 23px;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__assurances svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.11);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-board {
  min-width: 0;
  position: relative;
  padding: 34px 32px 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.hero-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 128px;
  height: 5px;
  background: var(--teal-500);
  border-radius: 0 0 5px 5px;
}

.hero-board__heading span {
  display: block;
  color: var(--teal-700);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-board__heading strong {
  max-width: 420px;
  margin-top: 6px;
  display: block;
  color: var(--navy-900);
  font-size: 1.42rem;
  line-height: 1.28;
}

.symbol-story {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.symbol-story--hero {
  margin-top: 31px;
}

.symbol-step {
  min-width: 0;
  text-align: center;
}

.symbol-step__art {
  width: 75px;
  height: 75px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.symbol-step__art img {
  width: 75px;
  height: 75px;
}

.symbol-step__art--closed span,
.symbol-step__art--broken span {
  width: 67px;
  height: 67px;
  display: block;
  border: 14px solid var(--navy-700);
  border-radius: 50%;
}

.symbol-step__art--broken span {
  position: relative;
  border-color: #a9bac0;
  border-top-color: transparent;
  transform: rotate(28deg);
}

.symbol-step__art--broken span::after {
  content: "";
  position: absolute;
  top: -17px;
  right: -16px;
  width: 18px;
  height: 21px;
  background: var(--white);
  transform: rotate(-28deg);
}

.symbol-step__art--complete {
  position: relative;
}

.symbol-step__art--complete::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 3px;
  width: 21px;
  height: 21px;
  background: var(--teal-500);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(8, 39, 51, 0.15);
}

.symbol-step__art--complete::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 11px;
  z-index: 2;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.symbol-step small {
  margin-top: 10px;
  display: block;
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 800;
}

.symbol-step p {
  margin: 4px 0 0;
  color: var(--navy-900);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.3;
}

.symbol-arrow {
  margin-top: 26px;
  color: #8da1a7;
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-board__summary {
  margin: 29px 0 0;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-board__footer {
  margin-top: 21px;
  display: flex;
  gap: 22px;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-board__footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-board__footer i {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--teal-500);
  border-radius: 50%;
}

.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.value-strip__grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.value-strip article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px 18px;
  border-right: 1px solid var(--line);
}

.value-strip article:first-child {
  padding-left: 0;
}

.value-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  color: var(--teal-700);
  background: var(--ice);
  border-radius: 50%;
}

.value-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.value-strip strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.85rem;
}

.section {
  padding-block: 112px;
}

.section--soft {
  background: var(--ice-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-heading--compact {
  margin-bottom: 46px;
}

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

.service-card {
  min-height: 360px;
  padding: 27px 27px 25px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(32, 170, 165, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__top > span {
  color: #cad7da;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.09);
  border: 1px solid rgba(32, 170, 165, 0.14);
  border-radius: 12px;
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 37px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-card > a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 750;
}

.service-card > a span {
  margin-left: 5px;
  transition: margin-left var(--transition);
}

.service-card > a:hover span {
  margin-left: 10px;
}

.service-card--wide {
  min-height: 250px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  grid-column: span 3;
}

.service-card--wide .service-card__top {
  display: block;
}

.service-card--wide .service-card__top > span {
  display: none;
}

.service-card--wide h3 {
  margin-top: 0;
}

.service-card--wide > a {
  margin-top: 0;
  padding-top: 0;
  white-space: nowrap;
}

.service-card--accent {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.service-card--accent:hover {
  border-color: var(--teal-400);
}

.service-card--accent h3,
.service-card--accent .service-card__top > span {
  color: var(--white);
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.73);
}

.service-card--accent .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card--accent > a {
  color: var(--teal-400);
}

.service-card__badge {
  margin-bottom: 10px;
  display: inline-block;
  color: var(--teal-400);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(55px, 9vw, 112px);
}

.method-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.method-visual::before,
.method-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(42, 194, 187, 0.18);
  border-radius: 50%;
}

.method-visual::before {
  top: -130px;
  right: -130px;
  width: 390px;
  height: 390px;
  box-shadow: 0 0 0 45px rgba(42, 194, 187, 0.035);
}

.method-visual::after {
  bottom: -210px;
  left: -170px;
  width: 460px;
  height: 460px;
  border-width: 75px;
  opacity: 0.5;
}

.method-visual__label {
  position: absolute;
  top: 34px;
  left: 36px;
  z-index: 2;
  color: var(--teal-400);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.method-visual__symbol {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 2;
  width: 270px;
  height: 270px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  box-shadow: 0 0 0 29px rgba(255, 255, 255, 0.04), 0 0 0 62px rgba(255, 255, 255, 0.023);
  transform: translateX(-50%);
}

.method-visual__line {
  position: absolute;
  top: 389px;
  right: 60px;
  left: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.method-visual__line::before,
.method-visual__line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 11px;
  height: 11px;
  background: var(--teal-400);
  border: 3px solid var(--navy-800);
  border-radius: 50%;
}

.method-visual__line::before {
  left: 22%;
}

.method-visual__line::after {
  right: 22%;
}

.method-visual__caption {
  position: absolute;
  right: 34px;
  bottom: 37px;
  left: 34px;
  z-index: 2;
  padding: 27px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.method-visual__caption strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.3;
}

.method-visual__caption span {
  margin-top: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.method-copy__lead {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.method-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.1);
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 800;
}

.method-list strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.method-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.symbol-section {
  overflow: hidden;
}

.symbol-story--large {
  padding: 46px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.symbol-story--large .symbol-step {
  width: 20%;
}

.symbol-story--large .symbol-step__art {
  width: 120px;
  height: 120px;
}

.symbol-story--large .symbol-step__art img {
  width: 116px;
  height: 116px;
}

.symbol-story--large .symbol-step__art--closed span,
.symbol-story--large .symbol-step__art--broken span {
  width: 102px;
  height: 102px;
  border-width: 20px;
}

.symbol-story--large .symbol-step small {
  margin-top: 18px;
}

.symbol-story--large .symbol-step strong {
  margin-top: 4px;
  display: block;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.symbol-story--large .symbol-step p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.symbol-story--large .symbol-arrow {
  margin-top: 45px;
  font-size: 2rem;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.application-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.application-card:hover {
  border-color: rgba(32, 170, 165, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.application-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ice);
}

.application-card figcaption {
  padding: 19px 21px 21px;
  border-top: 1px solid var(--line);
}

.application-card figcaption strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.application-card figcaption span {
  margin-top: 4px;
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.application-card--wide {
  grid-column: span 1;
}

.identity-cta {
  margin-top: 28px;
  padding: 29px 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal-500);
  border-radius: 16px;
}

.identity-cta > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.identity-cta img {
  width: 215px;
  flex: 0 0 215px;
}

.identity-cta p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-preview {
  padding-top: 102px;
}

.brand-preview__heading {
  max-width: 760px;
  margin: 0 auto 47px;
  text-align: center;
}

.brand-preview__heading .eyebrow {
  justify-content: center;
}

.logo-uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.logo-use {
  min-height: 245px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.logo-use > div {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--ice-50);
  border-radius: 11px;
}

.logo-use img {
  max-width: 100%;
  max-height: 120px;
}

.logo-use__vertical {
  max-height: 145px !important;
}

.logo-use > span {
  margin-top: 15px;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
}

.logo-use--dark > div {
  background: var(--navy-800);
}

.logo-use--symbol img {
  width: 105px;
  height: 105px;
}

.plan-section {
  padding-block: 0 112px;
}

.plan-card {
  position: relative;
  padding: 38px 43px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background: linear-gradient(115deg, var(--navy-800), var(--navy-950));
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: -210px;
  right: 10%;
  width: 450px;
  height: 450px;
  border: 80px solid rgba(42, 194, 187, 0.08);
  border-radius: 50%;
}

.plan-card__mark {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.plan-card__mark img {
  width: 62px;
}

.plan-card__copy {
  position: relative;
  z-index: 2;
}

.plan-card__copy > span {
  color: var(--teal-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.plan-card h2 {
  margin-top: 7px;
  color: var(--white);
  font-size: 2.2rem;
}

.plan-card p {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.plan-card > .button {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(55px, 9vw, 110px);
}

.faq-intro h2 {
  max-width: 420px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 400px;
  margin: 23px 0 0;
  color: var(--muted);
}

.faq-intro > a {
  margin-top: 27px;
  display: inline-block;
  color: var(--teal-700);
  font-size: 0.88rem;
  font-weight: 750;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 2px;
  background: var(--teal-700);
  content: "";
  transform: translateY(-50%);
  transition: transform var(--transition);
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 22px;
  padding-right: 45px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 105px;
  background: var(--navy-800);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -180px;
  width: 610px;
  height: 610px;
  border: 90px solid rgba(42, 194, 187, 0.07);
  border-radius: 50%;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -330px;
  left: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(255, 255, 255, 0.018);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1.3fr);
  align-items: center;
  gap: clamp(55px, 8vw, 96px);
}

.contact-intro h2 {
  color: var(--white);
}

.contact-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact-panel {
  padding: 31px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.contact-panel__logo {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.contact-panel__logo img {
  width: 220px;
}

.contact-details {
  margin: 22px 0 0;
  padding: 0 0 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.contact-details li {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: flex-start;
}

.contact-details li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.09);
  border-radius: 10px;
}

.contact-details svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details small {
  display: block;
  color: var(--muted-2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details a {
  margin-top: 2px;
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.contact-details a:hover {
  color: var(--teal-700);
}

.quick-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.quick-form label {
  margin-bottom: 13px;
  display: block;
}

.quick-form label > span {
  margin-bottom: 6px;
  display: block;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 700;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  color: var(--navy-900);
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.quick-form input,
.quick-form select {
  height: 46px;
  padding: 0 13px;
}

.quick-form textarea {
  min-height: 102px;
  padding: 12px 13px;
  resize: vertical;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  background: var(--white);
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(32, 170, 165, 0.11);
}

.quick-form [aria-invalid="true"] {
  border-color: #b94a48;
  box-shadow: 0 0 0 3px rgba(185, 74, 72, 0.1);
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-status {
  min-height: 18px;
  color: #a63d3b;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer__grid {
  padding-block: 58px 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.9fr 1fr;
  gap: 50px;
}

.footer-logo img {
  width: 225px;
}

.footer__brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 0.86rem;
}

.footer__links strong {
  margin-bottom: 17px;
  display: block;
  color: var(--white);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links a {
  margin-top: 9px;
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal-400);
}

.footer__bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-700);
}

.back-to-top svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: #8b3d3d;
  border-radius: 10px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay,
.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 260ms;
}

/* Brand center */
.brand-page .hero {
  background: var(--ice-50);
}

.brand-hero {
  padding-block: 78px 85px;
  border-bottom: 1px solid var(--line);
}

.brand-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.brand-hero h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.brand-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.brand-hero__logo {
  padding: 48px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.brand-hero__logo img {
  width: 100%;
}

.brand-download-bar {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-board-section {
  border-bottom: 1px solid var(--line);
}

.brand-board-preview {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.brand-board-preview > a {
  display: block;
  padding: 18px;
  background: var(--white);
}

.brand-board-preview img {
  width: 100%;
  height: auto;
}

.brand-board-preview figcaption {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.brand-board-preview figcaption a {
  color: var(--teal-700);
  font-weight: 800;
}

.brand-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.brand-asset-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.brand-asset-card__preview {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 38px;
  background: var(--ice-50);
}

.brand-asset-card__preview img {
  max-height: 155px;
}

.brand-asset-card__preview--dark {
  background: var(--navy-800);
}

.brand-asset-card__preview--vertical img {
  max-height: 220px;
}

.brand-asset-card__meta {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.brand-asset-card__meta strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}

.brand-asset-card__meta span {
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
}

.download-links {
  display: flex;
  gap: 8px;
}

.download-links a {
  min-width: 43px;
  padding: 8px 10px;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.09);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.download-links a:hover {
  color: var(--white);
  background: var(--teal-700);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.color-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.color-card__swatch {
  height: 150px;
}

.color-card__meta {
  padding: 18px;
}

.color-card__meta strong {
  display: block;
  color: var(--navy-900);
}

.color-card__meta code {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.82rem;
}

.type-card {
  padding: 45px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.type-card h3 {
  font-size: 2.4rem;
}

.type-card__sample {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.type-card__alphabet {
  margin-top: 25px;
  color: var(--muted);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

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

.usage-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.usage-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.1);
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.usage-card h3 {
  margin-top: 22px;
}

.usage-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.social-assets-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
  gap: 18px;
}

.social-asset {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.social-asset img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.social-asset--banner img {
  aspect-ratio: 16 / 9;
}

.social-asset__meta {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.social-asset__meta strong {
  display: block;
  color: var(--navy-900);
}

.social-asset__meta a {
  margin-top: 7px;
  display: inline-block;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .header-logo img {
    width: 205px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 470px;
    gap: 48px;
  }

  .value-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip article:nth-child(3) {
    border-right: 0;
  }

  .value-strip article:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .value-strip article:nth-child(4) {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 55px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .topbar__inner p {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(36px + var(--header-height));
    right: 0;
    left: 0;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 38px rgba(8, 39, 51, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: max-height 350ms ease, opacity 200ms ease;
  }

  .main-nav.is-open {
    max-height: 540px;
    padding: 16px 20px 22px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a:not(.button) {
    padding: 13px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 16px;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 70px 78px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-board {
    max-width: 680px;
  }

  .section-heading,
  .method-grid,
  .faq-grid,
  .contact-grid,
  .brand-hero__grid,
  .type-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--wide {
    grid-column: span 2;
  }

  .method-visual {
    max-width: 560px;
    min-height: 560px;
  }

  .symbol-story--large {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 28px;
  }

  .symbol-story--large .symbol-step {
    min-width: 150px;
  }

  .applications-grid,
  .logo-uses-grid,
  .palette-grid,
  .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card {
    grid-template-columns: auto 1fr;
  }

  .plan-card > .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-intro {
    max-width: 680px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.6fr 1fr;
  }

  .footer__links:last-child {
    grid-column: 3;
  }

  .brand-assets-grid {
    grid-template-columns: 1fr;
  }

  .social-assets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-asset--banner {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-logo img {
    width: 190px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
  }

  .hero__grid {
    padding-block: 56px 64px;
    gap: 42px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .eyebrow span {
    margin-top: .48em;
    flex: 0 0 28px;
  }

  .hero-board {
    padding: 30px 20px 23px;
  }

  .symbol-story--hero {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 15px;
    padding-bottom: 8px;
  }

  .symbol-story--hero .symbol-step {
    min-width: 90px;
  }

  .symbol-story--hero .symbol-arrow {
    min-width: 18px;
  }

  .value-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip article,
  .value-strip article:first-child,
  .value-strip article:nth-child(4) {
    padding: 20px 12px;
    border-top: 1px solid var(--line);
  }

  .value-strip article:nth-child(1),
  .value-strip article:nth-child(2) {
    border-top: 0;
  }

  .value-strip article:nth-child(2n) {
    border-right: 0;
  }

  .value-strip article:nth-child(2n+1) {
    border-right: 1px solid var(--line);
  }

  .value-strip article:last-child {
    grid-column: span 2;
    justify-content: center;
    border-right: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .services-grid,
  .applications-grid,
  .logo-uses-grid,
  .palette-grid,
  .usage-grid,
  .social-assets-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--wide {
    min-height: 0;
    grid-column: auto;
    display: flex;
  }

  .service-card--wide h3 {
    margin-top: 29px;
  }

  .service-card--wide > a {
    margin-top: 28px;
  }

  .method-visual {
    min-height: 500px;
  }

  .method-visual__symbol {
    width: 220px;
    height: 220px;
  }

  .method-visual__line {
    top: 340px;
  }

  .symbol-story--large {
    padding-inline: 22px;
  }

  .identity-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .identity-cta > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .identity-cta img {
    width: 210px;
    flex-basis: auto;
  }

  .plan-section {
    padding-bottom: 82px;
  }

  .plan-card {
    padding: 32px 27px;
    grid-template-columns: 1fr;
  }

  .plan-card__mark {
    width: 72px;
    height: 72px;
  }

  .plan-card > .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .contact-section {
    padding-block: 80px;
  }

  .contact-panel {
    padding: 24px 19px;
  }

  .contact-details,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__links:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand-hero {
    padding-block: 60px;
  }

  .brand-hero__logo {
    padding: 34px 25px;
  }

  .brand-asset-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .type-card {
    padding: 29px;
    gap: 30px;
  }

  .social-asset--banner {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .topbar__inner {
    justify-content: center;
  }

  .header-logo img {
    width: 168px;
  }

  .hero__actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero__assurances {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-board__footer {
    flex-wrap: wrap;
  }

  .value-strip__grid {
    grid-template-columns: 1fr;
  }

  .value-strip article,
  .value-strip article:nth-child(2n),
  .value-strip article:nth-child(2n+1),
  .value-strip article:first-child,
  .value-strip article:last-child {
    grid-column: auto;
    justify-content: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .value-strip article:first-child {
    border-top: 0;
  }

  .method-visual {
    min-height: 470px;
  }

  .method-visual__symbol {
    top: 82px;
    width: 190px;
    height: 190px;
    padding: 28px;
  }

  .method-visual__line {
    top: 311px;
  }

  .method-visual__caption {
    right: 22px;
    bottom: 24px;
    left: 22px;
    padding: 21px;
  }

  .method-visual__caption strong {
    font-size: 1.12rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 620px) {
  .brand-board-preview > a {
    padding: 6px;
  }

  .brand-board-preview figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* Brand center: downloadable one-page visual summary */
.guide-summary-card {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.guide-summary-card__copy h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.guide-summary-card__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
}

.guide-summary-card__preview {
  display: block;
  overflow: hidden;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(10, 42, 51, 0.09);
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-summary-card__preview:hover,
.guide-summary-card__preview:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 42, 51, 0.14);
}

.guide-summary-card__preview img {
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .guide-summary-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   ACTUALIZACIÓN OPERATIVA V3
   Horarios, cobertura, WhatsApp, equipo y formulario directo
   ========================================================= */

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

.topbar__links a:first-child {
  color: var(--teal-700);
}

.topbar__links a svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-facts {
  padding-block: 74px;
  background: var(--ice-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-facts__heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(36px, 7vw, 90px);
}

.service-facts__heading h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.service-facts__heading > p {
  margin: 0;
  color: var(--muted);
}

.service-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-fact {
  min-height: 245px;
  padding: 30px 27px;
  border-right: 1px solid var(--line);
}

.service-fact:last-child {
  border-right: 0;
}

.service-fact__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: rgba(32, 170, 165, 0.09);
  border-radius: 12px;
}

.service-fact__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-fact small {
  display: block;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.service-fact strong {
  margin-top: 8px;
  display: block;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-fact p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.service-facts__note {
  margin-top: 17px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  background: rgba(242, 181, 68, 0.11);
  border: 1px solid rgba(242, 181, 68, 0.28);
  border-radius: 12px;
  font-size: 0.82rem;
}

.service-facts__note a {
  flex: 0 0 auto;
  color: var(--navy-900);
  font-weight: 750;
}

.service-facts__note a:hover {
  color: var(--teal-700);
}

.scope-note {
  margin-top: 28px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  color: var(--muted);
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  border-radius: 14px;
}

.scope-note__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.scope-note__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-note strong {
  display: block;
  color: var(--navy-900);
  font-size: 1rem;
}

.scope-note p {
  margin: 5px 0 0;
  line-height: 1.6;
}

.scope-note small {
  margin-top: 7px;
  display: block;
  color: var(--muted-2);
  line-height: 1.55;
}

.team-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(52px, 8vw, 105px);
}

.team-card {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.team-card::before,
.team-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.team-card::before {
  width: 360px;
  height: 360px;
  top: -170px;
  right: -150px;
  border: 60px solid rgba(42, 194, 187, 0.1);
}

.team-card::after {
  width: 230px;
  height: 230px;
  bottom: -120px;
  left: -90px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}

.team-card__mark {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.team-card__line {
  position: absolute;
  z-index: 2;
  width: 118px;
  height: 5px;
  margin-top: 154px;
  background: var(--teal-500);
  border-radius: 999px;
}

.team-card > img {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 62px;
}

.team-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.team-profile {
  margin-top: 31px;
  padding: 18px 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.team-profile__initials {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 12px;
  font-weight: 800;
}

.team-profile strong,
.team-profile span {
  display: block;
}

.team-profile strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.team-profile span {
  margin-top: 1px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.team-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact-response-note {
  margin-top: 27px;
  padding: 14px 16px;
  display: inline-flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.84rem;
}

.contact-response-note strong {
  color: var(--teal-400);
}

.contact-detail--wide {
  grid-column: span 2;
}

.checkbox-field {
  margin: 11px 0 0 !important;
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: flex-start;
  gap: 9px;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal-600);
}

.checkbox-field > span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox-field a {
  color: var(--teal-700);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-field--optional {
  margin-bottom: 15px !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status.is-success {
  color: #14745f;
}

.form-status.is-error {
  color: #a63d3b;
}

.whatsapp-followup {
  margin: 10px auto 0;
  width: fit-content;
  display: block;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.whatsapp-followup[hidden] {
  display: none;
}

.footer__links span {
  margin-top: 9px;
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 952;
  min-height: 48px;
  padding: 0 17px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #178a6f;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(8, 39, 51, 0.22);
  font-size: 0.83rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  background: #11755e;
  box-shadow: 0 18px 40px rgba(8, 39, 51, 0.28);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-contact-bar {
  display: none;
}

/* Legal and policy pages */
.legal-page {
  background: var(--ice-50);
}

.legal-hero {
  padding-block: 74px 62px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-hero__inner {
  max-width: 860px;
}

.legal-hero h1 {
  max-width: 840px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-section {
  padding-block: 72px 95px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 55px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.legal-nav strong {
  display: block;
  margin-bottom: 11px;
  color: var(--navy-900);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-nav a {
  padding: 7px 0;
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-nav a:hover {
  color: var(--teal-700);
}

.legal-content {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 15px 0 0;
}

.legal-content ul {
  margin: 15px 0 0;
  padding-left: 20px;
}

.legal-callout {
  margin-top: 22px;
  padding: 18px 20px;
  color: var(--navy-900);
  background: rgba(32, 170, 165, 0.08);
  border-left: 4px solid var(--teal-500);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.legal-updated {
  margin-top: 20px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

@media (max-width: 1120px) {
  .service-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-fact:nth-child(2) {
    border-right: 0;
  }

  .service-fact:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    justify-content: space-between;
  }

  .topbar__inner > p {
    display: block;
    max-width: 62%;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .topbar__links a:last-child {
    display: none;
  }

  .service-facts__heading,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-card {
    min-height: 380px;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  body:not(.brand-page):not(.legal-page) {
    padding-bottom: 67px;
  }

  .service-facts {
    padding-block: 62px;
  }

  .service-facts__heading {
    margin-bottom: 28px;
    gap: 17px;
  }

  .service-facts__grid {
    grid-template-columns: 1fr;
  }

  .service-fact,
  .service-fact:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .service-fact:first-child {
    border-top: 0;
  }

  .service-facts__note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scope-note {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 340px;
  }

  .team-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .team-actions .button {
    width: 100%;
  }

  .contact-detail--wide {
    grid-column: auto;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(8, 39, 51, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    min-width: 0;
    padding: 8px 5px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-right: 1px solid var(--line);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:nth-child(2) {
    color: var(--white);
    background: #178a6f;
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
  }

  .mobile-contact-bar svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }

  .legal-section {
    padding-block: 52px 78px;
  }

  .legal-content {
    padding: 25px 21px;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > p {
    display: none;
  }

  .topbar__links a:first-child {
    display: inline-flex;
  }

  .team-profile {
    width: 100%;
  }
}

/* Ajuste final: la explicación del símbolo se muestra completa en móvil, sin desplazamiento lateral. */
@media (max-width: 720px) {
  .symbol-story--hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 26px 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .symbol-story--hero .symbol-step {
    min-width: 0;
  }

  .symbol-story--hero .symbol-arrow {
    display: none;
  }

  .symbol-story--hero .symbol-step__art,
  .symbol-story--hero .symbol-step__art img {
    width: 70px;
    height: 70px;
  }

  .symbol-story--hero .symbol-step__art--closed span,
  .symbol-story--hero .symbol-step__art--broken span {
    width: 62px;
    height: 62px;
    border-width: 13px;
  }
}
