:root {
  --navy-950: #031f42;
  --navy-900: #073364;
  --navy-800: #074483;
  --navy-700: #0d5aa0;
  --teal-700: #078b98;
  --teal-600: #08a7b4;
  --teal-500: #19bdc9;
  --teal-300: #7edce1;
  --sky-100: #e9f8fa;
  --sky-50: #f5fbfc;
  --gold: #f2b705;
  --ink: #0d2541;
  --muted: #5d6d80;
  --line: #dce8ef;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(6, 45, 83, 0.07);
  --shadow-md: 0 24px 64px rgba(6, 45, 83, 0.12);
  --shadow-lg: 0 38px 96px rgba(1, 31, 66, 0.19);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 48%, #ffffff 100%);
  font-family: "Segoe UI Variable Text", Aptos, Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold) 0 42%, var(--teal-500) 42% 100%);
}

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

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

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Aptos Display", Aptos, "Segoe UI", system-ui, sans-serif;
  color: var(--navy-950);
  line-height: 1.08;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 760;
}

h1 em,
h2 em {
  color: var(--teal-600);
  font-style: normal;
}

.section-heading > p,
.section-intro {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 10px 24px rgba(7, 68, 131, 0.18);
}

.button-primary:hover {
  background: var(--navy-950);
  box-shadow: 0 14px 30px rgba(7, 68, 131, 0.25);
}

.button-accent {
  color: var(--white);
  background: linear-gradient(135deg, #057c87, #087f8c);
  box-shadow: 0 16px 35px rgba(5, 124, 135, 0.24);
}

.button-accent:hover {
  box-shadow: 0 20px 42px rgba(8, 167, 180, 0.35);
}

.button-ghost {
  color: var(--navy-800);
  border-color: rgba(7, 68, 131, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.button-ghost:hover {
  border-color: var(--navy-700);
  background: var(--white);
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 12, 30, 0.22);
}

.button-white:hover {
  color: var(--navy-950);
  box-shadow: 0 20px 44px rgba(0, 12, 30, 0.3);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  top: -38px;
  z-index: 50;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-950);
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.79rem;
  font-weight: 650;
}

.utility-inner a,
.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-inner a {
  gap: 7px;
  transition: color 180ms ease;
}

.utility-inner a:hover {
  color: var(--teal-300);
}

.utility-inner svg {
  width: 15px;
  height: 15px;
}

.nav-shell {
  border-bottom: 1px solid rgba(7, 68, 131, 0.08);
  box-shadow: 0 8px 28px rgba(3, 31, 66, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 79, 129, 0.1);
  background: rgba(255, 255, 255, 0.965);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease;
}

/* Social QR gallery */
.social-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 189, 201, 0.13), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(7, 68, 131, 0.1), transparent 28%),
    linear-gradient(145deg, #f7fcfd, #edf7fa);
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 26px;
  pointer-events: none;
  border: 1px solid rgba(7, 68, 131, 0.08);
  border-radius: 42px;
}

.social-qr-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.social-qr-card {
  min-width: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(7, 68, 131, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(3, 31, 66, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-qr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 167, 180, 0.35);
  box-shadow: 0 24px 55px rgba(3, 31, 66, 0.14);
}

.qr-frame {
  display: grid;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(7, 68, 131, 0.07);
  border-radius: 18px;
  background: #fff;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.social-qr-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .social-qr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .social-section::before { inset: 12px; border-radius: 28px; }
  .social-qr-grid { grid-template-columns: 1fr; gap: 16px; }
  .social-qr-card { width: min(100%, 360px); margin-inline: auto; padding: 18px; }
}

.nav-shell.is-scrolled {
  box-shadow: 0 10px 30px rgba(2, 31, 66, 0.1);
}

.credential-ribbon {
  position: relative;
  z-index: 45;
  border-bottom: 1px solid rgba(7, 68, 131, 0.1);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 6px 18px rgba(3, 31, 66, 0.04);
}

.credential-ribbon-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(210px, 0.9fr) minmax(190px, 0.85fr) minmax(390px, 1.7fr);
  align-items: center;
  gap: 0;
}

.credential-item,
.credential-iso {
  min-width: 0;
  height: 50px;
  display: flex;
  align-items: center;
}

.credential-item {
  gap: 10px;
  padding-inline: 18px;
  border-right: 1px solid rgba(7, 68, 131, 0.1);
}

.credential-item:first-child {
  padding-left: 0;
  padding-right: 32px;
}

.credential-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.institution-mark {
  width: 54px;
  height: 36px;
  flex: 0 0 54px;
  margin-top: 0 !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(8, 151, 164, 0.34);
  border-radius: 11px;
  color: var(--teal-700) !important;
  background: transparent;
  font-size: 0.58rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em;
}

.credential-iso {
  justify-content: center;
  padding-left: 16px;
  flex-direction: column;
}

.credential-iso-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.credential-iso .iso-seal {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  padding: 9px 6px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  row-gap: 1px;
  overflow: hidden;
  border: 1px solid var(--teal-600);
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--white);
  text-align: center;
  box-shadow:
    0 0 0 2px var(--white),
    0 0 0 3px var(--navy-700);
}

.credential-iso .iso-seal > span {
  width: 100%;
  margin: 0 !important;
  display: block;
  color: var(--teal-700);
  font-size: 0.4rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.credential-iso .iso-seal > strong {
  width: 100%;
  margin: 0;
  display: block;
  color: var(--navy-800);
  font-size: 0.47rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
}

.credential-iso > span {
  display: block;
  color: #61758b;
  font-size: 0.58rem;
  font-weight: 650;
  line-height: 1.2;
}

.credential-iso span {
  margin-top: 1px;
  letter-spacing: 0.015em;
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.brand-emblem {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("./assets/vitalis-marca.jpeg");
  background-position: 1.5% 48%;
  background-repeat: no-repeat;
  background-size: 128px auto;
  box-shadow: 0 5px 15px rgba(7, 68, 131, 0.1);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--navy-800);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy strong {
  color: var(--navy-800);
  font-family: "Aptos Display", Aptos, sans-serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--teal-600);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  color: #29425d;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  padding: 11px 17px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy-800);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 76px 98px;
  background:
    linear-gradient(90deg, rgba(248, 252, 253, 0.97) 0%, rgba(240, 249, 251, 0.9) 48%, rgba(229, 244, 248, 0.58) 100%),
    url("./assets/hero-background.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(7, 68, 131, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 68, 131, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, black 72%, black 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #50657a;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  max-width: 650px;
  margin-top: 42px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 68, 131, 0.15);
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
  border-right: 1px solid rgba(7, 68, 131, 0.14);
}

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

.hero-trust > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-trust strong {
  color: var(--navy-800);
  font-family: "Aptos Display", Aptos, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-trust span {
  color: #617286;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 455px);
}

.visual-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(3, 31, 66, 0.13));
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 235px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 22%;
  left: -72px;
}

.floating-card-bottom {
  right: -28px;
  bottom: 7%;
}

.floating-card > span:last-child {
  display: grid;
  color: #647489;
  font-size: 0.75rem;
  line-height: 1.4;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 0.86rem;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-500));
}

.floating-icon svg {
  width: 21px;
  height: 21px;
}

.pulse-dot {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #24bd7f;
  box-shadow: 0 0 0 5px rgba(36, 189, 127, 0.14);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(8, 167, 180, 0.23);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 570px;
  height: 570px;
  top: 40px;
  right: -110px;
}

.hero-orbit-two {
  width: 380px;
  height: 380px;
  right: -10px;
  bottom: -170px;
}

/* Quick actions */
.quick-actions {
  position: relative;
  z-index: 5;
  margin-top: -36px;
  background:
    linear-gradient(rgba(242, 249, 251, 0.82), rgba(242, 249, 251, 0.82)),
    url("./assets/quick-background.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 68, 131, 0.09);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.quick-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 27px;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item:hover {
  color: var(--white);
  background: var(--navy-800);
}

.quick-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--teal-700);
  background: var(--sky-100);
  transition: color 180ms ease, background-color 180ms ease;
}

.quick-item:hover .quick-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.quick-item > span:nth-child(2) {
  display: grid;
  line-height: 1.3;
}

.quick-item small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.quick-item:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.quick-item strong {
  color: var(--navy-900);
  font-size: 1rem;
  transition: color 180ms ease;
}

.quick-item:hover strong {
  color: var(--white);
}

.quick-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--teal-600);
  transition: color 180ms ease, transform 180ms ease;
}

.quick-item:hover .quick-arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* Services */
.services {
  position: relative;
  padding-top: 128px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9)),
    url("./assets/services-team.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.service-tabs {
  width: fit-content;
  margin: 0 auto 44px;
  padding: 7px;
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f4f9fb;
}

.service-tab {
  min-width: 180px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 0;
  border-radius: 12px;
  color: #4b6075;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.service-tab svg {
  width: 20px;
  height: 20px;
}

.service-tab.is-active {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 9px 20px rgba(7, 68, 131, 0.18);
}

.service-panel[hidden] {
  display: none;
}

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

.service-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(6, 45, 83, 0.035);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border: 18px solid rgba(25, 189, 201, 0.08);
  border-radius: 50%;
  transition: transform 280ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(8, 167, 180, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-500));
  box-shadow: 0 12px 24px rgba(8, 167, 180, 0.2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(7, 68, 131, 0.13);
  font-family: "Aptos Display", Aptos, sans-serif;
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.67;
}

/* Occupational */
.occupational {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(241, 249, 252, 0.91), rgba(241, 249, 252, 0.86)),
    url("./assets/occupational-background.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.occupational-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.83fr) minmax(0, 1.17fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.occupational-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
  padding: 15px 15px 0 0;
}

.occupational-visual::before {
  content: "";
  position: absolute;
  inset: -14px 0 26px 40px;
  border: 2px solid rgba(8, 167, 180, 0.24);
  border-radius: 32px;
  transform: rotate(4deg);
}

.poster-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster-note {
  position: absolute;
  z-index: 2;
  right: -58px;
  bottom: 48px;
  width: 225px;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.poster-note span,
.poster-note strong {
  display: block;
}

.poster-note span {
  margin-bottom: 4px;
  color: var(--teal-300);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.poster-note strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.occupational-copy {
  max-width: 620px;
}

.benefit-list {
  margin-block: 34px 36px;
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-check {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-600);
  box-shadow: 0 8px 18px rgba(8, 167, 180, 0.22);
}

.benefit-check svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.benefit-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 1.04rem;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-800);
  font-weight: 800;
}

.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* Results */
.results-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 31, 66, 0.93) 0%, rgba(3, 31, 66, 0.87) 50%, rgba(3, 31, 66, 0.76) 100%),
    url("./assets/results-consulting.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.results-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -230px;
  right: -180px;
  border-radius: 50%;
  background: rgba(25, 189, 201, 0.15);
  filter: blur(8px);
}

.results-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.results-copy {
  max-width: 600px;
}

.results-section h2 {
  color: var(--white);
}

.results-section h2 em {
  color: var(--teal-300);
}

.results-copy > p:not(.results-help) {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.75;
}

.steps-list {
  margin: 35px 0 38px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.steps-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(126, 220, 225, 0.36);
  border-radius: 50%;
  color: var(--teal-300);
  font-size: 0.86rem;
  font-weight: 850;
}

.steps-list div {
  display: grid;
  line-height: 1.35;
}

.steps-list strong {
  color: var(--white);
  font-size: 0.94rem;
}

.steps-list small {
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.78rem;
}

.results-help {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.results-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.results-visual::before {
  content: "";
  position: absolute;
  inset: 45px -34px -34px 60px;
  border: 1px solid rgba(126, 220, 225, 0.28);
  border-radius: 36px;
  transform: rotate(4deg);
}

.device-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.device-top {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 12px;
  background: #edf3f6;
}

.device-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bac9d1;
}

.device-card img {
  width: 100%;
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: center;
}

/* Certifications */
.certifications {
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.91)),
    url("./assets/laboratory-quality.webp") right center / cover no-repeat;
  background-attachment: fixed;
}

.cert-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.cert-heading h2 {
  margin-bottom: 0;
}

.cert-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.iso-card {
  min-height: 295px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), #fbfdfe);
  transition: color 220ms ease, background 220ms ease;
}

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

.iso-card:hover {
  color: var(--white);
  background: var(--navy-800);
}

.iso-seal {
  width: 88px;
  height: 88px;
  margin-bottom: 30px;
  display: grid;
  place-content: center;
  border: 2px solid var(--teal-600);
  border-radius: 50%;
  color: var(--navy-800);
  text-align: center;
  box-shadow: inset 0 0 0 6px var(--sky-100);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.iso-card:hover .iso-seal {
  color: var(--white);
  border-color: var(--teal-300);
  box-shadow: inset 0 0 0 6px rgba(126, 220, 225, 0.14);
}

.iso-seal small,
.iso-seal strong {
  display: block;
  line-height: 1;
}

.iso-seal small {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.iso-seal strong {
  margin-top: 4px;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.iso-card > div > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.35;
  transition: color 220ms ease;
}

.iso-card:hover > div > strong {
  color: var(--white);
}

.iso-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  transition: color 220ms ease;
}

.iso-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

/* About */
.about {
  background:
    linear-gradient(90deg, rgba(241, 249, 252, 0.94), rgba(241, 249, 252, 0.84)),
    url("./assets/family-care.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
}

.about-copy {
  max-width: 590px;
}

.about-points {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.about-points article {
  display: flex;
  gap: 15px;
}

.about-points article > span {
  width: 45px;
  height: 45px;
  display: grid;
  flex: 0 0 45px;
  place-items: center;
  border: 1px solid rgba(8, 167, 180, 0.2);
  border-radius: 13px;
  color: var(--teal-700);
  background: var(--white);
}

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

.about-points p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.brand-panel {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.brand-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 70% center;
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 31, 66, 0.84));
}

.brand-panel-copy {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  color: var(--white);
}

.brand-panel-copy span,
.brand-panel-copy strong {
  display: block;
}

.brand-panel-copy span {
  margin-bottom: 5px;
  color: var(--teal-300);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-panel-copy strong {
  font-family: "Aptos Display", Aptos, sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
}

/* Contact */
.contact {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.86)),
    url("./assets/contact-background.webp") right center / cover no-repeat;
  background-attachment: fixed;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -160px;
  left: -130px;
  border: 50px solid rgba(25, 189, 201, 0.12);
  border-radius: 50%;
}

.contact-copy {
  position: relative;
  z-index: 2;
  padding: 62px;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.contact-copy h2 em {
  color: var(--teal-300);
}

.contact-copy > p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

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

.payment-details {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.payment-details summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.payment-details summary svg {
  width: 17px;
  height: 17px;
  color: var(--teal-300);
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.payment-details[open] summary svg {
  transform: rotate(-90deg);
}

.payment-grid {
  padding: 4px 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.payment-grid > div {
  min-width: 0;
  padding: 11px 12px;
  display: grid;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.35;
}

.payment-grid strong {
  color: var(--teal-300);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-grid span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
}

.contact-info {
  margin: 22px;
  padding: 14px 30px;
  display: grid;
  align-content: center;
  border-radius: 25px;
  background: var(--white);
}

.contact-info > a {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-info > a:last-child {
  border-bottom: 0;
}

.contact-info > a > span {
  width: 50px;
  height: 50px;
  display: grid;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-700);
  background: var(--sky-100);
}

.contact-info > a > span svg {
  width: 23px;
  height: 23px;
}

.contact-info a > div {
  display: grid;
}

.contact-info small {
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info strong {
  color: var(--navy-900);
  font-size: 1.03rem;
}

.contact-info p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.info-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--teal-600);
  transition: transform 180ms ease;
}

.contact-info a:hover .info-arrow {
  transform: translateX(5px);
}

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

.footer-main {
  padding-block: 70px 55px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.75fr 1fr;
  gap: 56px;
}

.brand-footer .brand-emblem {
  box-shadow: none;
}

.brand-footer .brand-copy small,
.brand-footer .brand-copy strong {
  color: var(--white);
}

.footer-brand > p {
  max-width: 330px;
  margin: 25px 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
}

.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-300);
}

.footer-contact p {
  margin-bottom: 4px;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  color: var(--white);
  background: #087e57;
  box-shadow: 0 16px 34px rgba(0, 70, 51, 0.27);
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 70, 51, 0.35);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

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

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

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

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

/* Tablet */
@media (max-width: 1050px) {
  .credential-ribbon-inner {
    grid-template-columns: minmax(240px, 1.15fr) minmax(190px, 0.9fr) minmax(180px, 0.85fr) minmax(300px, 1.45fr);
  }

  .credential-item {
    padding-inline: 12px;
  }

  .institution-mark {
    width: 48px;
    flex-basis: 48px;
    font-size: 0.52rem !important;
  }

  .credential-iso-badges {
    gap: 5px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
    gap: 48px;
  }

  .floating-card-top {
    left: -42px;
  }

  .floating-card-bottom {
    right: -12px;
  }

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

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

  .iso-card {
    min-height: 260px;
    border-bottom: 1px solid var(--line);
  }

  .iso-card:nth-child(3) {
    border-right: 0;
  }

  .iso-card:nth-child(4),
  .iso-card:nth-child(5) {
    border-bottom: 0;
  }

  .contact-copy {
    padding: 52px 42px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero,
  .quick-actions,
  .services,
  .occupational,
  .results-section,
  .certifications,
  .about,
  .contact {
    background-attachment: scroll;
  }

  .site-header {
    top: 0;
  }

  .utility-bar {
    display: none;
  }

  .nav-inner {
    min-height: 76px;
  }

  .credential-ribbon {
    overflow: hidden;
  }

  .credential-ribbon-inner {
    min-height: 72px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .credential-ribbon-inner::-webkit-scrollbar {
    display: none;
  }

  .credential-item,
  .credential-iso {
    height: 46px;
    flex: 0 0 auto;
  }

  .credential-item {
    width: 210px;
  }

  .credential-iso {
    width: 285px;
    padding-inline: 14px 0;
  }

  .credential-iso .iso-seal {
    width: 43px;
    height: 43px;
    padding: 8px 5px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 60;
    margin: 0;
    padding: 18px 20px 26px;
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 45px rgba(3, 31, 66, 0.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid #edf3f6;
    font-size: 1rem;
  }

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

  .nav-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 0;
    padding-block: 68px 98px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero-visual {
    justify-self: center;
    width: min(78vw, 500px);
  }

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

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

  .quick-item:last-child {
    border-bottom: 0;
  }

  .occupational-grid,
  .results-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .occupational-visual {
    order: 2;
  }

  .occupational-copy {
    max-width: 720px;
  }

  .results-visual {
    width: min(78vw, 500px);
    justify-self: center;
  }

  .cert-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-panel {
    min-height: 430px;
  }

  .contact-copy {
    padding: 52px 46px 30px;
  }

  .contact-info {
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

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

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.75rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

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

  .section-heading > p,
  .section-intro {
    font-size: 1.02rem;
  }

  .nav-inner {
    gap: 10px;
  }

  .brand {
    gap: 7px;
  }

  .brand-emblem {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    background-size: 105px auto;
  }

  .brand-copy strong {
    font-size: 1.38rem;
  }

  .brand-copy small,
  .brand-copy span {
    font-size: 0.55rem;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding-block: 56px 84px;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

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

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

  .hero-trust {
    margin-top: 34px;
    padding-top: 24px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-trust > div {
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 68, 131, 0.12);
  }

  .hero-trust > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-visual {
    width: min(88vw, 430px);
  }

  .visual-frame {
    border-width: 5px;
    border-radius: 24px;
  }

  .floating-card {
    min-width: 0;
    max-width: 210px;
    padding: 11px 12px;
  }

  .floating-card-top {
    top: 19%;
    left: -10px;
  }

  .floating-card-bottom {
    right: -6px;
    bottom: 4%;
  }

  .floating-card > span:last-child {
    font-size: 0.68rem;
  }

  .floating-card strong {
    font-size: 0.76rem;
  }

  .quick-actions {
    margin-top: -28px;
  }

  .quick-item {
    min-height: 88px;
    padding: 19px;
  }

  .quick-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .services {
    padding-top: 96px;
  }

  .service-tabs {
    width: 100%;
  }

  .service-tab {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
    font-size: 0.85rem;
  }

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

  .service-card {
    min-height: 0;
    padding: 27px;
  }

  .service-icon {
    margin-bottom: 24px;
  }

  .occupational-grid,
  .results-grid,
  .about-grid {
    gap: 52px;
  }

  .occupational-visual {
    width: min(84vw, 370px);
    padding-right: 0;
  }

  .poster-note {
    right: -8px;
    bottom: 30px;
    width: 205px;
  }

  .benefit-item {
    gap: 13px;
  }

  .results-visual {
    width: min(84vw, 430px);
  }

  .results-visual::before {
    right: -18px;
  }

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

  .iso-card,
  .iso-card:nth-child(3),
  .iso-card:nth-child(4),
  .iso-card:nth-child(5) {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .iso-seal {
    width: 74px;
    height: 74px;
    margin: 0;
    flex: 0 0 74px;
  }

  .brand-panel,
  .brand-panel img {
    min-height: 0;
  }

  .contact-card {
    width: min(calc(100% - 22px), var(--container));
    border-radius: 26px;
  }

  .contact-copy {
    padding: 42px 25px 28px;
  }

  .contact-actions {
    display: grid;
  }

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

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

  .contact-info {
    margin: 0 12px 12px;
    padding: 5px 18px;
  }

  .contact-info > a {
    min-height: 105px;
    gap: 12px;
  }

  .contact-info > a > span {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .contact-info strong {
    overflow-wrap: anywhere;
    font-size: 0.91rem;
  }

  .info-arrow {
    display: none;
  }

  .footer-main {
    padding-block: 55px 42px;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .service-tab svg {
    display: none;
  }

  .quick-item strong {
    font-size: 0.92rem;
  }

  .floating-card-top {
    top: 14%;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}
