:root {
  --green: #88C540;
  --teal: #128F83;
  --lime: #d6ff92;
  --navy: #3B445D;
  --slate: #9AA5B5;
  --ink: #20262E;
  --dark: #10161d;
  --panel: rgba(255,255,255,.08);
  --panel-strong: rgba(255,255,255,.12);
  --line: rgba(255,255,255,.12);
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes pageIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes softPulse {
    0%, 100% { box-shadow: 0 20px 48px rgba(136,197,64,.22); }
    50% { box-shadow: 0 26px 70px rgba(136,197,64,.34); }
  }

  @keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 10%, rgba(136,197,64,.22), transparent 25%),
    radial-gradient(circle at 18% 52%, rgba(18,143,131,.28), transparent 24%),
    linear-gradient(145deg, #17202b, #20262E 46%, #10161d);
  overflow-x: hidden;
  animation: pageIn .7s ease both;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}
img { max-width: 100%; display: block; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(16,22,29,.72);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.topbar .shell {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16,22,29,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 176px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
}

.links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 500;
}

.links a[aria-current="page"] { color: #d6ff92; }

.links a {
  position: relative;
  padding: 8px 0;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transition: width .28s ease;
}

.links a:hover {
  color: #d6ff92;
}

.links a:hover::after,
.links a[aria-current="page"]::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}

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

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

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  color: #10161d;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), #d6ff92);
  box-shadow: 0 20px 48px rgba(136,197,64,.22);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: softPulse 4s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 28px 72px rgba(136,197,64,.38);
}

.btn.alt {
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  animation: none;
}

.btn.alt:hover {
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(214,255,146,.28), 0 18px 45px rgba(0,0,0,.18);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.30);
    z-index:999999;
    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.whatsapp-float svg{
    width:30px;
    height:30px;
    fill:#fff;
}

.hero,
.page-hero {
  position: relative;
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: #d6ff92;
  background: rgba(136,197,64,.1);
  border: 1px solid rgba(136,197,64,.2);
  font-size: 13px;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead {
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.75;
}

p {
  color: rgba(255,255,255,.68);
  line-height: 1.72;
}

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

.stage {
  position: relative;
  min-height: 580px;
  perspective: 1000px;
}

.photo-stage {
  min-height: 580px;
  display: grid;
  align-items: center;
}

.hospital-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.hospital-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
}

.hospital-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16,22,29,.86));
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.photo-caption strong {
  font-size: 22px;
}

.quick-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-points span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #d6ff92;
  background: rgba(136,197,64,.12);
  border: 1px solid rgba(136,197,64,.18);
  font-size: 12px;
  font-weight: 700;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(16,22,29,.9));
}

.image-panel-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.image-panel-text h3 {
  margin-bottom: 6px;
}

.facility-list {
  display: grid;
  gap: 12px;
}

.facility-mini {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.facility-mini b {
  display: block;
  margin-bottom: 2px;
}

.facility-mini span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, 82vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-28deg);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.02)),
    linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 40px 100px rgba(18,143,131,.34), inset 0 0 0 1px rgba(255,255,255,.2);
  animation: hover 7s ease-in-out infinite;
}

.core::before,
.core::after {
  content: "";
  position: absolute;
  border-radius: 30px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 26px 45px rgba(16,22,29,.22);
}

.core::before {
  width: 18%;
  height: 68%;
  left: 41%;
  top: 16%;
}

.core::after {
  width: 68%;
  height: 18%;
  left: 16%;
  top: 41%;
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 170px;
  border: 1px solid rgba(136,197,64,.32);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.float-card {
  position: absolute;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 55px rgba(0,0,0,.22);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
  animation: cardFloat 6s ease-in-out infinite;
}

.float-card b {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.float-card span {
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.5;
}

.float-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,.13);
  border-color: rgba(214,255,146,.28);
}

.c1 { left: 0; top: 86px; width: 210px; animation-delay: .2s; }
.c2 { right: 0; bottom: 96px; width: 225px; animation-delay: 1s; }
.c3 { left: 88px; bottom: 32px; width: 180px; animation-delay: 1.8s; }

@keyframes hover {
  0%, 100% { transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-28deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(54deg) rotateZ(-22deg) translateY(-18px); }
}

section { padding: 70px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 500px;
  margin-bottom: 0;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

.grid-4 .service {
  min-height: 245px;
}

.card,
.service,
.doctor,
.gallery-card,
.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.1);
  min-height: 100%;
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.card:hover,
.service:hover,
.doctor:hover,
.gallery-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.065));
  border-color: rgba(214,255,146,.26);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.service i,
.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  font-style: normal;
  font-weight: 700;
  transition: transform .28s ease, box-shadow .28s ease;
}

.service i {
  position: relative;
  overflow: hidden;
}

.service i::after {
  content: "";
  position: absolute;
  inset: auto -18px -20px auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.service i[data-icon] {
  font-size: 0;
}

.service i[data-icon]::before {
  content: attr(data-icon);
  font-size: 22px;
}

.specialty-card {
  min-height: 300px;
  padding: 26px;
}

.specialty-card figure {
  position: relative;
  margin: 0;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(135deg, var(--green), var(--teal));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 46px rgba(18,143,131,.25);
}

.specialty-card i {
  position: static;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.specialty-card i::after {
  width: 46px;
  height: 46px;
  right: -16px;
  bottom: -18px;
}

.specialty-card h3 {
  margin-top: 24px;
}

.service:hover i,
.card:hover .icon,
.doctor:hover .icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 16px 38px rgba(18,143,131,.34);
}

.service h3,
.doctor h3,
.gallery-card h3 {
  margin-top: 24px;
}

.doctor {
  position: relative;
  overflow: hidden;
}

.doctor::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,197,64,.22), transparent 70%);
}

.doctor .avatar {
  width: 100%;
  height: 180px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #10161d;
  font-size: 36px;
  font-weight: 800;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.95) 0 21px, transparent 22px),
    radial-gradient(circle at 50% 72%, rgba(255,255,255,.86) 0 48px, transparent 49px),
    linear-gradient(135deg, rgba(136,197,64,.88), rgba(18,143,131,.9));
  box-shadow: 0 18px 40px rgba(18,143,131,.25);
  transition: transform .28s ease, box-shadow .28s ease;
  margin-bottom: 20px;
}

.doctor:hover .avatar {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 24px 58px rgba(136,197,64,.3);
}

.meta {
  color: #d6ff92;
  font-size: 13px;
  font-weight: 700;
}

.mission,
.cta,
.wide-panel {
  border-radius: 34px;
  padding: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.mission {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

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

.stat {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  transition: transform .28s ease, background .28s ease;
}

.stat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.12);
}

.stat strong {
  display: block;
  color: #d6ff92;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #10161d;
  background: linear-gradient(135deg, #fff, #eaffc8);
}

.cta h2 { color: #10161d; }
.cta p { color: #4a5568; margin-bottom: 0; }

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  color: white;
  background: rgba(255,255,255,.08);
  font: inherit;
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(214,255,146,.48);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 4px rgba(136,197,64,.12);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder { color: rgba(255,255,255,.48); }

.form select option {
  color: #10161d;
  background: #ffffff;
}

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

.list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.74);
  transition: transform .24s ease, background .24s ease;
}

.list li:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,.1);
}

.gallery-visual {
  min-height: 180px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 22%, rgba(136,197,64,.35), transparent 26%),
    linear-gradient(135deg, rgba(18,143,131,.35), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.gallery-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
}

.gallery-visual::after {
  content: "";
  position: absolute;
  inset: -80% auto auto -40%;
  width: 70%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(18deg);
  transition: left .55s ease;
}

.gallery-card:hover .gallery-visual::after {
  left: 110%;
}

.site-footer {
  margin-top: 30px;
  padding: 54px 0 24px;
  color: rgba(255,255,255,.66);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(18,143,131,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(5,11,18,.3));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr 1.35fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: white;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 14px;
  color: #10161d;
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 18px;
}

.footer-contact-row {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-contact-row span {
  display: block;
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-contact-row a {
  display: inline-flex;
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  color: white;
  font-size: 0;
  text-decoration: none;
  transition: transform .24s ease, color .24s ease;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--lime);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 18px;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255,255,255,.66);
  text-decoration: none;
  margin: 8px 0;
  line-height: 1.42;
  font-size: 14px;
}

.site-footer .footer-title,
.site-footer .footer-title span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: white;
  font-size: 24px;
  line-height: 1;
}

.site-footer .footer-title {
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer .footer-mark {
  display: grid;
  place-items: center;
  color: #10161d;
  font-size: 26px;
}

.site-footer .footer-contact-row span {
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-footer .footer-contact-row a {
  display: inline-flex;
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-depts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
}

.footer-subhead {
  margin-top: 22px !important;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom span{
    margin:0;
    color:rgba(255,255,255,.60);
}

.footer-bottom a{
    color:#88C540;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#d6ff92;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 980px) {
  header {
    overflow: visible;
  }

  nav {
    position: relative;
    min-height: 74px;
    gap: 12px;
  }

  nav > .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(16,22,29,.96);
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .menu-open .links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .links a {
    padding: 14px 12px;
    border-radius: 12px;
  }

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

  .links a:hover,
  .links a[aria-current="page"] {
    color: #10161d;
    background: linear-gradient(135deg, var(--green), #d6ff92);
  }

  .hero-grid,
  .image-band,
  .mission,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats { grid-template-columns: 1fr; }
  .stage { min-height: 470px; }
  .photo-stage { min-height: auto; }
  .section-head,
  .cta { flex-direction: column; align-items: start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .topbar .shell { justify-content: center; text-align: center; }
  .logo { width: 146px; }
  .hero,
  .page-hero { padding: 56px 0 42px; }
  section { padding: 48px 0; }
  .stage { min-height: 430px; }
  .ring { width: 320px; }
  .float-card { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 100%; margin-top: 12px; }
  .core { top: 36%; width: 260px; }
  .mission,
  .cta,
  .wide-panel { padding: 28px; }
  .footer-grid { gap: 28px; }
  .footer-depts { grid-template-columns: 1fr; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
