:root {
  --blue-main: #1e4fb0;
  --blue-deep: #0f2f78;
  --blue-soft: #dce8ff;
  --yellow-main: #f2c21a;
  --yellow-deep: #d6a308;
  --yellow-soft: #fff2bf;
  --ink: #122242;
  --ink-soft: #405583;
  --white: #ffffff;
  --line: rgba(15, 47, 120, 0.18);
  --shadow-sm: 0 10px 24px rgba(12, 30, 80, 0.12);
  --shadow-lg: 0 18px 46px rgba(12, 30, 80, 0.2);
  --radius-xl: 1.3rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 4% 2%, rgba(242, 194, 26, 0.28), transparent 28%),
    radial-gradient(circle at 100% -6%, rgba(30, 79, 176, 0.24), transparent 36%),
    linear-gradient(165deg, #f7faff 0%, #e9f0ff 100%);
}

.site-header {
  position: sticky;
  top: 0.7rem;
  z-index: 90;
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(125deg, rgba(25, 70, 163, 0.93), rgba(15, 47, 120, 0.93));
  box-shadow: var(--shadow-sm);
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-family: "Sora", "Poppins", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 800;
}

nav {
  display: flex;
  gap: 0.3rem;
}

nav a {
  color: #dbe7ff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
  background: linear-gradient(120deg, var(--yellow-main), #ffd54f);
  color: #2e2600;
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.05rem;
  height: 2px;
  background: var(--white);
}

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

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

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

main {
  width: min(1160px, 92vw);
  margin: 0.95rem auto 2.4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 194, 26, 0.34), transparent 30%),
    linear-gradient(150deg, rgba(30, 79, 176, 0.12), rgba(242, 194, 26, 0.2)),
    var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--line);
  padding: 0.9rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.hero-copy {
  padding: clamp(1rem, 3vw, 1.7rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 194, 26, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(30, 79, 176, 0.07), rgba(242, 194, 26, 0.14)),
    var(--white);
  border: 1px solid rgba(30, 79, 176, 0.16);
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: -6rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 176, 0.25), transparent 70%);
}

.hero::after {
  left: -10%;
  bottom: -8rem;
  width: 130%;
  height: 13rem;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(180deg, rgba(255, 234, 160, 0.15), rgba(255, 234, 160, 0.15)),
    linear-gradient(120deg, rgba(242, 194, 26, 0.9), rgba(245, 209, 67, 0.95));
  box-shadow: 0 -10px 0 rgba(30, 79, 176, 0.82), 0 -22px 0 rgba(255, 242, 192, 0.95);
  opacity: 0.9;
}

.kicker {
  margin: 0 0 0.6rem;
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: #2c2500;
  background: linear-gradient(100deg, var(--yellow-main), #ffd950);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Poppins", sans-serif;
  line-height: 1.15;
}

h1 {
  color: var(--blue-deep);
  font-size: clamp(1.7rem, 4.8vw, 3.2rem);
  max-width: 18ch;
}

.hero-copy p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-points {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.42rem;
}

.hero-points p {
  margin: 0;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.hero-points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--yellow-main);
  box-shadow: 0 0 0 3px rgba(242, 194, 26, 0.2);
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(100deg, var(--blue-main), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(15, 47, 120, 0.32);
}

.btn-ghost {
  background: #fff9df;
  border-color: var(--yellow-main);
  color: #4f3b00;
}

.hero-badges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-badges p {
  margin: 0;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  color: #203c7a;
  background: linear-gradient(135deg, #fff8db, #fff0b5);
  border: 1px solid #f5d66e;
}

.impact-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.impact-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.8rem;
  box-shadow: var(--shadow-sm);
}

.impact-number {
  margin: 0;
  color: var(--blue-main);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  font-weight: 800;
}

.impact-card p:last-child {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: var(--shadow-sm);
}

.section-head {
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--blue-deep);
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-card,
.reason-card,
.timeline-step,
.video-card,
.faq-item,
.contact-grid article {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.service-card h3,
.reason-card h3,
.timeline-step h3,
.video-card h3 {
  color: var(--blue-main);
  font-size: 1.05rem;
}

.service-card ul {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.service-card li {
  position: relative;
  padding-left: 1.1rem;
  margin: 0.46rem 0;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--yellow-main);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.reason-card p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-summary {
  margin: 0 0 0.8rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.65rem;
  border: 1px solid #ecd37a;
  background: linear-gradient(120deg, #fff8dc, #fff2c2);
}

.gallery-summary p {
  margin: 0;
  color: #3f3400;
}

.media-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--line);
  position: relative;
  min-height: 210px;
  background: #0c1f4f;
  box-shadow: 0 8px 22px rgba(12, 30, 80, 0.12);
}

.media-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.media-card:hover img {
  transform: scale(1.03);
}

.media-card figcaption {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  padding: 0.58rem 0.65rem;
  border-radius: 0.55rem;
  background: linear-gradient(120deg, rgba(10, 34, 91, 0.88), rgba(18, 56, 138, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.media-card figcaption h3 {
  margin: 0;
  color: #ffe891;
  font-size: 0.9rem;
}

.media-card figcaption p {
  margin: 0.2rem 0 0;
  color: #ecf2ff;
  font-size: 0.78rem;
  line-height: 1.4;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.timeline-step p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.video-card video {
  width: 100%;
  border-radius: 0.6rem;
  border: 2px solid var(--line);
  background: #000;
}

.video-card h3 {
  margin-top: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: linear-gradient(120deg, #f8fbff, #edf3ff);
  border: 2px solid var(--line);
  color: var(--blue-deep);
  border-radius: 0.62rem;
  padding: 0.72rem 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-content {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.quote-band {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(120deg, var(--blue-main), var(--blue-deep));
  border: 2px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-sm);
}

.quote-band p {
  margin: 0;
  color: var(--white);
  font-family: "Sora", "Poppins", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
}

.contact {
  background: linear-gradient(145deg, rgba(30, 79, 176, 0.92), rgba(15, 47, 120, 0.92));
  color: var(--white);
}

.contact .section-head h2 {
  color: #ffe48f;
}

.contact .section-head p,
.contact-grid p,
.reg {
  color: #e0eaff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-grid article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-grid a {
  color: #ffeaa0;
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reg {
  margin: 0.8rem 0 0;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  background: linear-gradient(100deg, var(--yellow-main), var(--yellow-deep));
  color: #312500;
  font-weight: 800;
  text-decoration: none;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(40, 30, 0, 0.2);
}

.site-footer {
  margin: 1.4rem 0 0;
  padding: 1rem 0 1.4rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 980px) {
  .hero,
  .impact-strip,
  .services,
  .reasons-grid,
  .timeline,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .media-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 0.65rem;
    border-radius: 0.9rem;
    background: linear-gradient(145deg, rgba(19, 57, 140, 0.98), rgba(10, 37, 98, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    flex-direction: column;
  }

  .site-header.menu-open nav {
    display: flex;
  }

  .hero,
  .impact-strip,
  .services,
  .reasons-grid,
  .media-grid,
  .timeline,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-card.featured {
    grid-column: auto;
  }

  .quote-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-card img {
    height: 250px;
  }
}
