:root {
  --primary-blue: #0B2A4A;
  --secondary-blue: #0E4C92;
  --accent-blue: #38BDF8;
  --edtech-blue: #0E4C92;
  --cta-green: #22C55E;
  --hero-subtext: #CFE3FF;
  --green: #22C55E;
  --green-dark: #0B2A4A;
  --orange: #22C55E;
  --heading: #0F172A;
  --ink: #475569;
  --card-text: #0F172A;
  --muted: #94A3B8;
  --line: #DDEAF4;
  --soft: #F8FAFC;
  --footer: #0B2A4A;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(11, 42, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--heading);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

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

.section-pad {
  padding: 72px 0;
}

.section-pad-sm {
  padding: 42px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 42, 74, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(11, 42, 74, 0.2);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 0.25s ease;
}

.site-header.scrolled .navbar {
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--hero-subtext);
  font-size: 0.72rem;
  margin-top: -2px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-blue);
  display: block;
}

.nav-panel {
  position: absolute;
  inset: 76px 16px auto;
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-panel.open {
  display: flex;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-blue);
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-actions {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 42, 74, 0.18);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
}

.btn-orange {
  background: var(--cta-green);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-green {
  background: var(--cta-green);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline-green {
  border-color: var(--cta-green);
  color: var(--white);
  background: var(--cta-green);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-orange:hover,
.btn-green:hover,
.btn-outline-green:hover {
  background: #16A34A;
  border-color: #16A34A;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.38);
}

.btn-white-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: transparent;
}

.hero {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding-top: 50px;
  color: var(--ink);
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.badge {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: #0B2A4A;
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 18px 0 14px;
  max-width: 680px;
  font-size: clamp(2.2rem, 8vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--primary-blue);
}

.hero h1 span {
  color: var(--primary-blue);
}

.hero-subtext {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 14px;
}

.trust-pills span,
.cta-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.88rem;
}

.local-line {
  margin: 0 0 24px;
  color: var(--primary-blue);
  font-weight: 700;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-students {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(54%, 350px);
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 8px 0;
  pointer-events: none;
}

.hero-students img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.lead-form {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 340px;
  padding: 22px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
}

.lead-form h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  color: var(--heading);
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(56, 189, 248, 0.18);
  border-color: var(--accent-blue);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.privacy {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  background: #F8FAFC;
}

.courses,
.testimonials {
  background: #FFFFFF;
}

.stats-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.stat-card,
.benefit-card,
.testimonial-card,
.course-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  color: var(--card-text);
  box-shadow: 0 12px 28px rgba(11, 42, 74, 0.08);
}

.stat-card {
  padding: 22px;
}

.stat-card > span {
  color: var(--accent-blue);
  font-size: 1.8rem;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--card-text);
  font-size: 1.35rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, 2.8rem);
  line-height: 1.15;
  color: var(--heading);
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.course-card {
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.course-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--accent-blue);
}

.course-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.course-card p {
  color: var(--muted);
  min-height: 50px;
  margin: 8px 0 16px;
}

.course-card a {
  color: var(--card-text);
  font-weight: 800;
}

.course-card.green .course-icon { background: #E7F8EF; }
.course-card.green a { color: var(--card-text); }
.course-card.purple .course-icon { background: #E0F2FE; }
.course-card.purple a { color: var(--card-text); }
.course-card.orange .course-icon { background: #E7F8EF; }
.course-card.orange a { color: var(--card-text); }
.course-card.blue .course-icon { background: #E0F2FE; }
.course-card.blue a { color: var(--card-text); }
.course-card.red .course-icon { background: #FFE9EC; }
.course-card.red a { color: var(--card-text); }

.why {
  background: #F1F5F9;
}

.opportunity,
.faq {
  background: #F8FAFC;
}

.underline {
  text-decoration: underline;
  text-decoration-color: var(--accent-blue);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}

.benefit-card {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card span {
  font-size: 1.8rem;
}

.benefit-card h3 {
  margin: 10px 0 8px;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
}

.opportunity-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.college-image {
  min-height: 300px;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(11, 42, 74, 0.1);
}

.college-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.usp-grid {
  display: grid;
  gap: 12px;
}

.usp-item {
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--card-text);
  font-weight: 700;
}

.usp-item .tick {
  display: inline-block;
  margin: 0 8px 0 0;
  color: var(--cta-green);
  font-weight: 800;
}

.usp-item span {
  display: block;
  margin-left: 25px;
  color: var(--muted);
  font-weight: 500;
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  padding: 24px;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc((100% - 32px) / 2);
    max-width: calc((100% - 32px) / 2);
  }
}

@media (min-width: 1080px) {
  .testimonial-card {
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}

.stars {
  color: #F6A700;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--card-text);
  font-style: italic;
  font-weight: 600;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #C8D9CB;
  cursor: pointer;
}

.dots .active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid > div {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-item button span {
  color: var(--accent-blue);
  font-size: 1.25rem;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

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

.final-cta {
  background: var(--primary-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cta-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  color: var(--white);
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-badges span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.site-footer {
  background: var(--footer);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 10px;
}

.office-time {
  white-space: nowrap;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.35);
  overflow: hidden;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .container {
    width: min(1160px, calc(100% - 48px));
  }

  .stats-grid,
  .benefit-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .usp-item.wide {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .lead-visual {
    min-height: auto;
    display: grid;
  }

  .hero-students {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 8px 8px 0 0;
  }

  .lead-form {
    width: min(100%, 440px);
    margin: -48px auto 0;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 0.9rem;
    color: var(--white);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
  }

  .hero {
    padding-top: 68px;
  }

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

  .course-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .course-card {
    padding: 20px 18px;
  }

  .opportunity-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 50px;
  }

  .cta-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cta-actions {
    justify-items: end;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.8fr 0.95fr 1.15fr 0.95fr;
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.65rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
    padding-inline: 14px;
  }

  .trust-pills span,
  .cta-badges span {
    width: 100%;
  }
}
