:root {
  --navy: #061d34;
  --navy-2: #083b56;
  --blue: #17c1dd;
  --blue-2: #79e7f5;
  --sky: #e9fbff;
  --ice: #f6fdff;
  --muted: #5e7282;
  --line: rgba(6,29,52,.12);
  --white: #fff;
  --shadow: 0 22px 52px rgba(6,29,52,.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--ice);
  line-height: 1.42;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 70px 0; }
.compact-section { padding: 58px 0; }
.section-light { background: linear-gradient(180deg, #f7fdff 0%, #eefaff 100%); }
.section-dark {
  background: radial-gradient(circle at 82% 0%, rgba(23,193,221,.24), transparent 34%), linear-gradient(135deg, #061d34, #075876);
  color: white;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { left: 10px; top: 10px; }

.promo-bar {
  background: linear-gradient(90deg, var(--blue), #45dff1);
  color: var(--navy);
  font-weight: 850;
  position: relative;
  z-index: 16;
}
.promo-bar__inner {
  min-height: 42px;
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-bar__inner span:not(.pill) { color: rgba(6,29,52,.78); font-size: .86rem; }
.promo-bar__link { text-decoration: underline; text-underline-offset: 4px; font-weight: 900; }
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 6px 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .74rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(246,253,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img { width: 230px; height: auto; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #24455a;
  font-weight: 850;
  font-size: .92rem;
}
.nav-cta {
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 950;
}

.hero {
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 76% 10%, rgba(23,193,221,.34), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(121,231,245,.24), transparent 32%),
    linear-gradient(180deg, #f8feff 0%, #effbff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .92fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #07637d;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: .78rem;
}
.eyebrow span:first-child {
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  flex: 0 0 auto;
}
.eyebrow-light { color: #9af2ff; }
h1, h2 {
  margin: 0;
  letter-spacing: -.06em;
  line-height: .96;
}
.hero h1 {
  font-size: clamp(3.7rem, 6.8vw, 6.7rem);
  max-width: 780px;
}
.lede {
  margin: 22px 0 0;
  max-width: 640px;
  color: #425d70;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 680;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), #07506d);
  color: white;
  box-shadow: 0 18px 38px rgba(6,29,52,.22);
}
.btn-ghost {
  background: rgba(255,255,255,.78);
  border-color: rgba(6,29,52,.13);
  color: var(--navy);
}
.btn-icon { gap: 10px; }
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(23,193,221,.18);
  color: inherit;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: -.02em;
}
.btn-primary .icon-circle { background: rgba(255,255,255,.18); }
.btn-block { width: 100%; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  max-width: 560px;
  padding: 14px 16px;
  border: 1px solid rgba(6,29,52,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.64);
}
.trust-row img { width: 76px; flex: 0 0 auto; }
.trust-row p { margin: 0; color: #466173; font-size: .96rem; }
.trust-row strong { color: var(--navy); }
.hero-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  border: 10px solid white;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(6,29,52,.18));
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: min(56vh, 520px);
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.service { background: #f7fdff; }
.service-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 62px;
  align-items: start;
}
.service h2, .section-head h2, .contact h2, .faq h2, .events-title h2 {
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}
.copy-block {
  color: #425d70;
  font-size: 1.16rem;
  font-weight: 630;
  padding-top: 34px;
}
.copy-block p { margin: 0 0 22px; }
.copy-block p:last-child { margin-bottom: 0; }
.service-cards { margin-top: 44px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  min-height: 260px;
  box-shadow: 0 16px 42px rgba(6,29,52,.08);
}
.info-card--blue {
  background: linear-gradient(135deg, #21c3df, #72e6f3);
  color: var(--navy);
}
.card-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(6,29,52,.07);
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  font-size: .7rem;
}
.info-card h3 {
  margin: 26px 0 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.18rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.info-card p { margin: 0; color: #587082; font-size: 1rem; font-weight: 650; }
.info-card--blue p { color: rgba(6,29,52,.78); }

.events-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 66px;
  align-items: center;
}
.events-title p:last-child {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 1.06rem;
  max-width: 620px;
}
.event-list { display: grid; gap: 18px; }
.event-list article {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.11);
  padding: 30px;
  backdrop-filter: blur(12px);
}
.event-list span {
  color: #90f0ff;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 950;
  font-size: .78rem;
}
.event-list h3 {
  margin: 18px 0 0;
  color: white;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head--wide { max-width: 820px; margin-bottom: 0; }
.section-head p:last-child {
  color: #526d80;
  font-size: 1.1rem;
  font-weight: 600;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps article {
  border-top: 4px solid var(--blue);
  padding: 22px 20px;
  background: white;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 34px rgba(6,29,52,.07);
}
.steps span { color: var(--blue); font-weight: 950; letter-spacing: .14em; }
.steps h3 { margin: 16px 0 10px; font-size: 1.26rem; line-height: 1.04; }
.steps p { margin: 0; color: #5d7282; font-weight: 600; font-size: .96rem; }

.promo-section { padding-top: 0; }
.promo-card {
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: radial-gradient(circle at 88% 10%, rgba(255,255,255,.5), transparent 28%), linear-gradient(135deg, #20c3df, #8cecf6);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.promo-card h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); }
.promo-card p:last-child { margin: 14px 0 0; font-size: 1.08rem; font-weight: 750; color: rgba(6,29,52,.78); }

.gallery-head-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}
.gallery-intro {
  margin: 0 0 6px;
  color: #526d80;
  font-size: 1.12rem;
  font-weight: 650;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #dff7fc;
  box-shadow: 0 16px 40px rgba(6,29,52,.09);
  aspect-ratio: 1 / .78;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coverage h2, .coverage-compact h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.9rem);
  max-width: 680px;
}
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.coverage-list span {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(6,29,52,.06);
}

.contact { padding: 64px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 64px;
  align-items: center;
}
.contact p { color: rgba(255,255,255,.8); font-size: 1.1rem; font-weight: 600; }
.contact-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  padding: 26px;
  display: grid;
  gap: 12px;
}
.contact-card .btn-ghost { color: white; background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.18); }
.phone { margin: 10px 0 0; text-align: center; }

.faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
}
.sticky-head { position: sticky; top: 120px; align-self: start; }
.faq-list { display: grid; gap: 14px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: 0 14px 36px rgba(6,29,52,.06);
}
summary { cursor: pointer; font-weight: 950; font-size: 1.16rem; }
details p { margin: 14px 0 0; color: #536d7f; font-weight: 600; }

.footer {
  background: #031626;
  color: rgba(255,255,255,.76);
  padding: 42px 0 90px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer img { width: 210px; }
.footer p { margin: 0 0 10px; }
.footer a { color: white; text-decoration: underline; text-underline-offset: 4px; }
.floating-whatsapp {
  display: none;
  position: fixed;
  z-index: 15;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: linear-gradient(135deg, var(--navy), #07506d);
  color: white;
  border-radius: 999px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(6,29,52,.24);
}

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 760px; }
  .hero-photo img { height: 430px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .section-pad { padding: 60px 0; }
  .nav { height: 70px; }
  .brand img { width: 190px; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { min-height: auto; padding: 46px 0 54px; }
  .service-grid, .events-grid, .contact-grid, .faq-grid, .gallery-head-grid, .coverage-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .copy-block { padding-top: 0; }
  .hero h1 { font-size: clamp(3.6rem, 12vw, 5.6rem); }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .coverage-list { justify-content: flex-start; }
  .promo-card { flex-direction: column; align-items: flex-start; }
  .sticky-head { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .promo-bar__inner { justify-content: flex-start; overflow-x: auto; }
  .promo-bar__inner span:not(.pill), .promo-bar__link { display: none; }
  .nav-cta { display: none; }
  .brand img { width: 168px; }
  .hero { padding-top: 38px; }
  .hero-grid { gap: 28px; }
  .hero h1 { letter-spacing: -.07em; }
  .lede { font-size: 1.08rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row { align-items: flex-start; }
  .trust-row img { width: 64px; }
  .hero-photo img { min-height: 300px; height: 42vh; }
  .service h2, .section-head h2, .coverage h2, .coverage-compact h2, .contact h2, .faq h2, .events-title h2, .promo-card h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
  .card-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure { aspect-ratio: 1.15 / .78; }
  .info-card, .event-list article, .promo-card, .contact-card { padding: 24px; border-radius: 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp { display: block; }
}
