@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap");

:root {
  --blue-950: #071b3a;
  --blue-800: #0a4b93;
  --blue-600: #1268bb;
  --green: #21a65b;
  --yellow: #f0c629;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe6f0;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 27, 58, 0.13);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; color: var(--blue-950); overflow-wrap: anywhere; }
h1, h2 { font-family: "Plus Jakarta Sans", Inter, Arial, Helvetica, sans-serif; }
h1 { font-size: clamp(38px, 5.6vw, 66px); }
h2 { font-size: clamp(30px, 4.2vw, 50px); }
h3 { font-size: 22px; }

.container { width: var(--container); margin-inline: auto; }

.topbar {
  background: var(--blue-950);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a { color: var(--white); font-weight: 800; margin-left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(7,27,58,0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:not(.btn),
.nav-item > a {
  color: #24415e;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-item > a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-600);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 330px;
  padding: 12px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-menu:hover .submenu,
.has-menu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--blue-950) !important;
}

.submenu a:hover {
  background: #edf5fb;
}

.submenu span {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-950);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.btn-small { min-height: 42px; padding-inline: 16px; }
.btn-primary { background: var(--blue-950); color: var(--white); box-shadow: 0 16px 34px rgba(7,27,58,0.2); }
.btn-secondary { background: var(--white); color: var(--blue-950); border-color: var(--line); }
.btn-secondary svg { color: var(--green); }
.btn-accent { background: var(--yellow); color: var(--blue-950); width: 100%; }
.btn-accent svg { color: var(--green); }

.eyebrow {
  display: inline-flex;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 58px;
  background:
    linear-gradient(120deg, rgba(245,248,252,0.98) 0%, rgba(245,248,252,0.94) 48%, rgba(245,248,252,0.7) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 16%;
  width: 36vw;
  height: 36vw;
  min-width: 320px;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(18,104,187,0.2), rgba(33,166,91,0.16));
  border-radius: 50%;
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.hero-copy p,
.page-hero p,
.detail-hero p,
.lead {
  font-size: 17px;
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 780px;
}

.hero-copy p {
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span,
.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(18,104,187,0.14);
  background: rgba(255,255,255,0.74);
  color: #31516f;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-panel {
  padding: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 310px;
}

.hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  background: rgba(7, 27, 58, 0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.floating-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.floating-badge span {
  color: rgba(255,255,255,0.75);
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.metric-grid div {
  padding: 15px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-grid strong {
  display: block;
  color: var(--blue-800);
  font-size: 25px;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section { padding: 88px 0; }
.muted-section { background: #eaf2f8; }
.tools-section {
  background:
    linear-gradient(135deg, rgba(18,104,187,0.08), rgba(33,166,91,0.08)),
    #ffffff;
}
.dark-section { background: var(--blue-950); color: var(--white); }
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section p { color: rgba(255,255,255,0.72); }
.dark-section .eyebrow { color: var(--yellow); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 { max-width: 760px; }

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div,
.value-card,
.service-card,
.testimonial,
.process-card,
.content-card,
.form-card,
.contact-stack article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 46px rgba(7,27,58,0.07);
}

.feature-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
}

.feature-list strong {
  color: var(--green);
  font-size: 22px;
}

.feature-list span {
  color: #31445a;
  font-weight: 800;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(7,27,58,0.08);
}

.program-image {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.program-card:hover .program-image img { transform: scale(1.05); }

.program-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--blue-950);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.program-body { padding: 23px; }
.program-body h3 { margin: 14px 0 10px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-row.large { margin: 22px 0; }
.meta-row.large span { min-height: 36px; font-size: 14px; }

.outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 4px;
}

.outcome-tags span {
  padding: 7px 9px;
  background: #f0f8f3;
  color: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.service-card {
  padding: 24px;
  min-height: 100%;
}

.mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  color: var(--blue-600);
  font-weight: 900;
  margin-top: 8px;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.process-card {
  padding: 22px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: var(--yellow);
  color: var(--blue-950);
  border-radius: 50%;
  font-weight: 900;
}

.testimonial-grid,
.value-grid,
.detail-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-strip {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(7,27,58,0.09);
}

.trust-grid div {
  padding: 22px;
  background: var(--white);
}

.trust-grid strong {
  display: block;
  color: var(--blue-800);
  font-size: 26px;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.classroom-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.classroom-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.classroom-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.classroom-copy {
  padding: 26px 0;
}

.mini-feature-grid,
.tool-grid,
.document-grid {
  display: grid;
  gap: 14px;
}

.mini-feature-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.mini-feature-grid span,
.tool-pill {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(7,27,58,0.05);
}

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

.tool-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

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

.document-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 46px rgba(7,27,58,0.07);
}

.document-card span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue-600), var(--green));
  border-radius: var(--radius);
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 12px 34px rgba(7,27,58,0.05);
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.testimonial,
.value-card,
.content-card {
  padding: 26px;
}

.testimonial blockquote {
  margin: 0 0 18px;
  color: #263a4f;
  font-size: 18px;
}

.testimonial figcaption {
  color: var(--blue-800);
  font-weight: 900;
}

.cta-section { padding: 0 0 88px; }

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-card h2 { color: var(--white); max-width: 780px; }
.cta-card .eyebrow { color: var(--yellow); }

.page-hero,
.detail-hero {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(234,242,248,0.98), rgba(255,255,255,0.82)),
    radial-gradient(circle at right top, rgba(240,198,41,0.18), transparent 28%);
}

.page-hero h1,
.detail-hero h1 { max-width: 900px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.detail-image {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.content-card li + li { margin-top: 10px; }

.form-card {
  max-width: 920px;
  padding: 30px;
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #29435e;
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8e4;
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea { resize: vertical; }

input:focus,
textarea:focus {
  outline: 3px solid rgba(18,104,187,0.16);
  border-color: var(--blue-600);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 900;
}

.form-status.success { color: var(--green); }
.form-status.error { color: #b42318; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-stack article {
  padding: 22px;
}

.contact-stack span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-stack a {
  color: var(--blue-600);
  font-weight: 900;
}

.map-wrap {
  padding-bottom: 88px;
}

.map-wrap iframe {
  width: 100%;
  height: 390px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  padding: 56px 0 22px;
  background: #06162c;
  color: rgba(255,255,255,0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 32px;
}

.footer img {
  width: 166px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.footer h2 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a,
.footer span {
  display: block;
  margin: 8px 0;
}

.footer a { color: rgba(255,255,255,0.86); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: min(420px, calc(100vw - 24px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(7,27,58,0.22);
  transform: translateX(-50%);
}

.sticky-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  color: var(--blue-950);
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.sticky-actions a:last-child {
  border-right: 0;
}

.sticky-whatsapp {
  color: var(--green) !important;
}

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

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

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

@media (max-width: 1060px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 116px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-item {
    width: 100%;
  }
  .nav-item > a {
    display: block;
  }
  .submenu {
    position: static;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7fbff;
    display: grid;
    gap: 4px;
  }
  .hero-grid,
  .split-section,
  .detail-grid,
  .contact-layout,
  .classroom-section {
    grid-template-columns: 1fr;
  }
  .program-grid,
  .service-grid,
  .service-grid.wide,
  .testimonial-grid,
  .value-grid,
  .detail-content,
  .footer-grid,
  .trust-grid,
  .tool-grid,
  .document-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root { --container: min(100vw - 24px, 1160px); }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .topbar-inner,
  .section-head,
  .cta-card,
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .topbar a {
    display: inline-block;
    margin-left: 0;
    margin-right: 12px;
  }
  .nav { min-height: 70px; }
  .brand img { width: 142px; }
  .nav-links { top: 108px; }
  .hero { padding: 54px 0 48px; }
  .hero-panel,
  .form-card,
  .cta-card { padding: 22px; }
  .metric-grid,
  .program-grid,
  .service-grid,
  .service-grid.wide,
  .testimonial-grid,
  .value-grid,
  .detail-content,
  .footer-grid,
  .field-grid,
  .process-grid,
  .trust-grid,
  .tool-grid,
  .document-grid,
  .mini-feature-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 62px 0; }
  .detail-image { min-height: 280px; }
  .program-image { height: 210px; }
  .hero-photo img,
  .classroom-visual img { height: 300px; min-height: 300px; }
  .sticky-actions { display: grid; }
  .footer { padding-bottom: 88px; }
}
