:root {
  --navy: #0f2a4b;
  --navy-2: #163a61;
  --gold: #f5b942;
  --text: #223142;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}
.bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body,
p,
h1,
h2,
h3,
h4,
li,
a,
button,
input,
textarea {
  overflow-wrap: anywhere;
}
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(1160px, calc(100% - 1.25rem));
  max-width: 100%;
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 42, 75, 0.08);
}
.logo {
  width: 100px;
  height: auto;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.nav-links {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(15, 42, 75, 0.16);
}
.btn-primary:hover {
  background: var(--navy-2);
}
.btn-secondary {
  background: var(--gold);
  color: var(--navy);
}
.btn-outline {
  border: 2px solid var(--border);
  background: transparent;
  color: var(--navy);
}
.hero {
  padding: 5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(15, 42, 75, 0.95), rgba(22, 58, 97, 0.9)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.hero p {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
}
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.hero-card ul {
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.hero-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.section {
  padding: 4rem 0;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
}
.section-title h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  margin: 0;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}
.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 42, 75, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 42, 75, 0.12);
}
.card h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.15rem;
}
.card p {
  margin-bottom: 0.8rem;
  color: var(--muted);
}
.small-note {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats {
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  color: var(--white);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-box {
  text-align: center;
  padding: 1rem 0.5rem;
}
.stat-box strong {
  font-size: 1.7rem;
  display: block;
}
.cta-block {
  background: linear-gradient(135deg, var(--navy), #142f4d);
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wave-divider {
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
  fill: var(--white);
}
.section--light {
  background: var(--bg);
}
.section--soft {
  background: linear-gradient(180deg, #f8fafc 0%, #f5f8ff 100%);
}
.section--dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}
.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
.feature-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.about-visual {
  position: relative;
}
.about-visual img {
  border-radius: 24px;
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 42, 75, 0.16);
}
.about-quote {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.about-quote p {
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.about-quote span {
  color: var(--muted);
  font-size: 0.95rem;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 42, 75, 0.06);
}
.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.program-card div {
  padding: 1.15rem;
}
.program-card a {
  color: var(--navy);
  font-weight: 700;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 42, 75, 0.05);
}
.feature-card i {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.recruiter-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.logo-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 0 1rem;
  display: grid;
  place-items: center;
  min-height: 100px;
}
.logo-pill img {
  max-height: 85px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) invert(1);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 42, 75, 0.06);
}
.step-box span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.step-box h3 {
  margin: 0 0 0.35rem;
}
.footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}
.footer h4 {
  color: var(--white);
  margin: 0 0 0.7rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.contact-card {
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 1.25rem;
}
.form-grid {
  display: grid;
  gap: 0.9rem;
}
input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 42, 75, 0.1);
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: var(--white);
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.close-btn {
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}
.fab-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #25d366;
  color: var(--white);
  border-radius: 999px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--navy);
}
.mobile-backdrop {
  display: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 320px);
  max-width: 100%;
  height: 100vh;
  padding: 1rem 1rem 1.5rem;
  background: var(--white);
  box-shadow: -18px 0 40px rgba(15, 42, 75, 0.16);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 50;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
body.mobile-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid,
  .stats-grid,
  .recruiter-shell,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .nav-links,
  .desktop-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 40;
  }
  .mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
  }
  .mobile-nav-header img {
    width: 92px;
    height: auto;
  }
  .mobile-close {
    border: 0;
    background: transparent;
    font-size: 1.2rem;
    color: var(--navy);
    cursor: pointer;
  }
  .mobile-nav ul {
    display: grid;
    gap: 0.2rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .mobile-nav a {
    display: block;
    padding: 0.85rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-footer a {
    padding-left: 1rem;
  }
  .hero-grid,
  .about-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .stats-grid,
  .footer-grid,
  .recruiter-shell,
  .process-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero-badges {
    width: 100%;
  }
  .hero-card,
  .card,
  .program-card,
  .feature-card,
  .step-box,
  .cta-block,
  .about-visual,
  .logo-pill,
  .contact-card,
  .modal-box,
  .about-quote {
    max-width: 100%;
    width: 100%;
  }
  .hero > div,
  .about-grid > div,
  .section-title > div,
  .section-title > p,
  .recruiter-copy,
  .logo-grid > div,
  .feature-item,
  .step-box,
  .program-card > div,
  .program-card img {
    min-width: 0;
  }
  .about-visual img {
    height: 280px;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    display: block;
  }
  .logo {
    width: 80px;
  }
}
