:root {
  /* Brand */
  --brand-navy: #04253f;
  --brand-cyan: #3eb4c8;

  /* Surfaces & type */
  --ink: #061824;
  --charcoal: #04253f;
  --steel: #243849;
  --slate: #4d6476;
  --muted: #5c7386;
  --paper: #f5f8fb;
  --cloud: #ffffff;
  --accent: #1496ab;
  --accent-bright: #3eb4c8;
  --accent-deep: #0e7a8c;
  --accent-soft: rgba(20, 150, 171, 0.1);
  --navy-deep: #021624;
  --navy-mid: #04253f;
  --navy-lift: #0a3552;
  --line: rgba(4, 37, 63, 0.1);
  --line-strong: rgba(4, 37, 63, 0.16);
  --shadow-soft: 0 16px 40px rgba(2, 22, 36, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --shell: min(1100px, calc(100% - 2.75rem));
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.service-title,
.pillar-title {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  max-width: 18ch;
}

h3,
.service-title,
.pillar-title {
  font-size: 1.18rem;
  font-weight: 600;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* Header
   Official logo is white+cyan — keep header dark (transparent over hero, navy when scrolled/solid). */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(2, 22, 36, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(62, 180, 200, 0.22);
  box-shadow: 0 10px 28px rgba(2, 22, 36, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
  width: clamp(160px, 30vw, 210px);
  min-height: 2.5rem;
}

.logo-img {
  width: 100%;
  height: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgba(240, 248, 252, 0.94);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav a.is-active {
  color: var(--accent-bright);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
  min-height: 2.5rem !important;
  padding: 0.5rem 1.05rem !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
  background: var(--accent-bright) !important;
  border: 1px solid transparent !important;
  color: var(--navy-deep) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #4ec2d4 !important;
  color: var(--navy-deep) !important;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.4rem;
  background: var(--cloud);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.25rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.25rem) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(62, 180, 200, 0.22);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(240, 248, 252, 0.94);
  font-weight: 600;
}

.mobile-nav a.is-active {
  color: var(--accent-bright);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--accent-bright);
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 24px rgba(20, 150, 171, 0.28);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: #4ec2d4;
  box-shadow: 0 14px 28px rgba(20, 150, 171, 0.34);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(62, 180, 200, 0.55);
  color: var(--cloud);
  box-shadow: none;
  font-weight: 600;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(62, 180, 200, 0.14);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--charcoal);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent-deep);
  box-shadow: none;
  background: var(--accent-soft);
}

.btn-dark {
  background: var(--navy-mid);
  color: var(--cloud);
  box-shadow: 0 12px 26px rgba(2, 22, 36, 0.22);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--navy-deep);
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--cloud);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 20s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 22, 36, 0.92) 0%, rgba(4, 37, 63, 0.72) 42%, rgba(4, 37, 63, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 22, 36, 0.35) 0%, rgba(2, 22, 36, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8.25rem 0 4.75rem;
  max-width: 40rem;
}

.brand-logo {
  width: min(100%, 420px);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.hero h1 {
  color: var(--cloud);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 600;
  max-width: 17ch;
  margin-bottom: 1.1rem;
}

.hero-lead {
  max-width: 38ch;
  color: rgba(220, 236, 244, 0.92);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.75rem) 0 3.5rem;
  overflow: hidden;
  background: var(--navy-mid);
  color: var(--cloud);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-deep));
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 22, 36, 0.94) 0%, rgba(4, 37, 63, 0.88) 55%, rgba(4, 37, 63, 0.78) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.page-hero h1 {
  color: var(--cloud);
  margin-bottom: 0.95rem;
}

.page-hero-lead {
  color: rgba(214, 230, 240, 0.92);
  max-width: 46ch;
  font-size: 1.08rem;
}

.page-hero .eyebrow {
  color: var(--accent-bright);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-tight {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.section-muted {
  background: var(--cloud);
  border-block: 1px solid var(--line);
}

.section-navy {
  background: var(--navy-mid);
  color: var(--cloud);
}

.section-navy h2,
.section-navy h3 {
  color: var(--cloud);
}

.section-navy .section-copy,
.section-navy .muted {
  color: rgba(206, 224, 234, 0.9);
}

.section-navy .eyebrow {
  color: var(--accent-bright);
}

.section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 42rem;
}

.section-intro-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-copy {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 52ch;
}

.section-copy .pillar-more {
  display: inline;
  margin-left: 0.35rem;
}

.muted {
  color: var(--muted);
}

/* Large visual panels (service / about pages) */
.visual-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Value props */
.highlight-grid {
  display: grid;
  gap: 2rem 2.5rem;
}

.highlight-item {
  padding: 0 0 0 1.15rem;
  border-left: 3px solid var(--accent);
}

.highlight-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.highlight-item p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 40ch;
}

/* Service links / cards (interactive) */
.pillar-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.pillar-grid--cards {
  gap: 1rem;
  border-top: 0;
}

.pillar-link {
  display: grid;
  gap: 0.45rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.pillar-link:hover,
.pillar-link:focus-visible {
  padding-left: 0.65rem;
  outline: none;
}

.pillar-link:hover .pillar-title,
.pillar-link:focus-visible .pillar-title,
.pillar-link:hover .pillar-more,
.pillar-link:focus-visible .pillar-more {
  color: var(--accent-deep);
}

.pillar-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--cloud);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.pillar-card:hover,
.pillar-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(20, 150, 171, 0.45);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.pillar-card:focus-visible {
  box-shadow: var(--shadow-soft), 0 0 0 3px var(--accent-soft);
}

.pillar-card:hover .pillar-title,
.pillar-card:focus-visible .pillar-title {
  color: var(--navy-mid);
}

.pillar-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.pillar-link p,
.pillar-card p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 42ch;
}

.pillar-more {
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Sectors — quiet text list, not pill cluster */
.sector-list {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
  max-width: 42rem;
}

.sector-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-weight: 600;
  font-size: 1.02rem;
}

/* Process steps */
.process-steps {
  list-style: none;
  display: grid;
  gap: 1.75rem 2.5rem;
  counter-reset: step;
}

.process-steps li {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  counter-increment: step;
}

.process-steps strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.process-steps strong::before {
  content: counter(step, decimal-leading-zero) " · ";
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.process-steps span {
  color: var(--muted);
  max-width: 46ch;
}

.section-navy .process-steps strong {
  color: var(--cloud);
}

.section-navy .process-steps span {
  color: rgba(206, 224, 234, 0.9);
}

.section-navy .process-steps strong::before {
  color: var(--accent-bright);
}

/* Trust signals */
.trust-row {
  display: grid;
  gap: 2rem;
}

.trust-item {
  padding: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 34ch;
}

/* CTA band */
.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 16ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Service detail layout */
.detail-layout {
  display: grid;
  gap: 3rem;
}

.detail-block h3 {
  margin-bottom: 0.75rem;
}

.detail-block + .detail-block {
  margin-top: 2.5rem;
}

.detail-block p {
  color: var(--muted);
  max-width: 56ch;
}

.include-list,
.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  max-width: 52ch;
}

.include-list li,
.check-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.include-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.two-col {
  display: grid;
  gap: 2.5rem;
}

.who-box {
  padding: 0 0 0 1.15rem;
  border-left: 3px solid var(--accent);
  background: none;
}

.who-box h3 {
  margin-bottom: 0.55rem;
}

.who-box p {
  color: var(--muted);
  font-size: 0.98rem;
}

.who-stack {
  display: grid;
  gap: 2rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.35rem;
  border-right: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  opacity: 0.55;
}

.faq-item[open] .faq-chevron {
  transform: rotate(225deg);
  margin-top: 0.5rem;
}

.faq-body {
  padding: 0 0 1.35rem;
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.98rem;
  animation: fadeUp 0.35s var(--ease);
}

/* Related services */
.related-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.related-link:hover,
.related-link:focus-visible {
  color: var(--accent-deep);
  padding-left: 0.4rem;
}

.related-link span {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.75rem;
}

.contact-meta {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.contact-meta a,
.contact-channel {
  display: grid;
  gap: 0.15rem;
  width: fit-content;
}

.contact-meta .label,
.contact-channel .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-meta .value,
.contact-channel .value {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-meta a:hover .value,
.contact-meta a:focus-visible .value,
.contact-channel:hover .value,
.contact-channel:focus-visible .value {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-bright);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.65rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--cloud);
  box-shadow: var(--shadow-soft);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--steel);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--cloud);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.form-status {
  font-size: 0.92rem;
  color: var(--accent-deep);
  font-weight: 700;
  min-height: 1.2em;
}

.map-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.96rem;
}

.map-note strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

/* About / differentiators */
.diff-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.diff-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.diff-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.diff-item p {
  color: var(--muted);
  max-width: 48ch;
}

/* Footer */
.site-footer {
  position: relative;
  border-top: 0;
  padding: 3rem 0 0;
  background: var(--navy-deep);
  color: rgba(214, 230, 240, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-deep), var(--accent-bright));
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-tagline {
  margin-top: 0.9rem;
  color: rgba(190, 212, 226, 0.8);
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-block {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.footer-block-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
}

.footer-block-icon svg {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}

.footer-block-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 248, 252, 0.94);
}

.footer-block-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(190, 212, 226, 0.78);
}

.footer-block-body p + p {
  margin-top: 0.2rem;
}

.footer-block-body a {
  color: rgba(220, 236, 244, 0.88);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}

.footer-block-body a:hover,
.footer-block-body a:focus-visible {
  color: var(--accent-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(62, 180, 200, 0.16);
  font-size: 0.84rem;
  color: rgba(170, 196, 212, 0.65);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.5rem;
}

.footer-bottom a {
  color: rgba(190, 212, 226, 0.7);
  font-weight: 600;
  font-size: 0.84rem;
  transition: color 0.25s var(--ease);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent-bright);
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: stretch;
  height: 3.75rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  animation: whatsappPresence 2.8s var(--ease) infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.26);
  animation: none;
}

.whatsapp-float:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

.whatsapp-float__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.875rem 0 1.125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.whatsapp-float__icon {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
}

.whatsapp-float__icon svg {
  display: block;
}

@keyframes whatsappPresence {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .brand-logo {
    width: min(100%, 480px);
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2.5rem;
  }

  .pillar-grid--cards {
    gap: 1.15rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .cta-band {
    grid-template-columns: 1.2fr auto;
  }

  .two-col {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.25rem;
    align-items: start;
  }

  .two-col--visual {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3.25rem;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
    padding: 1.85rem;
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2.5rem;
  }

  .section-intro-row {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }

  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2.5rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) minmax(0, 1.35fr);
    gap: 2.5rem 2.75rem;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .nav {
    margin-left: auto;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-grid--cards {
    gap: 1.25rem;
  }
}

@media (max-width: 719px) {
  .visual-panel {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    height: 3.375rem;
  }

  .whatsapp-float__text {
    font-size: 0.625rem;
    padding: 0 0.625rem 0 0.875rem;
  }

  .whatsapp-float__icon {
    width: 3.375rem;
    height: 3.375rem;
  }

  .whatsapp-float__icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .faq-body {
    animation: none;
  }
}
