:root {
  --navy:        #12557E;
  --navy-hover:  #0E4568;
  --navy-light:  #0D4770;
  --red:         #DC2626;
  --red-hover:   #B91C1C;
  --white:       #FFFFFF;
  --off-white:   #EEF3F8;
  --slate-50:    #F1F5F9;
  --slate-100:   #E2E8F0;
  --slate-400:   #94A3B8;
  --slate-500:   #64748B;
  --slate-700:   #334155;
  --slate-900:   #0F172A;
  --font-display: 'Libre Franklin', sans-serif;
  --font-body:    'Libre Franklin', sans-serif;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --banner-h: 40px;
  --nav-h:    96px;
}
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--navy);
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: calc(var(--banner-h) + var(--nav-h));
}
img, video { display: block; max-width: 100%; }
main { background: var(--white); }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }
input, textarea, select { font: inherit; }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .services { --services-progress: 100%; --services-parallax: 0px; }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.section { padding-block: clamp(4rem, 8vw, 6rem); }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .875rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--light::before { background: rgba(255,255,255,.5); }
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--slate-900);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.h2--white { color: var(--white); }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible,
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}
.type-caret {
  display: inline-block;
  width: 4px;
  height: .82em;
  background: var(--red);
  margin-left: .12em;
  vertical-align: -.04em;
  animation: caretBlink 1.1s steps(1) infinite;
}
.type-caret.is-hidden { opacity: 0; transition: opacity .4s; }
@keyframes caretBlink { 50% { opacity: 0; } }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  padding: .875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .22s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-15deg);
  transition: left .55s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 160%; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 12px 36px rgba(220,38,38,.45), 0 4px 10px rgba(220,38,38,.2);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 28px rgba(0,0,0,.22);
}
.btn--ghost span[aria-hidden] { transition: transform .3s var(--ease); }
.btn--ghost:hover span[aria-hidden] { transform: translateX(4px); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--slate-100);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(18,85,126,.22), 0 3px 8px rgba(18,85,126,.1);
}
.btn--full { width: 100%; justify-content: center; }
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--banner-h);
  background: var(--red);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.banner.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--white);
}
.banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}
.banner__number {
  font-weight: 800;
  font-size: .9375rem;
  color: var(--white);
  letter-spacing: .02em;
}
.banner__number:hover { text-decoration: underline; }
.banner__sep { opacity: .4; }
.banner__text { opacity: .9; }
.nav {
  position: fixed;
  top: var(--banner-h);
  left: 50%;
  right: auto;
  z-index: 190;
  width: 100%;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transform: translateX(-50%);
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              top .4s var(--ease), width .4s var(--ease), height .4s var(--ease),
              border-color .4s var(--ease), border-radius .4s var(--ease),
              backdrop-filter .4s var(--ease), transform .32s var(--ease);
}
.nav--hide {
  transform: translateX(-50%) translateY(-100%);
}
.nav.is-scrolled {
  top: 10px;
  width: min(1500px, calc(100% - 40px));
  height: 72px;
  background: rgba(9,45,70,.84);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(8,32,50,.28), 0 1px 0 rgba(255,255,255,.1) inset;
  transform: translateX(-50%);
}
.nav.is-scrolled.nav--hide {
  transform: translateX(-50%) translateY(calc(-100% - 18px));
}
.nav.is-scrolled .nav__inner {
  padding-inline: clamp(1rem, 2vw, 1.4rem);
}
.nav.is-scrolled .nav__logo {
  width: 44px;
  height: 44px;
}
.nav.is-scrolled .nav__name {
  font-size: .7rem;
}
.nav.is-scrolled .nav__city {
  font-size: .62rem;
}
.nav.is-scrolled .nav__link {
  padding: .45rem .68rem;
  color: rgba(255,255,255,.74);
}
.nav.is-scrolled .nav__actions {
  gap: .5rem;
}
.nav.is-scrolled .nav__fb {
  width: 34px;
  height: 34px;
}
.nav.is-scrolled .nav__tel {
  border-radius: 8px;
  padding: .48rem .9rem;
  margin-left: .25rem;
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 100%;
  max-width: 1500px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  justify-self: start;
}
.nav__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.12; max-width: 14rem; }
.nav__name {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.15;
  text-transform: uppercase;
}
.nav__city {
  font-size: .66rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav__links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  gap: .35rem;
  height: 100%;
  list-style: none;
}
.nav__links > li { display: flex; align-items: center; position: relative; }
.nav__mobile-only { display: none; }
.nav__link {
  position: relative;
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .5rem .5rem;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-inline: 1.25rem; }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .75rem;
  right: .75rem;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--white); }
.nav__link.is-active::after {
  background: var(--red);
  transform: scaleX(1);
}
.nav__caret { display: inline-block; font-size: .58em; margin-left: .3rem; vertical-align: middle; opacity: .7; transition: transform .2s var(--ease); }
.nav__item--sub:hover .nav__caret,
.nav__item--sub:focus-within .nav__caret { transform: rotate(180deg); }
.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  margin: 0;
  padding: .45rem;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(18,85,126,.1);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(8,32,50,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 200;
}
.nav__item--sub:hover .nav__sub,
.nav__item--sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__sub li { display: block; }
.nav__sub a {
  display: block;
  padding: .62rem .85rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-700);
  white-space: nowrap;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__sub a:hover { background: rgba(18,85,126,.08); color: var(--navy); }
.nav__links.is-open > li { display: block; }
.nav__links.is-open .nav__caret {
  display: inline-block;
  margin-left: .45rem;
  transition: transform .2s var(--ease);
}
.nav__links.is-open .nav__item--sub.is-expanded > .nav__link .nav__caret {
  transform: rotate(180deg);
}
.nav__links.is-open .nav__sub {
  position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  min-width: 0; background: transparent; border: none; box-shadow: none;
  padding: 0 0 .4rem .75rem; margin-top: -.25rem;
  display: none;
}
.nav__links.is-open .nav__item--sub.is-expanded > .nav__sub {
  display: block;
}
.nav__links.is-open .nav__sub a { color: rgba(255,255,255,.72); padding: .7rem 1rem; font-size: 1rem; }
.nav__links.is-open .nav__sub a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  justify-self: end;
}
.nav__fb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.nav__fb:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
  transform: scale(1.12);
}
.nav__tel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  flex-shrink: 0;
  margin-left: .5rem;
}
.nav__tel::before {
  content: '';
  position: absolute;
  left: -.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.2);
}
.nav__tel:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220,38,38,.45);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: .5rem;
  margin-left: .5rem;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  height: calc(100vh - var(--banner-h) - var(--nav-h));
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
body { padding-top: 0; }
.hero { padding-top: calc(var(--banner-h) + var(--nav-h)); }
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform-origin: center;
  transform: scaleX(-1);
  animation: heroKenBurns 26s var(--ease-out) both;
}
@keyframes heroKenBurns {
  from { transform: scaleX(-1) scale(1.08); }
  to   { transform: scaleX(-1) scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(18,85,126,.82) 0%,
      rgba(18,85,126,0) 26%
    ),
    linear-gradient(
      105deg,
      rgba(11,46,76,.82) 0%,
      rgba(12,50,82,.48) 34%,
      rgba(18,85,126,.06) 58%,
      rgba(18,85,126,0) 82%
    );
}
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(1.5rem, 6vw, 5rem);
  padding-right: clamp(1.5rem, 3vw, 2rem);
}
.hero__body {
  max-width: 600px;
  padding-bottom: 3rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(220,38,38,.7);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 1.75rem;
  margin-left: -.055em;
  display: flex;
  flex-direction: column;
}
.hero__h1.reveal { opacity: 1; transform: none; transition: none; }
.hero__line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.hero__line {
  color: var(--white);
  display: block;
  white-space: nowrap;
  transform: translateY(110%);
  transition: transform .85s var(--ease-out);
}
.hero__line--red { color: var(--red); }
.hero__h1.is-visible .hero__line { transform: none; }
.hero__statement {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.16;
  color: rgba(255,255,255,.96);
  letter-spacing: -.01em;
  margin-bottom: .8rem;
  max-width: 680px;
}
.hero__statement span {
  color: #F05A5A;
  text-shadow: 0 0 18px rgba(220,38,38,.16);
}
.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.8);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero__br { display: none; }
.hero__ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: .8; transform: scaleY(1) translateY(0); }
  50% { opacity: .3; transform: scaleY(.6) translateY(8px); }
}
.stats {
  background:
    radial-gradient(circle at 12% 125%, rgba(220, 38, 38, .055), transparent 28rem),
    radial-gradient(circle at 82% 112%, rgba(18, 85, 126, .08), transparent 34rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
  padding-block: .9rem .55rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1.45rem 1.5rem;
  border-right: 1px solid rgba(18,85,126,.12);
  text-align: center;
}
.stats__item:last-child { border-right: none; }
.stats__item::before {
  content: '';
  width: 28px;
  height: 2px;
  margin-bottom: .2rem;
  background: rgba(220,38,38,.72);
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.stats__label {
  font-size: .8125rem;
  font-weight: 700;
  color: rgba(15,23,42,.48);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 2px solid rgba(220,38,38,.28);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about__media-mask {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about__section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.about__media:hover .about__section-video { transform: scale(1.03); }
.about__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  width: fit-content;
  background: rgba(18,85,126,.85);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .625rem;
  backdrop-filter: blur(8px);
}
.about__badge svg { flex-shrink: 0; color: var(--red); }
.about__lead {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.about__list.reveal { opacity: 1; transform: none; transition: none; }
.about__list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.about__list.is-visible li { opacity: 1; transform: none; }
.about__list.is-visible li:nth-child(2) { transition-delay: .08s; }
.about__list.is-visible li:nth-child(3) { transition-delay: .16s; }
.about__list.is-visible li:nth-child(4) { transition-delay: .24s; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--slate-700);
}
.about__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(220,38,38,.1);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1em;
}
.services {
  position: relative;
  overflow: hidden;
  --services-parallax: 0px;
  --services-progress: 0%;
  background:
    radial-gradient(circle at 8% 16%, rgba(220,38,38,.06), transparent 24%),
    linear-gradient(180deg, #F8FAFC 0%, #F4F7FB 54%, #FFFFFF 100%);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18,85,126,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,85,126,.035) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  pointer-events: none;
}
.services::after {
  content: "";
  position: absolute;
  top: clamp(7rem, 12vw, 10rem);
  left: max(1.25rem, calc((100vw - 1200px) / 2 + 1.25rem));
  width: 72px;
  height: 72px;
  border-top: 2px solid rgba(220,38,38,.32);
  border-left: 2px solid rgba(220,38,38,.32);
  pointer-events: none;
}
.services > .container { position: relative; z-index: 3; }
.services-showcase__header {
  max-width: 660px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.services-showcase__header .h2 {
  margin-bottom: .65rem;
}
.work-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}
.work-card {
  --work-card-y: 0px;
  min-height: clamp(560px, 48vw, 650px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18,85,126,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(18,85,126,.08), inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  isolation: isolate;
  margin-top: var(--work-card-y);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.work-card--lower {
  --work-card-y: clamp(3rem, 5.5vw, 4.25rem);
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220,38,38,.16);
  box-shadow: 0 28px 64px rgba(18,85,126,.13), inset 0 1px 0 rgba(255,255,255,.9);
}
.work-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.4rem, 2.2vw, 1.8rem) 0;
}
.work-card__number {
  display: inline-block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4vw, 3.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: .82;
  position: relative;
}
.work-card__number::after {
  content: "";
  position: absolute;
  left: .18em;
  right: -.12em;
  bottom: .03em;
  height: .18em;
  background: var(--red);
  opacity: .28;
  z-index: -1;
}
.work-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(18,85,126,.055);
  color: rgba(18,85,126,.52);
  flex: 0 0 auto;
}
.work-card__meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.45rem clamp(1.4rem, 2.2vw, 1.8rem) .95rem;
  color: var(--slate-400);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.work-card__meta::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
  flex: 0 0 auto;
}
.work-card h3 {
  min-height: 4.2em;
  margin: 0 clamp(1.4rem, 2.2vw, 1.8rem) 1rem;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
}
.work-card p {
  margin: 0 clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--slate-500);
  font-size: .94rem;
  line-height: 1.7;
}
.work-card__link {
  width: max-content;
  margin: 1.2rem clamp(1.4rem, 2.2vw, 1.8rem) 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--red);
  font-size: .85rem;
  font-weight: 750;
  transition: gap .22s var(--ease), color .22s var(--ease);
}
.work-card__link:hover {
  color: var(--red-hover);
  gap: .6rem;
}
.work-card__image {
  width: 100%;
  height: 220px;
  margin-top: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(.96);
}
.work-card:nth-child(1) .work-card__image { object-position: center 46%; }
.work-card:nth-child(2) .work-card__image { object-position: center 52%; }
.work-card:nth-child(3) .work-card__image { object-position: center 58%; }
.work-card:nth-child(4) .work-card__image { object-position: center 48%; }
.work-card.is-active .work-card__number::after {
  opacity: .42;
}
.about,
.enroll,
.safety { position: relative; overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 700' fill='none' stroke='%2312557E' stroke-opacity='.05' stroke-width='2'%3E%3Cpath d='M0 480 C133 400 267 400 400 480 S667 560 800 480 S1067 400 1200 480 S1467 560 1600 480'/%3E%3Cpath d='M0 560 C133 480 267 480 400 560 S667 640 800 560 S1067 480 1200 560 S1467 640 1600 560'/%3E%3Cpath d='M0 640 C133 560 267 560 400 640 S667 720 800 640 S1067 560 1200 640 S1467 720 1600 640'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: 1500px auto;
  background-position: right -420px top -300px;
}
.about > .container,
.enroll > .container,
.safety > .container { position: relative; }
.about { background: linear-gradient(to bottom, var(--white) calc(100% - 300px), var(--off-white) 100%); }
.services {
  background:
    radial-gradient(circle at 8% 16%, rgba(220,38,38,.06), transparent 24%),
    linear-gradient(180deg, #F8FAFC 0%, #F4F7FB 54%, #FFFFFF 100%);
}
.partners { position: relative; }
.about::after,
.services::after,
.enroll::after,
.safety::after,
.partners::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.services__process {
  width: min(680px, 100%);
  height: 38px;
  margin: -1rem auto 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
}
.services__process-line {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red), var(--red)) 0 0 / var(--services-progress) 100% no-repeat,
    rgba(18,85,126,.14);
  overflow: hidden;
}
.services__process-dot {
  width: 22px;
  height: 22px;
  justify-self: center;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(18,85,126,.16);
  box-shadow: 0 6px 16px rgba(18,85,126,.1);
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease),
              box-shadow .3s var(--ease);
}
.services__process-dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(18,85,126,.2);
  transition: background .3s var(--ease), inset .3s var(--ease);
}
.services__process-dot.is-active {
  background: var(--white);
  border-color: var(--red);
  transform: scale(1.04);
  box-shadow: 0 0 0 5px rgba(220,38,38,.08), 0 8px 18px rgba(18,85,126,.12);
}
.services__process-dot.is-active::after {
  inset: 7px;
  background: var(--red);
}
.scard {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset, 0 10px 30px rgba(18,85,126,.045);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease),
              background .32s var(--ease);
}
.scard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .2s var(--ease), transform .28s var(--ease);
}
.scard::after {
  content: attr(data-step);
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(18,85,126,.06);
  color: rgba(18,85,126,.52);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.scard:hover::before,
.scard.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}
.scard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(18,85,126,.13), 0 8px 18px rgba(18,85,126,.06);
  border-color: transparent;
}
.scard:hover::after,
.scard.is-active::after {
  background: rgba(220,38,38,.1);
  color: var(--red);
  transform: translateY(-2px);
}
.scard__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(18,85,126,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}
.scard:hover .scard__icon {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px) scale(1.06);
}
.scard__icon svg {
  transition: transform .35s var(--ease);
}
.scard:hover .scard__icon svg {
  transform: translateY(-1px) rotate(-3deg);
}
.scard__meta {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: -.625rem;
}
.scard__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}
.scard--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.11), transparent 34%),
    linear-gradient(135deg, var(--navy), #09253f);
  border-color: var(--navy);
  padding: 2.5rem;
}
.scard__featured-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.scard--featured .scard__meta { color: #F87171; margin-bottom: 0; }
.scard--featured .scard__title { color: var(--white); font-size: clamp(1.375rem, 2.2vw, 1.625rem); }
.scard--featured .scard__desc { color: rgba(255,255,255,.75); max-width: 62ch; }
.scard--featured .scard__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.scard--featured::after {
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.68);
}
.scard--featured:hover .scard__icon { background: var(--red); }
.scard--featured:hover::after,
.scard--featured.is-active::after {
  background: rgba(255,255,255,.16);
  color: var(--white);
}
.scard--featured .btn { flex-shrink: 0; }
.scard--featured:hover {
  box-shadow: 0 24px 60px rgba(18,85,126,.28), 0 6px 16px rgba(18,85,126,.12);
}
.scard__desc {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
  flex: 1;
}
.scard__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--red);
  transition: gap .2s var(--ease), color .2s var(--ease);
  margin-top: auto;
}
.scard__link:hover { color: var(--red-hover); gap: .625rem; }
.enroll {
  background: var(--off-white);
}
.enroll__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}
.estep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 1rem;
  position: relative;
}
.estep::after {
  content: none;
}
.estep__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(220,38,38,.2);
  line-height: 1;
  margin-bottom: .625rem;
  transition: color .3s var(--ease);
}
.estep:hover .estep__num { color: var(--red); }
.estep__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .5rem;
}
.estep__desc {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 30ch;
}
.enroll__cta { display: flex; justify-content: center; }
.swim {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.swim__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.swim__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -5%;
  animation: swimDrift 45s ease-in-out infinite alternate;
}
@keyframes swimDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.swim__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,85,126,.96) 0%,
    rgba(18,85,126,.88) 40%,
    rgba(18,85,126,.55) 70%,
    rgba(18,85,126,.2) 100%
  );
}
.swim__pad {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(1.5rem, 6vw, 5rem);
  padding-right: clamp(1.5rem, 3vw, 2rem);
}
.swim__body {
  max-width: 560px;
}
.swim__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.swim__meta svg { color: var(--red); flex-shrink: 0; }
.swim__intro-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.swim__tiers {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.25rem;
}
.swim__tiers li {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .75rem 0;
  font-size: .9375rem;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.swim__tiers li:last-child { border-bottom: none; }
.swim__tier-age {
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.15);
  padding: .2rem .625rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .05em;
  text-transform: uppercase;
  min-width: 8rem;
  text-align: center;
}
.swim__photo {
  display: none;
}
.swim__divider {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.swim__divider svg {
  display: block;
  width: 100%;
  height: clamp(32px, 4.5vw, 64px);
}
.swim__divider--top { top: -1px; }
.swim__divider--top path { fill: var(--off-white); }
.swim__divider--bottom { bottom: -1px; }
.swim__divider--bottom path { fill: var(--off-white); }
.safety__intro {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 34ch;
}
.safe-emergency {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  border-top: 2px solid var(--red);
  padding-top: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.safe-emergency__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: .85;
  color: var(--red);
}
.safe-emergency__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: .4rem;
}
.safe-emergency__desc {
  font-size: .95rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 52ch;
}
.safe-emergency__calls {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.safe-call {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 158px;
  padding: .9rem 1.4rem;
  border-radius: 11px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.safe-call__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}
.safe-call__label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.safe-call--112 { background: var(--red); }
.safe-call--112 .safe-call__num { color: var(--white); }
.safe-call--112 .safe-call__label { color: rgba(255,255,255,.82); }
.safe-call--112:hover { background: var(--red-hover); transform: translateY(-2px); }
.safe-call--wopr {
  background: var(--white);
  border: 1px solid var(--slate-100);
}
.safe-call--wopr .safe-call__num { color: var(--navy); }
.safe-call--wopr .safe-call__label { color: var(--slate-500); }
.safe-call--wopr:hover { border-color: rgba(18,85,126,.3); transform: translateY(-2px); }
.safe-rules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.safe-rule {
  border-top: 2px solid var(--navy);
  padding-top: 1.25rem;
}
.safe-rule__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 1rem;
}
.safe-rule__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: .6rem;
}
.safe-rule__desc {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ncard {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ncard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(18,85,126,.12), 0 5px 14px rgba(18,85,126,.05);
}
.ncard__img { flex-shrink: 0; }
.ncard__placeholder {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.ncard__placeholder--1 {
  background: linear-gradient(135deg, #12557E 0%, #1E40AF 60%, #0EA5E9 100%);
}
.ncard__placeholder--2 {
  background: linear-gradient(135deg, #12557E 0%, #991B1B 60%, #DC2626 100%);
}
.ncard__placeholder--3 {
  background: linear-gradient(135deg, #064E3B 0%, #12557E 60%, #1E40AF 100%);
}
.ncard__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}
.ncard__date {
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ncard__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.3;
}
.ncard__excerpt {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
  flex: 1;
}
.ncard__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--red);
  margin-top: .5rem;
  transition: gap .2s var(--ease);
}
.ncard__link:hover { gap: .625rem; }
.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 4rem;
  margin-top: 1rem;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s ease, transform .2s ease;
}
.partner-logo img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
.nav__link--fb {
  display: flex;
  align-items: center;
  padding: .25rem;
  color: var(--slate-600);
  transition: color .2s var(--ease);
}
.nav__link--fb:hover { color: #1877F2; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cdetail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cdetail__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.cdetail__text {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.cdetail__text strong {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cdetail__text span,
.cdetail__text a {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  transition: color .2s var(--ease);
}
.cdetail__text a:hover { color: var(--white); text-decoration: underline; }
.contact__form {
  background: var(--white);
  border-radius: 8px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.cform { display: flex; flex-direction: column; gap: 1.25rem; }
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cform__group { display: flex; flex-direction: column; gap: .5rem; }
.cform__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.cform__input,
.cform__select,
.cform__textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--slate-100);
  border-radius: 8px;
  padding: .8125rem 1rem;
  font-size: .9375rem;
  color: var(--slate-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
}
.cform__input:hover:not(:focus),
.cform__select:hover:not(:focus),
.cform__textarea:hover:not(:focus) {
  border-color: var(--slate-400);
}
.cform__input:focus,
.cform__select:focus,
.cform__textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18,85,126,.07);
}
.cform__input::placeholder,
.cform__textarea::placeholder { color: var(--slate-400); }
.cform__textarea { resize: vertical; min-height: 130px; }
.cform__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
}
.cform__status {
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.25rem;
}
.cform__status--ok { color: #15803D; }
.cform__status--err { color: var(--red); }
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  margin-top: -1px;
}
.footer__divider {
  line-height: 0;
  background: var(--navy);
  transform: translateY(-1px);
}
.footer__divider svg {
  display: block;
  width: 100%;
  height: clamp(32px, 4.5vw, 64px);
}
.footer__divider path { fill: var(--off-white); }
.footer__divider--white path { fill: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.footer__sub {
  font-size: .8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,.5);
}
.footer__desc {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  max-width: 260px;
  margin-top: .25rem;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col li {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer__col a {
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--white); }
.footer__emergency {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}
.footer__emergency-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
  transition: color .2s var(--ease);
}
.footer__emergency-num:hover { color: var(--white); }
.footer__bottom {
  padding-block: 1.5rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: rgba(255,255,255,.45);
  transition: color .2s var(--ease);
}
.footer__legal-link:hover { color: rgba(255,255,255,.8); }
.footer__webstudio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-decoration: none;
  transition: color .25s var(--ease);
}
.footer__webstudio::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer__webstudio-arrow {
  display: inline-block;
  font-style: normal;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  font-size: .8em;
}
.footer__webstudio:hover { color: var(--white); }
.footer__webstudio:hover::after { transform: scaleX(1); }
.footer__webstudio:hover .footer__webstudio-arrow {
  opacity: 1;
  transform: translate(1px, -1px);
}
@media (max-width: 1100px) {
  .work-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-card { min-height: 610px; }
  .work-card--lower { --work-card-y: 2rem; }
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .enroll__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .estep { align-items: flex-start; text-align: left; padding-inline: 0; }
  .estep::after { content: none; }
  .safe-rules { grid-template-columns: repeat(2, 1fr); }
  .safe-emergency { grid-template-columns: auto 1fr; }
  .safe-emergency__calls { grid-column: 1 / -1; }
  .safe-call { flex: 1; }
}
@media (min-width: 769px) and (max-width: 1040px) {
  .nav { left: 0; right: 0; width: 100%; transform: none; }
  .nav--hide { transform: translateY(-100%); }
  .nav.is-scrolled {
    top: 0; left: 0; right: 0; width: 100%; height: var(--nav-h);
    border-radius: 0; transform: none;
  }
  .nav.is-scrolled.nav--hide { transform: translateY(-100%); }
  .nav__fb { display: none; }
  .nav__tel { display: none; }
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 188;
    padding: 2rem clamp(1.5rem, 5vw, 3rem);
    height: auto;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: .25rem;
  }
  .nav.is-scrolled .nav__links.is-open { top: var(--nav-h); }
  .nav__links.is-open .nav__link {
    font-size: 1.125rem;
    padding: .875rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav__links.is-open .nav__mobile-only { display: block; }
  .nav__links.is-open .nav__mobile-kicker {
    margin: 1.15rem 1rem .15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.46);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .nav__links.is-open .nav__mobile-only .nav__link {
    padding-block: .72rem;
    padding-left: 1.35rem;
    font-size: 1rem;
    color: rgba(255,255,255,.78);
  }
  .nav__hamburger {
    display: flex;
    width: 46px;
    height: 46px;
    padding: .72rem;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
  }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --banner-h: 36px; }
  .nav {
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }
  .nav--hide {
    transform: translateY(-100%);
  }
  .nav.is-scrolled {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--nav-h);
    border-radius: 0;
    transform: none;
  }
  .nav.is-scrolled.nav--hide {
    transform: translateY(-100%);
  }
  .nav.is-scrolled .nav__inner {
    padding-inline: max(14px, calc(env(safe-area-inset-left) + 14px)) max(14px, calc(env(safe-area-inset-right) + 14px));
  }
  .nav__inner {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding-inline: max(14px, calc(env(safe-area-inset-left) + 14px)) max(14px, calc(env(safe-area-inset-right) + 14px));
  }
  .nav__brand {
    min-width: 0;
    margin-right: auto;
  }
  .nav__logo {
    width: 46px;
    height: 46px;
  }
  .nav__brand-text {
    transform: translateY(1px);
  }
  .nav__actions {
    margin-left: auto;
    justify-content: flex-end;
    gap: 0;
  }
  .nav__fb { display: none; }
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 188;
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
    height: auto;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: .25rem;
  }
  .nav.is-scrolled .nav__links.is-open {
    top: var(--nav-h);
  }
  .nav__links.is-open .nav__link {
    font-size: 1.125rem;
    padding: .875rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav__links.is-open .nav__mobile-only {
    display: block;
  }
  .nav__links.is-open .nav__mobile-kicker {
    margin: 1.15rem 1rem .15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.46);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .nav__links.is-open .nav__mobile-only .nav__link {
    padding-block: .72rem;
    padding-left: 1.35rem;
    font-size: 1rem;
    color: rgba(255,255,255,.78);
  }
  .nav__tel { display: none; }
  .nav__hamburger {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: 0;
    padding: .72rem;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
  }
  .hero { min-height: 100svh; }
  .hero__br { display: block; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid rgba(18,85,126,.1); }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-bottom: none; }
  .services::after { display: none; }
  .work-card { min-height: 580px; }
  .work-card__image { height: 210px; }
  .news__grid { grid-template-columns: 1fr; }
  .swim__body { max-width: 100%; }
  .swim__img { object-position: center 62%; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .section-header--split { flex-direction: column; align-items: flex-start; }
  .cform__row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .banner__text { display: none; }
  .work-cards { grid-template-columns: 1fr; }
  .work-card,
  .work-card--lower {
    --work-card-y: 0px;
    min-height: 0;
  }
  .work-card__head { padding: 1.45rem 1.35rem 0; }
  .work-card__number { font-size: 2.45rem; }
  .work-card__icon { width: 44px; height: 44px; }
  .work-card__meta,
  .work-card h3,
  .work-card p,
  .work-card__link {
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }
  .work-card h3 {
    min-height: 0;
    font-size: 1.55rem;
  }
  .work-card__image { height: 205px; }
  .safe-rules { grid-template-columns: 1fr; }
  .safe-emergency { grid-template-columns: 1fr; }
  .safe-emergency__num { font-size: 2.25rem; }
  .safe-emergency__calls { flex-direction: column; }
  .safe-call { min-width: 0; width: 100%; }
  .testi__grid { grid-template-columns: 1fr; }
  .footer__divider svg {
    height: 28px;
  }
  .footer__grid {
    gap: 1.45rem;
    padding-block: 2.1rem 1.65rem;
  }
  .footer__brand {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: .85rem;
  }
  .footer__logo {
    width: 46px;
    height: 46px;
  }
  .footer__name {
    font-size: 1.15rem;
    line-height: 1.1;
  }
  .footer__sub {
    font-size: .78rem;
    line-height: 1.35;
  }
  .footer__desc {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: .15rem;
    font-size: .88rem;
    line-height: 1.58;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__col {
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .footer__col:first-child {
    padding-top: .85rem;
  }
  .footer__col:last-child {
    margin-top: .35rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
  }
  .footer__col-title {
    margin-bottom: .7rem;
    font-size: .7rem;
    letter-spacing: .12em;
  }
  .footer__col ul {
    gap: .42rem;
  }
  .footer__col li {
    font-size: .92rem;
    line-height: 1.45;
  }
  .footer__emergency {
    margin-top: 1rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .footer__bottom {
    padding-block: 1rem calc(1.15rem + env(safe-area-inset-bottom));
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    font-size: .76rem;
    line-height: 1.5;
  }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
.section-sub {
  max-width: 680px;
  margin-inline: auto;
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.65;
}
.hero .btn::before,
.about .btn::before,
.services .btn::before {
  content: none;
}
.hero .btn:hover,
.about .btn:hover,
.services .btn:hover {
  transform: translateY(-1px);
}
.hero .btn--red:hover,
.about .btn--outline:hover,
.services .btn--red:hover,
.services .btn--outline:hover,
.hero .btn--ghost:hover {
  box-shadow: none;
}
.hero {
  min-height: 620px;
  height: 88svh;
}
.hero__video {
  animation: none;
  transform: scaleX(-1);
  object-position: center center;
}
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 30, 51, .84) 0%, rgba(6, 30, 51, .52) 44%, rgba(6, 30, 51, .12) 78%, rgba(6, 30, 51, .04) 100%),
    linear-gradient(0deg, rgba(6, 30, 51, .4), rgba(6, 30, 51, .08));
}
.hero__body {
  max-width: 760px;
  padding-bottom: 1rem;
}
.hero__badge {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: none;
}
.hero__h1 {
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: .98;
  margin-bottom: 1rem;
}
.hero__line {
  transform: none;
  transition: none;
}
.hero__line-mask {
  overflow: visible;
}
.hero__lead {
  max-width: 640px;
  margin-bottom: 2.05rem;
  color: rgba(255,255,255,.86);
}
.hero__scroll {
  display: none;
}
.stats__item {
  padding: 1.25rem 1rem;
}
.stats__num {
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}
.about {
  isolation: isolate;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 38, 38, .065), transparent 28rem),
    radial-gradient(circle at 82% 6%, rgba(18, 85, 126, .09), transparent 34rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 62%, #EEF3F8 100%);
}
.services::before,
.services::after,
.partners::after {
  content: none !important;
}
.about::before {
  content: none !important;
}
.about::after {
  content: none !important;
}
.about > .container {
  position: relative;
  z-index: 1;
}
.about__grid {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(2.75rem, 6vw, 5.75rem);
  align-items: center;
}
.about__media {
  margin-bottom: 0;
}
.about__media::before {
  display: block;
  content: "";
  position: absolute;
  inset: .9rem -.85rem -.85rem .9rem;
  z-index: -1;
  border: 1px solid rgba(18, 85, 126, .12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 85, 126, .08), rgba(255, 255, 255, .6));
}
.about__media-mask {
  border-radius: 12px;
  box-shadow: 0 26px 80px rgba(18, 85, 126, .18);
  border: 1px solid rgba(255, 255, 255, .72);
  aspect-ratio: 5 / 6;
  background: var(--navy);
}
.about__media-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 23, 43, .1) 0%, transparent 34%, rgba(7, 23, 43, .7) 100%),
    linear-gradient(105deg, rgba(18, 85, 126, .5) 0%, transparent 48%);
}
.about__section-video {
  filter: saturate(.96) contrast(1.02);
  object-position: center 44%;
}
.about__badge {
  z-index: 2;
  bottom: 1.15rem;
  left: 1.15rem;
  max-width: calc(100% - 2.3rem);
  min-height: 44px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(7, 23, 43, .22);
  backdrop-filter: blur(14px);
}
.about__badge-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(220, 38, 38, .14);
  flex: 0 0 auto;
}
.about__status {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  left: 1.15rem;
  display: grid;
  gap: .12rem;
  min-width: 11.5rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(7, 23, 43, .18);
  backdrop-filter: blur(14px);
}
.about__status-kicker {
  color: var(--slate-500);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.about__status strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}
.about__lead {
  max-width: 62ch;
  margin-bottom: 1.45rem;
}
.about__proofs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1.45rem;
}
.about__proof {
  display: flex;
  gap: .85rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(18, 85, 126, .06);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.about__proof:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 38, 38, .25);
  box-shadow: 0 16px 40px rgba(18, 85, 126, .1);
}
.about__proof--wide {
  grid-column: 1 / -1;
  min-height: 0;
  align-items: center;
}
.about__proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EDF4FA;
  color: var(--navy);
}
.about__proof h3 {
  margin-bottom: .25rem;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}
.about__proof p {
  color: var(--slate-500);
  font-size: .9rem;
  line-height: 1.55;
}
.about__actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
}
.about__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
  transition: color .25s var(--ease);
}
.about__more span {
  color: var(--red);
  transition: transform .25s var(--ease);
}
.about__more:hover {
  color: var(--red);
}
.about__more:hover span {
  transform: translateX(3px);
}
.services {
  background: var(--off-white);
}
.work-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.work-card,
.work-card--lower {
  --work-card-y: 0px;
  min-height: 0;
  margin-top: 0;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, .07);
  border-color: #CBD5E1;
}
.work-card__head {
  padding: 1.5rem 1.25rem 0;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.work-card__number {
  display: block;
  font-size: .8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--red);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: .4rem;
}
.work-card__number::after {
  content: none;
}
.work-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EDF1F7;
  color: var(--navy);
}
.work-card p.work-card__meta {
  margin: 0;
  font-size: .65rem;
  letter-spacing: .09em;
  line-height: 1.55;
  color: var(--navy);
}
.work-card__meta::before {
  content: none;
}
.work-card h3 {
  min-height: 2.2em;
  margin: 0 1.25rem .75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.1;
}
.work-card p {
  margin: 0 1.25rem;
  font-size: .93rem;
  line-height: 1.6;
}
.work-card__facts {
  list-style: none;
  display: grid;
  gap: .55rem;
  margin: auto 1.25rem 0;
  padding: 1.05rem 0 0;
  border-top: 1px solid #EEF2F7;
  color: var(--slate-700);
  font-size: .88rem;
}
.work-card__facts li {
  position: relative;
  padding-left: 1.5rem;
}
.work-card__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .14em;
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.work-card__link {
  margin: 1.15rem 1.25rem 1.25rem;
}
.work-card__image {
  height: 175px;
  filter: none;
  border-top: none;
  margin-top: 0;
}
.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}
.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: .95rem 1.9rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(18,85,126,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.services-cta__btn:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 14px 34px rgba(18,85,126,.12);
}
.services-cta__arrow {
  color: var(--red);
  display: inline-flex;
  transition: transform .25s var(--ease);
}
.services-cta__btn:hover .services-cta__arrow { transform: translateX(3px); }
@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__media,
  .about__text {
    max-width: 720px;
  }
  .about__media {
    justify-self: center;
    width: 100%;
  }
  .about::after {
    right: -20rem;
    width: 38rem;
  }
}
@media (max-width: 1100px) {
  .work-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 620px;
    height: 92svh;
  }
  .hero__h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .about {
    background:
      radial-gradient(circle at 20% 8%, rgba(220, 38, 38, .06), transparent 18rem),
      linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 72%, #EEF3F8 100%);
  }
  .about::before {
    content: none !important;
  }
  .about__media {
    margin-bottom: 0;
  }
  .about__media::before {
    inset: .65rem -.55rem -.55rem .65rem;
    border-radius: 12px;
  }
  .about__media-mask {
    border-radius: 10px;
    aspect-ratio: 4 / 5;
  }
  .about__proofs {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .about__status {
    min-width: 0;
    max-width: calc(100% - 2rem);
    padding: .75rem .85rem;
  }
  .about__badge {
    align-items: flex-start;
    border-radius: 10px;
    line-height: 1.35;
  }
  .about__proof {
    min-height: 0;
  }
  .about__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .about__actions .btn,
  .about__more {
    justify-content: center;
    width: 100%;
  }
  .work-cards {
    grid-template-columns: 1fr;
  }
  .work-card h3 {
    min-height: 0;
  }
  .work-card__image {
    height: 190px;
  }
}
@media (max-width: 768px) {
  .reveal,
  .reveal-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .footer__grid { text-align: center; }
  .footer__brand { align-items: center; }
  .footer__desc { max-width: 340px; margin-inline: auto; }
  .footer__nav { grid-template-columns: 1fr; gap: 2.25rem; justify-items: center; }
  .footer__col { width: 100%; }
  .footer__emergency { justify-content: center; }
  .footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: .6rem;
  }
}
