:root {
  --ink: #272b30;
  --ink-soft: #3f474f;
  --muted: #4b545c;
  --cyan: #0097b2;
  --cyan-bright: #78b0c0;
  --cyan-pale: #e2f3f6;
  --blue: #37608b;
  --icon-1: #4e88b2;
  --icon-2: #37608b;
  --icon-3: #38628c;
  --icon-4: #78b0c0;
  --paper: #f0f3f4;
  --paper-deep: #e7ecee;
  --white: #ffffff;
  --dark: #38628c;
  --dark-soft: #38628c;
  --line: rgba(48, 48, 51, 0.12);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 80px rgba(19, 50, 54, 0.15);
  --shadow-soft: 0 18px 48px rgba(19, 50, 54, 0.1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shell: 1240px;
  --title-hero: clamp(3.15rem, 5.7vw, 5.65rem);
  --title-section: clamp(2.65rem, 4.5vw, 4.45rem);
  --title-panel: clamp(2rem, 3.2vw, 3.2rem);
  --subtitle: clamp(1.3rem, 2vw, 1.85rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 151, 178, 0.35);
  outline-offset: 3px;
}

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

.site-root {
  overflow: clip;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.ui-icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  translate: 0 -150%;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-weight: 750;
}

.skip-link:focus {
  translate: 0 0;
}

.anchor-section {
  scroll-margin-top: 76px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(240, 243, 244, 0.84);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(240, 243, 244, 0.94);
  box-shadow: 0 10px 34px rgba(23, 46, 49, 0.07);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  width: 195px;
  border-radius: 8px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  mix-blend-mode: normal;
}

.nav-links {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 10px 11px;
  color: #4d555d;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 720;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(0, 151, 178, 0.1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  translate: -50% 4px;
  transition:
    opacity 160ms ease,
    translate 160ms ease;
}

.nav-links a.active::after {
  opacity: 1;
  translate: -50% 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 780;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button span {
  font-size: 1.05em;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translate(2px, -1px);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(55, 96, 139, 0.24);
}

.button-dark:hover {
  background: #2d5278;
  box-shadow: 0 16px 34px rgba(55, 96, 139, 0.3);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button-light:hover {
  background: var(--white);
  border-color: rgba(0, 151, 178, 0.28);
}

.button-cyan {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 13px 30px rgba(0, 151, 178, 0.25);
}

.button-cyan:hover {
  background: var(--cyan-bright);
}

.nav-contact {
  min-height: 44px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.58)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(48, 48, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 48, 51, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  width: 470px;
  height: 470px;
  left: -230px;
  top: 110px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.17), transparent 68%);
}

.hero-glow-two {
  width: 640px;
  height: 640px;
  right: -280px;
  bottom: 0;
  background: radial-gradient(circle, rgba(55, 96, 139, 0.16), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 22px;
}

.hero-copy {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #227780;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(0, 151, 178, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.section-label {
  padding: 8px 14px;
  border: 1px solid rgba(0, 151, 178, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue);
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 151, 178, 0.12);
}

.hero h1 {
  max-width: 1000px;
  margin: 24px auto 22px;
  font-size: var(--title-hero);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 820;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 680px;
  background: linear-gradient(92deg, var(--blue), var(--cyan), #125a74);
  background-clip: text;
  color: transparent;
  margin-inline: auto;
  font-size: var(--subtitle);
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-proof {
  width: min(100%, 720px);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-stage {
  position: relative;
  width: min(100%, 860px);
  min-height: 590px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.stage-orbit {
  position: absolute;
  inset: 5% 2%;
  border: 1px solid rgba(0, 151, 178, 0.2);
  border-radius: 50%;
  rotate: -16deg;
  animation: orbit-breathe 4.8s ease-in-out infinite;
}

.orbit-b {
  inset: 14% 10%;
  rotate: 18deg;
  border-color: rgba(55, 96, 139, 0.16);
  animation-delay: -2.4s;
}

.product-window {
  position: relative;
  z-index: 2;
  width: min(100%, 670px);
  overflow: hidden;
  border: 1px solid rgba(48, 48, 51, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 50px 110px rgba(27, 61, 65, 0.19),
    0 4px 12px rgba(27, 61, 65, 0.06);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-top {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.product-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--dark);
  color: var(--cyan-bright);
  font-weight: 900;
}

.window-brand div,
.dashboard-heading div {
  display: flex;
  flex-direction: column;
}

.window-brand strong {
  font-size: 0.86rem;
}

.window-brand small,
.dashboard-heading small {
  color: var(--muted);
  font-size: 0.7rem;
}

.live-pill,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #f7f9f9;
  font-size: 0.68rem;
  font-weight: 760;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.12);
}

.window-body {
  min-height: 425px;
  display: grid;
  grid-template-columns: 56px 1fr;
}

.mini-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-right: 1px solid var(--line);
  background: #f7f9f9;
}

.mini-sidebar span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(48, 48, 51, 0.11);
  border-radius: 7px;
  background: var(--white);
}

.mini-sidebar span.selected {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: inset 0 0 0 6px var(--white);
}

.dashboard-content {
  min-width: 0;
  padding: 24px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-heading strong {
  margin-top: 2px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

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

.metric-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.metric-card > span {
  color: var(--muted);
  font-size: 0.65rem;
}

.metric-card strong {
  font-size: 1.38rem;
  letter-spacing: -0.05em;
}

.metric-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.metric-card small.up {
  color: #16838a;
}

.metric-card.accent {
  border-color: transparent;
  background: var(--dark);
  color: var(--white);
}

.metric-card.accent > span,
.metric-card.accent small {
  color: rgba(255, 255, 255, 0.62);
}

.dashboard-lower {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 10px;
}

.chart-card,
.activity-card {
  min-height: 180px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfc;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
}

.card-title span {
  color: #13838a;
  font-weight: 800;
}

.bar-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 15px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
}

.bar-chart i {
  flex: 1;
  height: var(--bar);
  min-height: 12px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan-bright), var(--cyan));
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
}

.activity-card > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
}

.activity-card > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  border-top: 1px solid rgba(48, 48, 51, 0.07);
  font-size: 0.62rem;
}

.activity-card > div small {
  color: var(--muted);
  font-size: 0.56rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-dot.cyan {
  background: var(--cyan);
}

.status-dot.blue {
  background: var(--blue);
}

.status-dot.dark {
  background: var(--dark);
}

.floating-status {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(48, 48, 51, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  animation: float-card 3.8s ease-in-out infinite;
}

.status-one {
  left: -5px;
  bottom: 82px;
  padding: 9px 14px 9px 9px;
}

.status-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--cyan-pale);
  color: #057983;
  font-weight: 900;
}

.floating-status div {
  display: flex;
  flex-direction: column;
}

.floating-status small {
  color: var(--muted);
  font-size: 0.62rem;
}

.floating-status strong {
  font-size: 0.75rem;
}

.status-two {
  top: 58px;
  right: -8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 10px 16px;
  animation-delay: -1.8s;
}

.status-two strong {
  color: var(--cyan);
  font-size: 1.2rem;
  letter-spacing: -0.06em;
}

.stage-logo-badge {
  position: absolute;
  right: 8%;
  bottom: 22px;
  z-index: 4;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(0, 151, 178, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 12px rgba(0, 151, 178, 0.07),
    var(--shadow-soft);
  animation: float-card 3.6s ease-in-out infinite -0.9s;
}

.stage-logo-badge img {
  width: 100%;
  mix-blend-mode: normal;
}

.capability-strip {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 900px);
  min-height: 86px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #444c52;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.capability-strip span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  color: #444c52;
  text-align: center;
}

.capability-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 62px;
}

.section-intro h2,
.about-copy h2,
.methodology-copy h2,
.contact-copy h2,
.why-heading h2,
.clara-copy h2 {
  margin: 18px 0 22px;
  font-size: var(--title-section);
  line-height: 0.96;
  letter-spacing: -0.066em;
  font-weight: 820;
}

.section-intro p,
.methodology-copy > p,
.contact-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.challenges {
  background: var(--white);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.challenge-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 28px;
  border-right: 1px solid var(--line);
}

.challenge-card:last-child {
  border-right: 0;
}

.challenge-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cyan-pale);
  color: var(--icon-2);
}

.challenge-card h3 {
  margin: auto 0 14px;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.challenge-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.impact-band {
  padding: 54px 0;
  background: var(--cyan);
  color: var(--white);
}

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

.impact-grid div {
  padding: 5px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.impact-grid div:first-child {
  padding-left: 0;
}

.impact-grid div:last-child {
  border-right: 0;
}

.impact-grid strong,
.impact-grid span {
  display: block;
}

.impact-grid strong {
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.impact-grid span {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 720;
}

.about-section {
  background:
    radial-gradient(circle at 88% 22%, rgba(0, 151, 178, 0.12), transparent 28rem),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy p {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.about-copy .large-copy {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.statement-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(120, 176, 192, 0.24), transparent 14rem),
    var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.statement-card > span {
  color: var(--cyan-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.statement-card blockquote {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.principle-list {
  width: 100%;
  margin: 20px 0 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.principle-list div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.principle-list div:last-child {
  border-right: 0;
}

.principle-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--cyan-pale);
  color: var(--icon-1);
}

.principle-list div:nth-child(2) span {
  color: var(--icon-2);
}

.principle-list div:nth-child(3) span {
  color: var(--icon-4);
}

.principle-list strong {
  margin-top: auto;
  font-size: 0.95rem;
}

.principle-list small {
  color: var(--muted);
  font-size: 0.76rem;
}

.value-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cyan-pale);
  color: var(--icon-1);
}

.value-card:nth-child(2) .value-icon {
  color: var(--icon-2);
}

.value-card:nth-child(3) .value-icon {
  color: var(--icon-3);
}

.value-card:nth-child(4) .value-icon {
  color: var(--icon-4);
}

.value-card h3 {
  margin: auto 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.solutions-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% -5%, rgba(0, 151, 178, 0.19), transparent 34rem),
    var(--dark);
  color: var(--white);
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(black, transparent 88%);
}

.solutions-section .shell {
  position: relative;
}

.section-label-light {
  border-color: rgba(120, 176, 192, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: #9ac7d2;
}

.section-intro-light p {
  color: rgba(255, 255, 255, 0.6);
}

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

.plan-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 176, 192, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.plan-card.featured {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.featured .plan-top {
  border-color: rgba(20, 36, 38, 0.18);
}

.plan-top span {
  color: var(--cyan-bright);
  font-size: 0.72rem;
  font-weight: 850;
}

.featured .plan-top span {
  color: var(--dark);
}

.plan-top small {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured .plan-top small {
  border-color: rgba(20, 36, 38, 0.2);
  color: var(--dark);
  background: rgba(255, 255, 255, 0.22);
}

.plan-card h3 {
  margin: 44px 0 16px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.plan-card > p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.featured > p {
  color: rgba(20, 36, 38, 0.74);
}

.plan-card ul {
  margin: 25px 0 35px;
  padding: 22px 0 0;
  display: grid;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.featured ul {
  border-color: rgba(20, 36, 38, 0.17);
}

.plan-card li {
  position: relative;
  padding-left: 21px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.featured li {
  color: rgba(20, 36, 38, 0.84);
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-bright);
  font-weight: 900;
}

.featured li::before {
  color: var(--dark);
}

.plan-link {
  margin-top: auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.86rem;
  font-weight: 800;
}

.featured .plan-link {
  border-color: rgba(20, 36, 38, 0.22);
}

.plan-link span {
  transition: transform 180ms ease;
}

.plan-link:hover span {
  transform: translate(3px, -3px);
}

.included-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.included-grid > div {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.included-grid > div:last-child {
  border-right: 0;
}

.included-grid > div > span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 151, 178, 0.15);
  color: var(--cyan-bright);
  font-weight: 850;
}

.included-grid strong {
  align-self: end;
  font-size: 0.9rem;
}

.included-grid p {
  align-self: start;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
}

.methodology-section {
  background: var(--white);
}

.methodology-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.8fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: center;
}

.methodology-copy > p {
  margin-bottom: 48px;
}

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

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.step-item > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: #16818a;
  font-size: 0.68rem;
  font-weight: 900;
}

.step-item h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.step-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.project-board {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-header div {
  display: flex;
  flex-direction: column;
}

.board-header small,
.board-meta small {
  color: var(--muted);
  font-size: 0.67rem;
}

.board-header strong {
  font-size: 1rem;
}

.board-header > span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cyan-pale);
  color: #087982;
  font-size: 0.65rem;
  font-weight: 850;
}

.progress-track {
  height: 7px;
  margin: 24px 0 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(48, 48, 51, 0.09);
}

.progress-track i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.board-meta {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 12px;
}

.board-meta div {
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.64);
}

.board-meta strong {
  margin-top: 3px;
  font-size: 0.88rem;
}

.board-list {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.board-list > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.board-list > div:last-child {
  border-bottom: 0;
}

.board-list > div > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
}

.board-list .done > span {
  border-color: transparent;
  background: var(--cyan-pale);
  color: #087982;
}

.board-list .active > span {
  border-color: transparent;
  background: var(--dark);
  color: var(--cyan-bright);
}

.board-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.board-list p strong {
  font-size: 0.75rem;
}

.board-list p small {
  color: var(--muted);
  font-size: 0.63rem;
}

.board-list > div > i {
  color: var(--muted);
  font-size: 0.6rem;
  font-style: normal;
}

.board-list .active > i {
  color: #07828b;
  font-weight: 800;
}

.board-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 14px;
  background: var(--dark);
  color: var(--white);
}

.board-note > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--cyan);
  color: var(--dark);
  font-size: 0.67rem;
  font-weight: 900;
}

.board-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.board-note strong {
  font-size: 0.74rem;
}

.board-note small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
}

.clients-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 151, 178, 0.1), transparent 25rem),
    var(--paper);
}

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

.testimonial-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.67);
  transition:
    transform 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.8;
}

.testimonial-card blockquote {
  margin: auto 0 24px;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.testimonial-card > div {
  display: flex;
  flex-direction: column;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.testimonial-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.use-cases {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.use-cases-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 38px 0 55px;
}

.use-cases-heading > span {
  color: #16818a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-cases-heading h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.use-case {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 18px 5px;
  border-top: 1px solid var(--line);
}

.use-case:last-child {
  border-bottom: 1px solid var(--line);
}

.use-case > span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
}

.use-case h4 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.use-case p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.use-case > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.use-case:hover > i {
  transform: translate(2px, -2px);
  background: var(--cyan);
}

.roi-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 100%, rgba(55, 96, 139, 0.26), transparent 34rem),
    var(--dark);
  color: var(--white);
}

.roi-section::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: 100px;
  border: 1px solid rgba(0, 151, 178, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(0, 151, 178, 0.04),
    0 0 0 140px rgba(0, 151, 178, 0.025);
}

.roi-section .shell {
  position: relative;
  z-index: 1;
}

.roi-shell {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.roi-form,
.roi-results {
  padding: clamp(28px, 4vw, 50px);
}

.roi-form {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
}

.form-heading > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  color: var(--cyan-bright);
  font-size: 0.66rem;
  font-weight: 900;
}

.form-heading .ui-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.form-heading div {
  display: flex;
  flex-direction: column;
}

.form-heading strong {
  font-size: 1rem;
}

.form-heading small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

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

.field-grid label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-grid label > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 720;
}

.field-grid .full-field {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea,
.field-grid select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.field-grid input,
.field-grid select {
  height: 50px;
  padding: 0 14px;
}

.field-grid textarea {
  resize: vertical;
  min-height: 110px;
  padding: 13px 14px;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.field-grid input:focus,
.field-grid textarea:focus,
.field-grid select:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.11);
}

.field-grid select option {
  color: var(--ink);
  background: var(--white);
}

.assumption {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.roi-results {
  background: rgba(255, 255, 255, 0.035);
}

.primary-result {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.primary-result > span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.primary-result > strong {
  display: block;
  margin-top: 10px;
  color: var(--cyan-bright);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

.result-track {
  height: 6px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.result-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
  transition: width 500ms ease;
}

.result-grid {
  margin: 18px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.result-grid div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
}

.result-grid div:first-child {
  grid-column: 1 / -1;
}

.result-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.result-grid strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.roi-results .button {
  width: 100%;
}

.result-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.65rem;
  text-align: center;
}

.contact-section {
  background: #38628c;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.08fr;
  gap: clamp(55px, 8vw, 115px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.contact-details {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details > * {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
}

.contact-details strong {
  margin-top: 4px;
  font-size: 0.9rem;
}

.contact-details a:hover strong {
  color: var(--cyan-bright);
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form .form-heading > span {
  border-color: var(--line);
  background: var(--cyan-pale);
  color: #087982;
}

.contact-form .form-heading small {
  color: var(--muted);
}

.contact-form .field-grid label > span {
  color: var(--ink-soft);
}

.contact-form .field-grid input,
.contact-form .field-grid textarea,
.contact-form .field-grid select {
  border-color: var(--line);
  background: #f7f9f9;
  color: var(--ink);
}

.contact-form .field-grid input::placeholder,
.contact-form .field-grid textarea::placeholder {
  color: #66717a;
}

.contact-form .field-grid input:focus,
.contact-form .field-grid textarea:focus,
.contact-form .field-grid select:focus {
  border-color: var(--cyan);
  background: var(--white);
}

.submit-button {
  width: 100%;
  margin-top: 24px;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-status.error {
  color: #b03434;
}

.form-status.success {
  color: #087982;
}

.site-footer {
  padding: 78px 0 28px;
  /*background: #38628c;
  color: var(--white);*/
}

.footer-main {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 190px;
  mix-blend-mode: normal;
}

.footer-brand a {
  width: fit-content;
  display: inline-block;
  padding: 11px 15px;
  border-radius: 15px;
  background: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  /*color: rgba(255, 255, 255, 0.84);*/
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  /*color: rgba(255, 255, 255, 0.78);*/
  font-size: 0.72rem;
}

.why-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 151, 178, 0.09), transparent 27rem),
    var(--white);
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.why-heading h2,
.clara-copy h2 {
  max-width: 800px;
  margin: 18px 0 0;
  font-size: var(--title-section);
  line-height: 0.96;
  letter-spacing: -0.066em;
  font-weight: 820;
}

.why-intro {
  padding-left: 28px;
  border-left: 2px solid var(--cyan);
}

.why-intro p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.why-intro p:last-child {
  margin-bottom: 0;
}

.why-intro strong {
  color: var(--ink);
}

.compact-value-grid {
  margin-top: 58px;
}

.compact-value-grid .value-card {
  min-height: 260px;
  padding: 22px;
  border-radius: 18px;
}

.compact-value-grid .value-card h3 {
  font-size: 1.22rem;
}

.compact-value-grid .value-card p {
  color: #4c545a;
  font-size: 0.96rem;
  line-height: 1.62;
}

.service-icon {
  font-size: 1.05rem;
}

.results-panel {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(120, 176, 192, 0.22), transparent 18rem),
    var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.results-panel h3 {
  max-width: 470px;
  margin: 15px 0 0;
  font-size: var(--title-panel);
  line-height: 1;
  letter-spacing: -0.055em;
}

.results-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.results-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.results-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-bright);
  font-weight: 900;
}

.results-panel .button {
  white-space: nowrap;
}

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

.challenge-grid-three .challenge-card {
  min-height: 320px;
}

.clara-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 0, rgba(0, 151, 178, 0.13), transparent 30rem),
    linear-gradient(180deg, var(--paper), var(--white));
}

.clara-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
}

.clara-copy > p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.72;
}

.clara-copy .clara-lead {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.17rem;
}

.clara-benefits {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.clara-benefits li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.clara-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.clara-copy .clara-slogan {
  width: fit-content;
  margin: 36px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan), #125a74);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.065em;
}

.clara-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(120, 176, 192, 0.2), transparent 16rem),
    var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.clara-panel-top,
.clara-panel-top > div,
.clara-flow {
  display: flex;
  align-items: center;
}

.clara-panel-top {
  justify-content: space-between;
  gap: 20px;
}

.clara-panel-top > div {
  gap: 12px;
}

.clara-panel-top p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.clara-panel-top small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.clara-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cyan);
  color: var(--dark);
  font-weight: 900;
}

.clara-panel .live-pill {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.64);
}

.clara-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.clara-metrics > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.clara-metrics span,
.clara-metrics small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.clara-metrics strong {
  color: var(--cyan-bright);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.clara-flow {
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 151, 178, 0.11);
}

.clara-flow span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
}

.clara-flow i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.clara-task-list {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.clara-task-list > div {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clara-task-list > div:last-child {
  border-bottom: 0;
}

.clara-task-list > div > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(120, 176, 192, 0.15);
  color: var(--cyan-bright);
  font-size: 0.7rem;
  font-weight: 900;
}

.clara-task-list .active > span {
  background: var(--cyan);
  color: var(--dark);
}

.clara-task-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.clara-task-list strong {
  font-size: 0.86rem;
}

.clara-task-list small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.clara-capabilities {
  margin-top: 105px;
  padding-top: 55px;
  border-top: 1px solid var(--line);
}

.clara-capabilities-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  align-items: start;
  gap: 35px;
  margin-bottom: 45px;
}

.clara-capabilities-heading h3 {
  max-width: 780px;
  margin: 0;
  font-size: var(--title-section);
  line-height: 1;
  letter-spacing: -0.06em;
}

.clara-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clara-capability {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.clara-capability:last-child {
  border-right: 0;
}

.clara-capability > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cyan-pale);
  color: var(--icon-1);
}

.clara-capability:nth-child(2) > span {
  color: var(--icon-2);
}

.clara-capability:nth-child(3) > span {
  color: var(--icon-3);
}

.clara-capability:nth-child(4) > span {
  color: var(--icon-4);
}

.clara-capability h4 {
  margin: auto 0 13px;
  font-size: 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.clara-capability p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.clara-evolution {
  max-width: 780px;
  margin: 35px 0 0 auto;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.6;
}

.logo-marquee {
  position: relative;
  margin: -18px 0 52px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  animation: logo-marquee 42s linear infinite;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}

.client-logo {
  width: 190px;
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px 20px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  color: #7b8083;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-logo img {
  width: 100%;
  height: 76px;
  display: block;
  object-fit: contain;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

.logo-allianz {
  --logo-scale: 3.45;
}

.logo-ci-banco {
  --logo-scale: 3.15;
}

.logo-general-seguros {
  --logo-scale: 2.85;
}

.logo-insignia {
  --logo-scale: 0.92;
}

.logo-koi {
  --logo-scale: 2.7;
}

.logo-mms {
  --logo-scale: 0.92;
}

.logo-nacional-seguros {
  --logo-scale: 2.85;
}

.logo-pan-american {
  --logo-scale: 2.55;
}

.logo-plenit {
  --logo-scale: 2.2;
}

.logo-qualitas {
  --logo-scale: 1.45;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    scale: 1;
    opacity: 0.72;
  }
  50% {
    scale: 1.035;
    opacity: 1;
  }
}

@keyframes logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .nav-links a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .nav-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.5vw, 6rem);
  }
}

@media (max-width: 1020px) {
  .site-header {
    background: rgba(240, 243, 244, 0.96);
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100dvh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 18px 24px 32px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(240, 243, 244, 0.98);
    box-shadow: 0 30px 60px rgba(20, 36, 38, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 13px 15px;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-contact {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-grid,
  .about-grid,
  .methodology-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(4rem, 10vw, 7rem);
  }

  .product-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .challenge-card:nth-child(2),
  .value-card:nth-child(2) {
    border-right: 0;
  }

  .challenge-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .impact-grid div:nth-child(2) {
    border-right: 0;
  }

  .about-grid,
  .methodology-grid {
    gap: 70px;
  }

  .about-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .plan-card {
    min-height: auto;
  }

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

  .methodology-copy {
    max-width: 780px;
  }

  .project-board {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .contact-copy {
    position: static;
    max-width: 780px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand {
    width: 132px;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.7rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    min-height: 74px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .product-stage {
    min-height: 500px;
  }

  .product-window {
    transform: none;
  }

  .dashboard-content {
    padding: 15px;
  }

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

  .metric-card.accent {
    grid-column: 1 / -1;
    min-height: 90px;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

  .floating-status {
    display: none;
  }

  .stage-orbit {
    inset: 8% -12%;
  }

  .capability-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block: 22px;
    font-size: 0.67rem;
  }

  .capability-strip i {
    display: none;
  }

  .section {
    padding-block: 90px;
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .section-intro h2,
  .about-copy h2,
  .methodology-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .challenge-grid,
  .impact-grid,
  .value-grid,
  .included-grid,
  .testimonial-grid,
  .roi-shell,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .challenge-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .challenge-card:last-child {
    border-bottom: 0;
  }

  .impact-grid div,
  .impact-grid div:first-child {
    padding: 5px 0 23px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .impact-grid div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .principle-list {
    width: calc(100% - 22px);
    grid-template-columns: 1fr;
  }

  .principle-list div {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-list div:last-child {
    border-bottom: 0;
  }

  .value-card {
    min-height: 220px;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-card h3 {
    font-size: 2.35rem;
  }

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

  .included-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .included-grid > div:last-child {
    border-bottom: 0;
  }

  .project-board {
    padding: 16px;
    border-radius: 24px;
  }

  .board-meta {
    grid-template-columns: 1fr;
  }

  .board-list > div {
    grid-template-columns: 32px 1fr;
  }

  .board-list > div > i {
    display: none;
  }

  .testimonial-card {
    min-height: 300px;
  }

  .use-cases-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .use-case {
    grid-template-columns: 38px 1fr;
  }

  .use-case > i {
    display: none;
  }

  .roi-form {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .field-grid .full-field {
    grid-column: auto;
  }

  .primary-result > strong {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .footer-links {
    gap: 35px;
  }

  .footer-bottom {
    padding-block: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 470px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .window-top {
    padding-inline: 13px;
  }

  .live-pill,
  .filter-chip {
    display: none;
  }

  .window-body {
    grid-template-columns: 42px 1fr;
  }

  .mini-sidebar {
    gap: 11px;
  }

  .mini-sidebar span {
    width: 20px;
    height: 20px;
  }

  .dashboard-heading strong {
    font-size: 0.9rem;
  }

  .metric-card {
    min-height: 106px;
  }

  .bar-chart {
    gap: 4px;
  }

  .statement-card {
    min-height: 330px;
    padding: 26px;
  }

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

  .result-grid div:first-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-track {
    animation: none;
  }

  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .logo-track > .client-logo[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1020px) {
  .why-heading,
  .clara-grid {
    grid-template-columns: 1fr;
  }

  .why-heading,
  .clara-grid {
    gap: 58px;
  }

  .why-intro {
    max-width: 760px;
  }

  .results-panel {
    grid-template-columns: 1fr 1fr;
  }

  .results-panel .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .challenge-grid-three .challenge-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .clara-panel {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .clara-capability:nth-child(2) {
    border-right: 0;
  }

  .clara-capability:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .hero-subtitle {
    font-size: clamp(1.35rem, 6.8vw, 1.9rem);
  }

  .stage-logo-badge {
    right: 6%;
    bottom: 0;
    width: 76px;
    height: 76px;
    padding: 13px;
  }

  .capability-strip span {
    padding: 9px 11px;
    white-space: normal;
  }

  .why-heading h2,
  .clara-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .why-intro {
    padding-left: 20px;
  }

  .compact-value-grid {
    margin-top: 44px;
  }

  .results-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .results-panel .button {
    grid-column: auto;
    width: 100%;
  }

  .challenge-grid-three .challenge-card:last-child {
    grid-column: auto;
  }

  .clara-metrics,
  .clara-capabilities-heading,
  .clara-capability-grid {
    grid-template-columns: 1fr;
  }

  .clara-capabilities {
    margin-top: 78px;
  }

  .clara-capabilities-heading {
    gap: 15px;
  }

  .clara-capability {
    min-height: 225px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .clara-capability:last-child {
    border-bottom: 0;
  }

  .clara-flow {
    padding: 13px;
  }

  .clara-flow span {
    padding-inline: 8px;
    font-size: 0.62rem;
  }

  .logo-marquee {
    margin-top: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    mask-image: none;
  }

  .logo-track {
    animation: none;
  }

  .logo-track > .client-logo[aria-hidden="true"] {
    display: none;
  }

  .client-logo {
    width: 150px;
    min-height: 92px;
    padding: 13px 16px;
  }

  .client-logo img {
    height: 64px;
  }
}

/* Brand and hierarchy refinements */
.challenge-card:nth-child(2) > span {
  color: var(--icon-3);
}

.challenge-card:nth-child(3) > span {
  color: var(--icon-4);
}

.section-intro p,
.methodology-copy > p,
.contact-copy > p {
  font-size: 1.1rem;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 1000px;
    font-size: var(--title-hero);
  }
}

@media (max-width: 1020px) {
  .hero-copy {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
  }

  .product-stage {
    width: min(100%, 820px);
  }
}

@media (max-width: 760px) {
  :root {
    --title-section: clamp(2.35rem, 10vw, 3.65rem);
  }

  .brand {
    width: 145px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: clamp(1.25rem, 6vw, 1.72rem);
  }

  .capability-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .principle-list {
    width: 100%;
    margin-top: 16px;
  }

  .section-intro h2,
  .about-copy h2,
  .methodology-copy h2,
  .contact-copy h2,
  .why-heading h2,
  .clara-copy h2,
  .clara-capabilities-heading h3 {
    font-size: var(--title-section);
  }

  .testimonial-card {
    min-height: 260px;
  }

  .testimonial-card blockquote {
    font-size: 1.35rem;
  }
}

@media (max-width: 470px) {
  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.5rem);
  }
}

/* Contrast and strong-blue palette */
.section-intro-light p,
.plan-card > p,
.included-grid p,
.contact-copy > p {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card li,
.form-heading small,
.field-grid label > span,
.primary-result > span,
.result-grid span,
.result-note,
.assumption,
.contact-details span {
  color: rgba(255, 255, 255, 0.8);
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form .form-heading small,
.contact-form .field-grid label > span,
.contact-form .form-status {
  color: #4b545c;
}

.contact-form .field-grid input::placeholder,
.contact-form .field-grid textarea::placeholder {
  opacity: 1;
  color: #66717a;
}

.hero-actions .button-dark,
.results-panel .button-cyan,
.roi-results .button-cyan,
.impact-grid strong,
.impact-grid span {
  color: #ffffff;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 160px;
  }
}

/* 2026-08 Hostinger redesign: centered hierarchy, fewer cards and larger copy */
:root {
  --title-unified: clamp(2.55rem, 5vw, 4.75rem);
  --body-copy: clamp(1.08rem, 1.35vw, 1.22rem);
}

main {
  text-align: center;
}

.section-title,
.hero-title {
  width: min(100%, 980px);
  margin: 20px auto 24px;
  color: inherit;
  font-size: var(--title-unified);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title {
  width: min(100%, 1080px);
}

.hero-title span {
  color: var(--cyan);
}

main p {
  font-size: var(--body-copy) !important;
  line-height: 1.72 !important;
}

main li {
  font-size: var(--body-copy);
  line-height: 1.65;
}

main small {
  font-size: 0.96rem;
  line-height: 1.45;
}

.section-label,
.eyebrow {
  justify-content: center;
  font-size: 1rem;
}

.section-intro,
.section-intro p,
.about-copy,
.about-copy p,
.why-intro,
.why-intro p,
.clara-copy,
.clara-copy > p,
.contact-copy,
.contact-copy > p {
  margin-inline: auto;
}

.brand {
  width: 215px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links a {
  font-size: 0.94rem;
}

.button {
  font-size: 1rem;
}

.hero {
  padding-top: 145px;
}

.hero-copy,
.hero-lead,
.hero-subtitle {
  margin-inline: auto;
  text-align: center;
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem) !important;
  line-height: 1.4 !important;
}

.hero-proof div {
  align-items: center;
  text-align: center;
}

.hero-proof strong {
  font-size: 1.7rem;
}

.hero-proof span,
.capability-strip {
  font-size: 0.98rem;
}

.stage-logo-badge {
  width: 190px;
  height: 82px;
  padding: 10px 14px;
  border-radius: 18px;
}

.stage-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capability-strip {
  width: min(calc(100% - 48px), 980px);
}

.about-grid,
.why-heading,
.clara-grid,
.contact-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.about-grid {
  gap: 68px;
}

.about-copy {
  width: min(100%, 920px);
}

.about-copy p,
.about-copy .large-copy {
  max-width: 860px;
  color: var(--muted);
}

.about-visual {
  width: min(100%, 930px);
  margin-inline: auto;
}

.statement-card {
  min-height: 330px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  text-align: center;
}

.statement-card blockquote {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  text-wrap: balance;
}

.principle-path {
  position: relative;
  width: min(100%, 840px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.principle-path::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
  opacity: 0.42;
}

.principle-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.principle-step > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 151, 178, 0.34);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(55, 96, 139, 0.12);
}

.principle-step .ui-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.principle-step strong {
  margin-top: 8px;
  font-size: 1.45rem;
}

.principle-step small {
  color: var(--muted);
}

.why-heading {
  gap: 28px;
}

.why-intro {
  width: min(100%, 900px);
  padding: 0;
  border: 0;
}

.value-grid,
.compact-value-grid {
  width: min(100%, 1120px);
  margin: 64px auto 0;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card,
.compact-value-grid .value-card {
  min-height: 0;
  align-items: center;
  padding: 36px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.value-card:last-child,
.compact-value-grid .value-card:last-child {
  border-right: 0;
}

.value-card:hover,
.compact-value-grid .value-card:hover {
  transform: none;
  background: rgba(0, 151, 178, 0.035);
  box-shadow: none;
}

.value-icon,
.clara-capability > span {
  width: 58px;
  height: 58px;
  margin-inline: auto;
  border-radius: 50%;
}

.value-card h3,
.compact-value-grid .value-card h3,
.challenge-list h3,
.clara-capability h4 {
  margin: 20px auto 12px;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.18;
  text-align: center;
}

.value-card p,
.compact-value-grid .value-card p {
  margin-inline: auto;
  text-align: center;
}

.results-panel {
  width: min(100%, 1000px);
  margin: 44px auto 0;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.results-panel h3 {
  max-width: 720px;
  margin-inline: auto;
}

.results-panel ul {
  width: min(100%, 560px);
  justify-items: center;
}

.results-panel li {
  padding-left: 0;
  font-size: var(--body-copy);
  text-align: center;
}

.results-panel li::before {
  position: static;
  margin-right: 9px;
}

.challenge-list {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--line);
}

.challenge-list li {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.challenge-bullet {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--blue);
}

.challenge-list h3 {
  margin-top: 0;
}

.challenge-list p {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--muted);
}

.impact-grid div {
  text-align: center;
}

.impact-grid strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.impact-grid span {
  font-size: 1.05rem;
}

.roi-section {
  isolation: isolate;
  background: #244f7a;
}

.roi-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -16px;
  background: url("../img/calculator-background.webp") center / cover no-repeat;
  filter: blur(3px) saturate(0.9);
  transform: scale(1.03);
}

.roi-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(20, 54, 88, 0.84), rgba(56, 98, 140, 0.68), rgba(0, 91, 123, 0.78));
  box-shadow: none;
}

.roi-section .section-intro {
  margin-inline: auto;
}

.roi-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(17, 44, 71, 0.58);
  box-shadow: 0 34px 90px rgba(8, 30, 52, 0.34);
  backdrop-filter: blur(18px);
}

.roi-form,
.roi-results {
  text-align: center;
}

.form-heading {
  justify-content: center;
}

.form-heading div {
  align-items: center;
  text-align: center;
}

.form-heading strong {
  font-size: 1.35rem;
}

.form-heading small,
.field-grid label > span,
.primary-result > span,
.result-grid span {
  font-size: 1rem;
}

.field-grid label {
  align-items: center;
  text-align: center;
}

.field-grid input,
.field-grid select {
  height: 58px;
  padding-inline: 16px;
  font-size: 1.1rem;
  text-align: center;
}

.field-grid textarea {
  min-height: 132px;
  font-size: 1.1rem;
  text-align: center;
}

.assumption,
.result-note {
  color: rgba(255, 255, 255, 0.86);
}

.primary-result > strong {
  color: #ffffff;
}

.result-grid {
  gap: 0;
}

.result-grid div {
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  text-align: center;
}

.result-grid strong {
  font-size: 1.8rem;
}

.clara-copy {
  width: min(100%, 940px);
}

.clara-copy .clara-lead {
  max-width: 900px;
}

.clara-benefits {
  width: min(100%, 900px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.clara-benefits li {
  padding: 18px 8px 18px 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.clara-benefits li::before {
  left: 8px;
  top: 22px;
}

.clara-copy .clara-slogan {
  margin: 38px auto 0;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem) !important;
}

.clara-panel {
  width: min(100%, 820px);
  margin-inline: auto;
}

.clara-panel p {
  font-size: var(--body-copy) !important;
}

.clara-panel small {
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.12rem);
}

.clara-panel-top,
.clara-panel-top > div,
.clara-task-list > div {
  justify-content: center;
  text-align: center;
}

.clara-capabilities {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.clara-capabilities-heading {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 20px;
}

.clara-capabilities-heading h3 {
  font-size: var(--title-unified);
  text-align: center;
}

.clara-capability-grid {
  gap: 0;
  border: 0;
}

.clara-capability {
  min-height: 0;
  align-items: center;
  padding: 34px 26px;
  border: 0;
  border-top: 2px solid rgba(0, 151, 178, 0.28);
  text-align: center;
}

.clara-capability p,
.clara-evolution {
  margin-inline: auto;
  text-align: center;
}

.logo-marquee {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.62);
}

.client-logo {
  width: 220px;
  min-height: 132px;
  padding: 24px;
  background: transparent;
}

.client-logo img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  transform: none;
}

.testimonial-card,
.testimonial-card > div {
  align-items: center;
  text-align: center;
}

.testimonial-card blockquote {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}

.contact-layout {
  gap: 58px;
}

.contact-copy {
  position: static;
  width: min(100%, 900px);
}

.contact-details {
  width: min(100%, 820px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
}

.contact-details > * {
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.contact-details span,
.contact-details strong {
  font-size: 1.05rem;
}

.contact-form {
  width: min(100%, 900px);
  margin-inline: auto;
}

.contact-form .form-heading,
.contact-form label {
  text-align: center;
}

.contact-form .field-grid label > span,
.contact-form .form-heading small {
  color: #46525b;
}

.site-footer {
  /*background: #38628c;*/
  text-align: center;
}

.footer-main {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 48px;
}

.footer-brand,
.footer-brand a {
  margin-inline: auto;
}

.footer-brand a {
  padding: 10px 16px;
}

.footer-brand img {
  width: 235px;
  max-height: 86px;
  object-fit: contain;
}

.footer-links {
  width: min(100%, 820px);
  justify-items: center;
}

.footer-links > div {
  align-items: center;
}

.footer-links strong,
.footer-links a,
.footer-bottom {
  font-size: 0.98rem;
}

.footer-links a {
  width: auto;
}

.footer-bottom {
  justify-content: center;
  flex-wrap: wrap;
}

.product-stage,
.product-window,
.roi-shell,
.contact-form,
.logo-marquee,
.footer-main,
.footer-links {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1020px) {
  .nav-links a {
    font-size: 1.08rem;
    text-align: center;
  }

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

  .value-card:nth-child(2),
  .compact-value-grid .value-card:nth-child(2) {
    border-right: 0;
  }

  .value-card:nth-child(-n + 2),
  .compact-value-grid .value-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  :root {
    --title-unified: clamp(2.25rem, 10.5vw, 3.45rem);
    --body-copy: 1.08rem;
  }

  .brand {
    width: 175px;
    height: 58px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-title,
  .section-title,
  .why-heading .section-title,
  .clara-copy .section-title,
  .contact-copy .section-title {
    font-size: var(--title-unified);
  }

  .stage-logo-badge {
    right: 3%;
    width: 142px;
    height: 68px;
  }

  .principle-path,
  .value-grid,
  .compact-value-grid,
  .clara-benefits,
  .clara-capability-grid,
  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .principle-path {
    gap: 34px;
  }

  .principle-path::before {
    top: 28px;
    bottom: 28px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
  }

  .principle-step > span {
    background: var(--paper);
  }

  .value-card,
  .compact-value-grid .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child,
  .compact-value-grid .value-card:last-child {
    border-bottom: 0;
  }

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

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

  .clara-benefits li {
    padding-inline: 34px;
  }

  .clara-capability-grid {
    gap: 10px;
  }

  .client-logo {
    width: 185px;
    min-height: 112px;
  }

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

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

/* Todos los párrafos de contenido comparten una única escala tipográfica. */
main p:not(#bigbot-paragraph-size) {
  font-size: var(--body-copy) !important;
}
