:root {
  --color-dark-blue: #021F59;
  --color-light-blue: #26488C;
  --color-green: #54BF64;
  --color-white: #F2F2F2;
  --color-black: #0D0D0D;
  --font-primary: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-error: #b42318;
  --color-border: rgba(2, 31, 89, 0.14);
  --shadow-soft: 0 20px 54px rgba(2, 31, 89, 0.16);
  --shadow-card: 0 14px 34px rgba(2, 31, 89, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-black);
  background: var(--color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: 10px 16px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 80;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: 999px;
  background: var(--color-black);
  box-shadow: 0 16px 34px rgba(13, 13, 13, 0.32), 0 0 0 0 rgba(13, 13, 13, 0.24);
  text-decoration: none;
  animation: whatsappPulse 2.4s ease-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.04);
  outline: none;
  box-shadow: 0 18px 38px rgba(13, 13, 13, 0.36), 0 0 0 8px rgba(13, 13, 13, 0.12);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.floating-whatsapp span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  width: max-content;
  max-width: 180px;
  transform: translate(8px, -50%);
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover span,
.floating-whatsapp:focus-visible span {
  transform: translate(0, -50%);
  opacity: 1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 16px 34px rgba(13, 13, 13, 0.32), 0 0 0 0 rgba(13, 13, 13, 0.24);
  }

  70% {
    box-shadow: 0 16px 34px rgba(13, 13, 13, 0.32), 0 0 0 12px rgba(13, 13, 13, 0);
  }

  100% {
    box-shadow: 0 16px 34px rgba(13, 13, 13, 0.32), 0 0 0 0 rgba(13, 13, 13, 0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(2, 31, 89, 0.08);
  background: rgba(242, 242, 242, 0.97);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(2, 31, 89, 0.12);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 170px;
  height: auto;
}

.footer-brand img {
  width: 184px;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--color-dark-blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-green);
}

.nav-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-dark-blue);
}

.header-cta {
  display: none;
}

.button,
.contact-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--color-green);
  color: var(--color-dark-blue);
  box-shadow: 0 14px 30px rgba(84, 191, 100, 0.28);
}

.button-secondary,
.button-secondary-on-dark {
  border-color: rgba(2, 31, 89, 0.2);
  background: var(--color-white);
  color: var(--color-dark-blue);
}

.button-secondary-on-dark {
  border-color: rgba(242, 242, 242, 0.36);
  background: rgba(242, 242, 242, 0.08);
  color: var(--color-white);
}

.button-full {
  width: 100%;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

/* ─── NICS Social Proof Strip ──────────────────────────── */

.nics-strip {
  background: var(--color-green);
  padding: 28px 0;
}

.nics-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nics-stat {
  flex-shrink: 0;
  text-align: center;
}

.nics-stat strong {
  display: block;
  color: var(--color-dark-blue);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nics-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(2, 31, 89, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nics-divider {
  width: 2px;
  height: 48px;
  background: rgba(2, 31, 89, 0.2);
  border-radius: 999px;
  flex-shrink: 0;
}

.nics-copy {
  flex: 1 1 320px;
}

.nics-copy p {
  margin: 0;
  color: var(--color-dark-blue);
  font-size: 0.96rem;
  line-height: 1.55;
}

.nics-copy strong {
  font-weight: 900;
}

.accreditations {
  background: var(--color-white);
  padding: 44px 0 48px;
}

.accreditations-title {
  margin: 0 0 28px;
  text-align: center;
  color: rgba(2, 31, 89, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accreditations-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 68px);
}

.accreditations-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditations-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  outline-offset: 4px;
}

.accreditations-logos a:focus-visible {
  outline: 2px solid var(--color-light-blue);
}

.accreditations-logos img {
  display: block;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.accreditations-logos a:hover img,
.accreditations-logos a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}

/* Per-logo heights tuned so each reads with the same optical weight. */
.accreditations-logos .logo-msa { height: 34px; }
.accreditations-logos .logo-acsi { height: 42px; }
.accreditations-logos .logo-nics { height: 46px; }
.accreditations-logos .logo-oasis { height: 38px; }
.accreditations-logos .logo-cspn { height: 58px; }

@media (max-width: 639px) {
  .nics-divider {
    display: none;
  }

  .nics-inner {
    gap: 16px;
  }

  /* Wrap to two centered rows (3 + 2) so every logo stays large and legible. */
  .accreditations-logos {
    gap: 26px 0;
  }

  .accreditations-logos li {
    flex: 0 0 30%;
  }

  .accreditations-logos .logo-msa { height: 30px; }
  .accreditations-logos .logo-acsi { height: 40px; }
  .accreditations-logos .logo-nics { height: 44px; }
  .accreditations-logos .logo-oasis { height: 36px; }
  .accreditations-logos .logo-cspn { height: 56px; }
}

.section-wave {
  position: relative;
  overflow: hidden;
}

.section-wave::after {
  position: absolute;
  right: -10%;
  bottom: -90px;
  width: 50%;
  height: 180px;
  border: 2px solid rgba(84, 191, 100, 0.24);
  border-radius: 50% 50% 0 0;
  content: "";
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-light-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.values-strip .eyebrow,
.final-cta .eyebrow {
  color: var(--color-green);
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  color: var(--color-dark-blue);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  color: var(--color-dark-blue);
  font-size: 1.08rem;
}

p {
  color: rgba(13, 13, 13, 0.72);
  line-height: 1.65;
}

.hero {
  padding: clamp(42px, 7vw, 82px) 0 clamp(78px, 8vw, 112px);
  background:
    radial-gradient(circle at 10% 18%, rgba(84, 191, 100, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(2, 31, 89, 0.99), rgba(38, 72, 140, 0.96));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero h1 {
  color: var(--color-white);
}

.hero-lead,
.brand-statement {
  max-width: 680px;
  color: rgba(242, 242, 242, 0.84);
  font-size: 1.06rem;
}

.brand-statement {
  border-left: 5px solid var(--color-green);
  margin: 0 0 24px;
  padding-left: 14px;
  color: var(--color-white);
  font-weight: 900;
}

.hero-media {
  display: grid;
  gap: 20px;
}

.hero-media h1 {
  margin-bottom: 0;
}

.hero-video-frame {
  overflow: hidden;
  border: 8px solid rgba(242, 242, 242, 0.14);
  border-radius: var(--radius-lg);
  background: var(--color-dark-blue);
  box-shadow: var(--shadow-soft);
}

.video-facade,
.hero-video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--color-dark-blue);
}

.video-facade {
  position: relative;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-facade-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 200ms ease;
}

.video-facade-play-shape {
  fill: #212121;
  opacity: 0.85;
  transition: fill 200ms ease, opacity 200ms ease;
}

.video-facade:hover .video-facade-play-shape,
.video-facade:focus-visible .video-facade-play-shape {
  fill: #ff0000;
  opacity: 1;
}

.video-facade:hover .video-facade-play,
.video-facade:focus-visible .video-facade-play {
  transform: scale(1.06);
}

.video-facade:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 2px;
}

.hero-message {
  max-width: 680px;
}

.hero-message .brand-statement {
  margin: 0;
  color: var(--color-white);
}

.section-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Contextual CTAs ──────────────────────────────────── */

.inline-cta {
  margin: 38px 0 0;
}

.inline-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-light-blue);
  font-weight: 900;
  text-decoration: none;
}

.inline-cta a span {
  transition: transform 180ms ease;
}

.inline-cta a:hover,
.inline-cta a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inline-cta a:hover span,
.inline-cta a:focus-visible span {
  transform: translateX(4px);
}

.values-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* Strong conviction band after "Why BIS" */
.cta-band {
  background: var(--color-dark-blue);
  padding: clamp(40px, 6vw, 64px) 0;
}

.cta-band-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-band-copy h2 {
  margin: 0 0 10px;
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.25;
}

.cta-band-copy p {
  margin: 0;
  color: rgba(242, 242, 242, 0.78);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
  }
}

/* WhatsApp icon inside pill buttons */
.button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lead-form {
  border: 1px solid rgba(242, 242, 242, 0.22);
  border-top: 8px solid var(--color-green);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow-soft);
}

.hero-form {
  scroll-margin-top: 94px;
}

.form-intro {
  margin-bottom: 22px;
}

.form-intro h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.form-intro p {
  margin-bottom: 0;
}

.form-section {
  min-width: 0;
  margin: 0 0 22px;
  border: 0;
  border-top: 1px solid var(--color-border);
  padding: 18px 0 0;
}

.form-section legend {
  padding-right: 12px;
  color: var(--color-light-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.two-columns {
  gap: 16px;
}

label {
  color: var(--color-dark-blue);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(2, 31, 89, 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-dark-blue) 50%),
    linear-gradient(135deg, var(--color-dark-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-light-blue);
  box-shadow: 0 0 0 4px rgba(38, 72, 140, 0.14);
}

.conditional-field {
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius-sm);
  background: rgba(84, 191, 100, 0.08);
  padding: 14px;
}

.field-error {
  min-height: 18px;
  color: var(--color-error);
  font-size: 0.82rem;
  font-weight: 800;
}

.privacy-note {
  margin-bottom: 16px;
  color: rgba(13, 13, 13, 0.68);
  font-size: 0.84rem;
}

.privacy-note a {
  color: var(--color-light-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  margin: 16px 0 0;
  border-radius: var(--radius-sm);
  background: rgba(84, 191, 100, 0.14);
  color: var(--color-dark-blue);
  padding: 12px 14px;
  font-weight: 900;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.compact {
  max-width: 680px;
}

.academic-journey {
  background: var(--color-white);
}

.journey-intro {
  max-width: 700px;
  margin-bottom: 34px;
}

.journey-intro h2 {
  max-width: 720px;
}

.journey-intro p:last-child {
  margin-bottom: 0;
}

.journey-grid {
  display: grid;
  gap: 16px;
}

.journey-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(242, 242, 242, 0.72);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.journey-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(84, 191, 100, 0.34);
  border-radius: 999px;
  background: rgba(84, 191, 100, 0.1);
  color: var(--color-dark-blue);
  padding: 8px 13px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-bottom: 10px;
}

.journey-card p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.benefit-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: var(--color-green);
  content: "";
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--color-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.benefit-card p {
  margin-bottom: 0;
}

.values-strip,
.final-cta {
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--color-dark-blue);
  color: var(--color-white);
}

.values-grid,
.visit-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.values-grid {
  align-items: stretch;
  gap: 34px;
}

.values-header {
  max-width: 760px;
}

.values-strip h2,
.values-strip p,
.final-cta h2,
.final-cta p {
  color: var(--color-white);
}

.values-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.values-strip p,
.final-cta p {
  color: rgba(242, 242, 242, 0.78);
}

.values-card-grid {
  display: grid;
  gap: 18px;
}

.values-card {
  min-height: 288px;
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-top: 4px solid var(--color-green);
  border-radius: var(--radius-md);
  background: rgba(242, 242, 242, 0.07);
  padding: clamp(22px, 3vw, 28px);
}

.values-card p {
  margin-bottom: 0;
}

.values-card-title {
  margin-bottom: 18px;
  color: var(--color-green) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  border: 1px solid rgba(84, 191, 100, 0.36);
  border-radius: 999px;
  background: rgba(84, 191, 100, 0.12);
  color: var(--color-white);
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 900;
}

.visit-section {
  background: var(--color-white);
}

.creative-carousel {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.carousel-viewport {
  width: min(100%, 360px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark-blue);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(84, 191, 100, 0.5);
  background: rgba(84, 191, 100, 0.1);
  outline: none;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 31, 89, 0.22);
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 24px;
  background: var(--color-green);
}

.final-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  align-items: center;
}

.contact-button {
  background: var(--color-white);
  color: var(--color-dark-blue);
}

.contact-button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer {
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 1rem;
}

.site-footer p,
.footer-bottom {
  color: rgba(242, 242, 242, 0.72);
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(242, 242, 242, 0.78);
  text-decoration: none;
}

.site-footer p a {
  display: inline;
  margin-bottom: 0;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-green);
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(242, 242, 242, 0.14);
  padding-top: 22px;
}

@media (max-width: 767px) {
  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    z-index: 60;
    display: grid;
    visibility: hidden;
    transform: translateY(-8px);
    gap: 4px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    padding: 14px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(84, 191, 100, 0.12);
  }

  .brand img {
    width: 152px;
  }

  .section-actions .button,
  .final-actions .button,
  .final-actions .contact-button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (min-width: 640px) {
  .journey-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  }

  .values-grid,
  .visit-grid,
  .final-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.7fr 1.1fr;
  }
}

@media (min-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    grid-column: span 2;
  }
}

@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;
  }

  .floating-whatsapp {
    animation: none;
  }
}

/* ─── Statement block (English / building freedom) ─────── */

.statement {
  padding: clamp(64px, 8vw, 104px) 0;
  background: linear-gradient(180deg, rgba(38, 72, 140, 0.06), rgba(242, 242, 242, 0));
}

.statement-inner {
  max-width: 840px;
}

.statement h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.04;
}

.statement-line,
.statement-accent {
  display: block;
}

.statement-accent {
  color: var(--color-green);
}

.statement-lead {
  margin-bottom: 14px;
  color: var(--color-dark-blue);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  font-weight: 800;
}

.statement p:last-child {
  margin-bottom: 0;
}

/* ─── Differentiators (What makes this different) ──────── */

.diff-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.diff-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.diff-check {
  flex-shrink: 0;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(84, 191, 100, 0.14);
  color: var(--color-green);
  font-size: 1.05rem;
  font-weight: 900;
}

.diff-body h3 {
  margin-bottom: 6px;
  font-size: 1.14rem;
}

.diff-body p {
  margin-bottom: 0;
}

/* ─── Conviction band (The world changes) ──────────────── */

.conviction {
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(84, 191, 100, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--color-dark-blue), var(--color-light-blue));
  color: var(--color-white);
  text-align: center;
}

.conviction-inner {
  max-width: 820px;
  margin-inline: auto;
}

.conviction h2 {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.02;
}

.conviction h2 span:last-child {
  color: var(--color-green);
}

.conviction-lead {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(242, 242, 242, 0.85);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
}

.conviction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ─── AP highlight ─────────────────────────────────────── */

.ap-highlight {
  background: var(--color-white);
}

.ap-card {
  display: grid;
  gap: 26px;
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-green);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(2, 31, 89, 0.03), rgba(84, 191, 100, 0.06));
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-card);
}

.ap-lead h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.ap-lead p {
  margin-bottom: 12px;
}

.ap-lead p:last-child {
  margin-bottom: 0;
}

.ap-lead .inline-cta {
  margin-top: 18px;
}

.ap-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ap-facts li {
  display: grid;
  gap: 3px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 14px 16px;
}

.ap-facts strong {
  color: var(--color-dark-blue);
  font-size: 0.98rem;
}

.ap-facts span {
  color: rgba(13, 13, 13, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ap-disclaimer {
  margin: 16px 0 0;
  color: rgba(13, 13, 13, 0.5);
  font-size: 0.76rem;
  line-height: 1.5;
}

@media (min-width: 860px) {
  .ap-card {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .conviction-actions .button {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* ─── Language toggle (EN / PT-BR) ──────────────────────── */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-green);
  color: var(--color-green);
  outline: none;
}

.lang-toggle-icon {
  flex: none;
}

/* --- Lead form: consent, honeypot, feedback ------------------------------- */
.form-consent {
  margin-top: 0.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--color-green);
}

.consent-label a {
  color: var(--color-light-blue);
  text-decoration: underline;
}

/* Honeypot: kept in the DOM for bots, hidden from real users and assistive tech. */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.is-success {
  background: rgba(84, 191, 100, 0.14);
  color: #1c7a2c;
}

.form-feedback.is-error {
  background: rgba(180, 35, 24, 0.1);
  color: var(--color-error);
}
