:root {
  --blue-900: #082b66;
  --blue-800: #024690;
  --blue-700: #0051aa;
  --blue-100: #eaf3ff;
  --red-600: #e92836;
  --red-700: #c91220;
  --gold-500: #f2a900;
  --ink: #162033;
  --muted: #5d6a7c;
  --line: #dfe7f1;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 43, 102, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(233, 40, 54, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 30;
  background: var(--white);
  color: var(--blue-900);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: relative !important;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center !important;
  min-height: 92px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: var(--white);
  border-bottom: 1px solid rgba(2, 70, 144, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 800;
}

.brand img {
  width: clamp(260px, 24vw, 360px) !important;
  height: 78px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.site-header .btn-header {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 24px rgba(233, 40, 54, 0.24);
}

.btn-primary:hover {
  background: var(--red-700);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.btn-header {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-600);
  font-size: 0.94rem;
}

.hero {
  position: relative;
  min-height: calc(88vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-banner {
  min-height: 0;
  display: block;
  overflow: visible;
  background: var(--white);
}

.hero-media,
.hero-media img,
.final-media,
.final-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.final-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 43, 102, 0.92) 0%, rgba(8, 43, 102, 0.72) 42%, rgba(8, 43, 102, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 43, 102, 0.68), rgba(8, 43, 102, 0.05) 48%);
}

.hero-banner .hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 70px;
  color: var(--white);
}

.hero-banner .hero-content {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 18px 0 22px;
  color: var(--ink);
}

.hero-banner .hero-media,
.hero-banner .hero-media img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
}

.hero-banner .hero-media img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffcc68;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  color: inherit;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.5vw, 4.9rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-banner .hero-actions {
  margin-bottom: 0;
}

.banner-actions {
  width: min(100%, 720px);
  justify-content: center;
}

.banner-actions .btn-secondary {
  color: var(--blue-900);
  border-color: rgba(8, 43, 102, 0.18);
  background: var(--white);
  box-shadow: none;
}

.banner-actions .btn-secondary:hover {
  background: var(--blue-100);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.hero-proof strong,
.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 86px 0;
}

.trust-section,
.gallery-section {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  max-width: 900px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

.info-card {
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 43, 102, 0.06);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-800);
  font-weight: 900;
}

.info-card p,
.copy-block p,
.practical-panel p,
.final-content p {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.copy-block {
  max-width: 540px;
}

.copy-block .btn {
  margin-top: 8px;
}

.media-block {
  min-height: 520px;
}

.rounded-media,
.rounded-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius);
}

.rounded-media img {
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-slider {
  position: relative;
  min-width: 0;
}

.slider-track {
  position: relative;
}

.slider-slide[hidden] {
  display: none !important;
}

.slider-slide.is-active {
  animation: slider-fade 0.42s ease;
}

.slider-picture,
.slider-picture img,
.space-picture,
.space-picture img {
  display: block;
  width: 100%;
}

.emotional-slider {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.emotional-slider .slider-picture img {
  min-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 43, 102, 0.72);
  box-shadow: 0 8px 24px rgba(8, 43, 102, 0.24);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.18s ease, transform 0.18s ease;
}

.slider-arrow:hover {
  background: var(--blue-900);
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: 14px;
}

.slider-next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(8, 43, 102, 0.46);
  cursor: pointer;
  transition: width 0.18s ease, border-radius 0.18s ease, background 0.18s ease;
}

.slider-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--white);
}

.illustrative-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 43, 102, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.emotional-slider .illustrative-badge {
  top: 12px;
  bottom: auto;
}

@keyframes slider-fade {
  from {
    opacity: 0.25;
  }

  to {
    opacity: 1;
  }
}

.pedagogy-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

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

.spaces-slider {
  max-width: 1080px;
  margin: 0 auto;
}

.space-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.space-tab {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.space-tab:hover {
  border-color: rgba(2, 70, 144, 0.36);
  background: var(--blue-100);
}

.space-tab.is-active {
  border-color: var(--blue-800);
  color: var(--white);
  background: var(--blue-800);
}

.space-track {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.space-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.72fr);
  min-height: 530px;
}

.space-visual {
  position: relative;
  min-width: 0;
  background: var(--blue-100);
}

.space-picture,
.space-picture img,
.space-gallery-slider,
.space-gallery-track,
.space-gallery-slide,
.space-gallery-picture,
.space-gallery-picture img {
  height: 100%;
}

.space-picture img,
.space-gallery-picture img {
  display: block;
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.space-gallery-slider {
  min-height: 530px;
  overflow: hidden;
}

.space-gallery-slide {
  margin: 0;
}

.space-gallery-slider .illustrative-badge {
  top: 12px;
  bottom: auto;
}

.space-gallery-slider .slider-dots {
  bottom: 12px;
}

.space-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
}

.space-group {
  margin-bottom: 10px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.space-copy h3 {
  margin-bottom: 16px;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.space-copy > p:not(.space-group) {
  color: var(--muted);
}

.space-counter {
  margin-top: 18px;
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 900;
}

.space-arrows {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.space-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-900);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.space-arrow:hover {
  border-color: rgba(2, 70, 144, 0.32);
  background: var(--blue-100);
}

.spaces-disclaimer {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 43, 102, 0.07);
}

.project-slider {
  overflow: hidden;
  background: var(--blue-900);
}

.project-slide {
  margin: 0;
}

.project-picture,
.project-picture img,
.project-fallback-image,
.image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-slider .slider-arrow {
  width: 40px;
  height: 40px;
}

.project-slider .illustrative-badge {
  top: 10px;
  right: 10px;
  bottom: auto;
  max-width: calc(100% - 20px);
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--blue-800);
  background: linear-gradient(135deg, var(--blue-100), #fff6f7);
  font-weight: 800;
}

.project-copy {
  min-height: 138px;
  padding: 18px 20px 20px;
}

.project-copy h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.2;
}

.project-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.gallery-disclaimer {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

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

.practical-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.practical-panel {
  position: sticky;
  top: 102px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow);
}

.practical-panel h2 {
  color: var(--white);
}

.practical-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.practical-panel .btn {
  width: 100%;
  margin: 8px 0 22px;
}

.mini-label {
  margin: 18px 0 4px;
  color: #ffcc68 !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #ffcc68;
  font-weight: 900;
  text-decoration: none;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  border-radius: var(--radius);
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  display: inline-grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-800);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--red-600);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 43, 102, 0.9), rgba(8, 43, 102, 0.56)),
    linear-gradient(0deg, rgba(8, 43, 102, 0.24), rgba(8, 43, 102, 0.24));
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.final-content h2 {
  max-width: 780px;
}

.final-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.final-content .final-microcopy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.site-footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #071f4b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(230px, 1.1fr) minmax(170px, 0.75fr) minmax(190px, 0.85fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: flex-start;
  padding-bottom: 34px;
}

.footer-school-name,
.footer-heading {
  display: block;
  color: var(--white);
}

.footer-school-name {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.footer-heading {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 0;
  line-height: 1.72;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.footer-column a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.social-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-social-link:hover .social-icon {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon.facebook svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.developer-credit {
  text-align: right;
}

.developer-credit a,
.developer-credit strong {
  color: var(--white);
  font-weight: 800;
}

.developer-credit a {
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #21a65b;
  box-shadow: 0 14px 34px rgba(33, 166, 91, 0.36);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(33, 166, 91, 0.42);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.mobile-copy {
  display: none;
}

.hero-static-banner {
  display: block;
  overflow: hidden;
  background: var(--white);
}

.banner-media,
.banner-media img {
  display: block;
  width: 100%;
}

.banner-media img {
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.banner-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px 0 24px;
}

.banner-secondary {
  color: var(--blue-900);
  border: 1px solid rgba(8, 43, 102, 0.18);
  background: var(--white);
  box-shadow: none;
}

.banner-secondary:hover {
  background: var(--blue-100);
}

@media (max-width: 980px) {
  .trust-grid,
  .pedagogy-grid,
  .projects-grid,
  .practical-grid,
  .split-band {
    grid-template-columns: 1fr 1fr;
  }

  .practical-panel {
    position: static;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: 86px;
    padding: 7px 14px;
  }

  .brand img {
    width: min(286px, 84vw) !important;
    height: 72px !important;
  }

  .btn-header {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: calc(86vh - 68px);
    align-items: end;
  }

  .hero-banner {
    min-height: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 43, 102, 0.96) 0%, rgba(8, 43, 102, 0.76) 52%, rgba(8, 43, 102, 0.2) 100%),
      linear-gradient(90deg, rgba(8, 43, 102, 0.35), rgba(8, 43, 102, 0.12));
  }

  .hero-banner .hero-overlay {
    display: none;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-content {
    padding: 58px 0 36px;
  }

  .hero-banner .hero-content {
    min-height: 0;
    padding: 14px 0 18px;
  }

  .hero-banner .hero-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .final-content p {
    font-size: 1rem;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

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

  .banner-actions {
    gap: 10px;
  }

  .banner-actions .btn-secondary {
    min-height: 44px;
    color: var(--blue-900);
    background: var(--white);
  }

  .hero-actions .btn,
  .copy-block .btn,
  .final-content .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof strong,
  .hero-proof span {
    padding: 7px 9px;
    font-size: 0.86rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .trust-grid,
  .pedagogy-grid,
  .projects-grid,
  .practical-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band {
    gap: 26px;
  }

  .media-block,
  .rounded-media,
  .rounded-media img {
    min-height: 360px;
  }

  .emotional-slider .slider-picture img {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .project-picture,
  .project-picture img,
  .project-fallback-image {
    aspect-ratio: 4 / 5;
  }

  .project-copy {
    min-height: 0;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .illustrative-badge {
    right: 9px;
    bottom: 10px;
    font-size: 0.67rem;
  }

  .space-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .space-slide-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .space-picture img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .space-gallery-slider,
  .space-gallery-track,
  .space-gallery-slide,
  .space-gallery-picture {
    height: auto;
    min-height: 0;
  }

  .space-gallery-picture img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .space-copy {
    padding: 24px 22px 26px;
  }

  .space-copy h3 {
    font-size: 1.75rem;
  }

  .space-arrows {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .space-arrow {
    justify-content: center;
  }

  .spaces-disclaimer {
    text-align: left;
  }

  .info-card {
    min-height: auto;
    padding: 20px;
  }

  .practical-panel {
    padding: 22px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .final-cta {
    min-height: 520px;
  }

  .final-overlay {
    background:
      linear-gradient(0deg, rgba(8, 43, 102, 0.96), rgba(8, 43, 102, 0.58)),
      linear-gradient(90deg, rgba(8, 43, 102, 0.28), rgba(8, 43, 102, 0.28));
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .developer-credit {
    text-align: left;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .banner-media img {
    aspect-ratio: 4 / 5;
  }

  .banner-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 0 18px;
  }

  .banner-cta-row .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2rem;
  }

  .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slider-slide.is-active {
    animation: none;
  }
}

/* Clean hero override: no top header, no hero text, no hero buttons. */
.site-header,
.site-header .btn-header {
  display: none !important;
}

.hero-static-banner {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--white) !important;
}

.hero-static-banner .seo-only,
.hero-static-banner .hero-overlay,
.hero-static-banner .hero-content,
.hero-static-banner .hero-actions,
.hero-static-banner .hero-proof {
  display: none !important;
}

.hero-static-banner .banner-cta-row {
  display: flex !important;
}

.hero-static-banner .banner-media,
.hero-static-banner .banner-media img {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.hero-static-banner .banner-media img {
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 767px) {
  .hero-static-banner .banner-cta-row {
    display: grid !important;
  }
}
