:root {
  --white: #ffffff;
  --blue: #002f67;
  --blue-deep: #002b5f;
  --blue-soft: rgba(0, 47, 103, 0.06);
  --blue-line: rgba(0, 47, 103, 0.14);
  --blue-muted: rgba(0, 47, 103, 0.72);
  --gold: #ffd200;
  --gold-soft: rgba(255, 210, 0, 0.18);
  --shadow: 0 22px 60px rgba(0, 47, 103, 0.13);
  --shadow-strong: 0 28px 80px rgba(0, 47, 103, 0.24);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue);
  background: var(--white);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-mark path {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--blue);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 900;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 47, 103, 0.08);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 44px rgba(0, 47, 103, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 47, 103, 0.12);
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--blue);
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--blue-muted);
  font-size: 12px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 47, 103, 0.1);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 78px 12px auto;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: var(--gold-soft);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 18px 44px;
  color: var(--blue);
  background: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.05) brightness(0.98);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.84));
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: center;
}

.hero-brand-panel {
  width: fit-content;
  display: grid;
  place-items: center;
}

.hero-text-panel {
  display: grid;
  gap: 18px;
  max-width: 790px;
}

.hero-crest {
  width: 140px;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 38px rgba(0, 47, 103, 0.2));
}

.institution,
.section-label {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .institution {
  width: fit-content;
  padding: 6px 10px;
  color: var(--blue-deep);
  background: linear-gradient(90deg, var(--gold), rgba(255, 210, 0, 0.72));
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(255, 210, 0, 0.2);
}

.hero h1,
.section h2,
.split-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 42px;
  line-height: 0.98;
  color: var(--blue-deep);
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: rgba(0, 47, 103, 0.82);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  margin-top: 4px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  color: var(--blue);
  background: var(--gold);
  box-shadow: 0 18px 46px rgba(255, 210, 0, 0.24);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(0, 47, 103, 0.28);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(0, 47, 103, 0.08);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 62px rgba(255, 210, 0, 0.34);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin-top: 10px;
  border: 1px solid rgba(0, 47, 103, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(0, 47, 103, 0.1);
  overflow: hidden;
}

.hero-proof span {
  min-height: 74px;
  display: grid;
  align-content: center;
  padding: 14px;
  border-left: 1px solid rgba(0, 47, 103, 0.12);
  color: rgba(0, 47, 103, 0.74);
  font-size: 13px;
  line-height: 1.25;
}

.hero-proof span:first-child {
  border-left: 0;
}

.hero-proof strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
}

.section {
  scroll-margin-top: 86px;
  padding: 72px 18px;
  background: var(--white);
  color: var(--blue);
}

.section-heading,
.section-grid,
.principles,
.courses-grid,
.split-band,
.differentials-grid,
.gallery-grid,
.review-summary,
.testimonial-grid,
.footer-grid,
.footer-bottom {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading h2,
.section-copy h2,
.split-copy h2,
.final-cta h2 {
  max-width: 820px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.08;
}

.section-heading p:not(.section-label),
.section-copy p,
.split-copy p,
.final-cta-copy p,
.site-footer p {
  margin: 0;
  color: var(--blue-muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 16px;
}

.feature-photo,
.split-media,
.final-cta-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.feature-photo {
  aspect-ratio: 4 / 3;
}

.feature-photo img,
.split-media img,
.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo::after,
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.principles {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.principles article,
.course-card,
.diff-card,
.testimonial-card {
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 47, 103, 0.08);
}

.principles article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.principles span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}

.principles h3,
.course-card h3,
.diff-card h3,
.testimonial-card strong,
.site-footer h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.principles h3 {
  font-size: 24px;
}

.principles p,
.course-card p,
.diff-card p,
.testimonial-card p {
  margin: 0;
  color: var(--blue-muted);
  line-height: 1.55;
}

.section-dark {
  background: var(--blue);
  color: var(--white);
}

.section-dark .section-label {
  color: var(--gold);
}

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

.section-dark .section-heading p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
}

.courses-grid {
  display: grid;
  gap: 14px;
}

.course-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.course-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--gold);
}

.course-card h3 {
  font-size: 22px;
}

.course-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.course-card a:hover,
.course-card a:focus-visible {
  background: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.split-band {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split-media {
  aspect-ratio: 16 / 10;
}

.split-media img {
  object-position: center;
  filter: contrast(1.04) saturate(0.96);
}

.split-copy {
  display: grid;
  gap: 16px;
}

.differentials-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.diff-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.diff-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--gold-soft);
}

.diff-card h3 {
  font-size: 21px;
}

.section-gallery {
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(0, 47, 103, 0.045) 100%);
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--blue-soft);
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 47, 103, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: block;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 47, 103, 0.9);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

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

.section-testimonials {
  background: var(--white);
}

.review-summary {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-score strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.review-score span {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.review-score small,
.review-summary p {
  color: rgba(255, 255, 255, 0.8);
}

.review-summary p {
  margin: 0;
  line-height: 1.55;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 210, 0, 0.64);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  gap: 14px;
}

.testimonial-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.testimonial-card p {
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}

.testimonial-card strong {
  font-size: 21px;
}

.testimonial-card span {
  color: var(--blue-muted);
}

.testimonial-meta {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  background: var(--blue);
  color: var(--white);
}

.final-cta-media {
  min-height: 360px;
  border-radius: 0;
  box-shadow: none;
}

.final-cta-media img {
  object-position: center 40%;
  filter: contrast(1.05) saturate(0.95);
}

.final-cta-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 50px 18px 78px;
}

.final-cta .section-label {
  color: var(--gold);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.btn-large {
  width: min(100%, 460px);
  min-height: 64px;
}

.phone-note {
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 18px !important;
  font-weight: 900;
}

.site-footer {
  padding: 54px 18px 34px;
  background: var(--white);
  color: var(--blue);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  display: table;
  margin-top: 9px;
  color: var(--blue);
  font-weight: 800;
}

.footer-link,
.social-links a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.map-panel {
  width: min(100%, var(--max));
  height: 340px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--blue-line);
  color: var(--blue-muted);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(0, 47, 103, 0.12);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--gold);
  box-shadow: 0 18px 46px rgba(0, 47, 103, 0.24);
  font-family: var(--font-display);
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-whatsapp span {
  display: none;
}

.gallery-dialog {
  width: min(92vw, 980px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-strong);
}

.gallery-dialog::backdrop {
  background: rgba(0, 47, 103, 0.72);
  backdrop-filter: blur(7px);
}

.gallery-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--blue);
}

.gallery-dialog p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 47, 103, 0.88);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 680px) {
  .site-header {
    padding-inline: 28px;
  }

  .hero {
    padding-inline: 28px;
  }

  .hero-crest {
    width: 190px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .section {
    padding: 88px 28px;
  }

  .section-heading h2,
  .section-copy h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: 44px;
  }

  .section-grid,
  .split-band,
  .final-cta {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .final-cta-copy {
    padding: 76px 38px;
  }
}

@media (min-width: 940px) {
  .floating-whatsapp span {
    display: inline;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.64) 44%, rgba(255, 255, 255, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.66));
  }

  .hero-content {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 42px;
  }

  .hero-brand-panel {
    align-self: center;
  }

  .hero-crest {
    width: clamp(270px, 28vw, 320px);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .hero-actions {
    width: min(100%, 560px);
  }

  .section-grid {
    grid-template-columns: 1fr 0.88fr;
  }

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

  .courses-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .course-card {
    min-height: 318px;
  }

  .split-band {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

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

  .review-summary {
    grid-template-columns: 0.8fr 1.4fr auto;
    align-items: center;
  }

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

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

  .final-cta-media {
    min-height: 620px;
  }

  .final-cta-copy {
    padding-inline: 70px;
  }
}

@media (min-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    gap: 54px;
  }

  .hero-crest {
    width: clamp(380px, 30vw, 470px);
  }

  .hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 94svh;
    padding-bottom: 118px;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-crest {
    width: 132px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .hero-proof span,
  .hero-proof span:first-child {
    border-left: 0;
    border-top: 1px solid rgba(0, 47, 103, 0.12);
  }

  .hero-proof span:first-child {
    border-top: 0;
  }

  .section-heading h2,
  .section-copy h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .review-score {
    align-items: flex-start;
  }

  .review-score strong {
    font-size: 42px;
  }

  .floating-whatsapp {
    width: 58px;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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