:root {
  --brand-yellow: #f6c800;
  --brand-yellow-dark: #d9ad00;
  --brand-charcoal: #55565b;
  --brand-dark: #242529;
  --ink: #15171c;
  --muted: #626774;
  --line: #e7e8ec;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --shadow: 0 18px 45px rgba(20, 22, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.animations-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
}

body.animations-ready .reveal-on-scroll.reveal-left {
  transform: translateX(-38px);
}

body.animations-ready .reveal-on-scroll.reveal-right {
  transform: translateX(38px);
}

body.animations-ready .reveal-on-scroll.reveal-scale {
  transform: scale(0.94);
}

.reveal-on-scroll {
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.animations-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

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

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: 82px;
}

.brand img {
  height: 56px;
  transition: transform 0.3s ease;
  width: auto;
}

.brand:hover img {
  transform: scale(1.03);
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  color: var(--brand-charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  background: var(--brand-dark);
  border: 0;
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  display: none;
  height: 42px;
  width: 42px;
}

.btn {
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-yellow);
  box-shadow: 0 12px 28px rgba(246, 200, 0, 0.28);
  color: var(--brand-dark);
}

.btn-primary:hover {
  background: var(--brand-yellow-dark);
}

.btn-outline,
.btn-ghost {
  background: white;
  border-color: var(--line);
  color: var(--brand-dark);
}

.btn-large {
  min-height: 52px;
  padding: 14px 24px;
}

.btn-full {
  width: 100%;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 45%, rgba(20, 22, 28, 0.54) 100%),
    linear-gradient(120deg, rgba(246, 200, 0, 0.36), transparent 48%),
    url("../images/hero-banner-bg.jpg") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 72px 0 76px;
  position: relative;
}

.hero::after {
  animation: wingGlow 7s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(246, 200, 0, 0.28), transparent 58%);
  content: "";
  height: 360px;
  pointer-events: none;
  position: absolute;
  right: 4%;
  top: 8%;
  width: 360px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-form {
  min-width: 0;
}

.hero-copy {
  max-width: 100%;
}

.eyebrow,
.section-kicker,
.course-tag {
  align-items: center;
  background: rgba(246, 200, 0, 0.18);
  border: 1px solid rgba(246, 200, 0, 0.45);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 100%;
}

.hero h1 {
  animation: heroRise 0.8s ease both;
  color: var(--brand-dark);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 22px 0 22px;
  max-width: 760px;
  overflow-wrap: break-word;
}

.hero p {
  animation: heroRise 0.8s ease 0.12s both;
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 650px;
}

.hero-actions {
  animation: heroRise 0.8s ease 0.22s both;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  animation: heroRise 0.8s ease 0.32s both;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 24px;
}

.hero-proof span {
  color: var(--muted);
  font-weight: 700;
}

.hero-proof strong {
  color: var(--brand-dark);
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading h2,
.about-grid h2,
.faq-grid h2,
.lead-copy h2 {
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 14px 0 12px;
}

.section-heading p,
.about-grid p,
.faq-grid p,
.lead-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.course-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.feature-grid.three,
.course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.course-card,
.process-step,
.quote-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(20, 22, 28, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover,
.course-card:hover,
.process-step:hover {
  border-color: rgba(246, 200, 0, 0.72);
  box-shadow: 0 18px 42px rgba(20, 22, 28, 0.1);
  transform: translateY(-6px);
}

.feature-card {
  padding: 26px 22px;
}

.feature-card i {
  color: var(--brand-yellow-dark);
  font-size: 1.9rem;
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.feature-card:hover i {
  transform: translateY(-3px) rotate(-4deg);
}

.feature-card h3,
.course-card h3,
.process-step h3 {
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.feature-card p,
.course-card p,
.process-step p {
  color: var(--muted);
  font-size: 0.96rem;
}

.visual-banner {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 28px;
  overflow: hidden;
  padding: 18px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.visual-banner:hover,
.image-card:hover {
  box-shadow: 0 24px 56px rgba(20, 22, 28, 0.12);
  transform: translateY(-4px);
}

.visual-banner img,
.image-card img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  width: 100%;
}

.placement-image img {
  aspect-ratio: 4 / 3;
}

.visual-banner:hover img,
.image-card:hover img {
  transform: scale(1.035);
}

.visual-banner span {
  color: var(--brand-yellow-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-banner h3 {
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  margin: 8px 0 10px;
}

.visual-banner p {
  color: var(--muted);
  max-width: 520px;
}

.about-section {
  background: var(--surface);
  padding: 72px 0;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.about-copy {
  min-width: 0;
}

.about-grid h2,
.about-grid p {
  color: var(--brand-dark);
}

.about-grid p {
  color: var(--muted);
  max-width: 650px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
  padding: 9px 12px;
}

.about-points i {
  color: var(--brand-yellow-dark);
}

.about-image {
  margin-top: 0;
}

.about-image img {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.image-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 26px;
  overflow: hidden;
  padding: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.quote-card {
  background: var(--surface);
  border-color: var(--line);
  border-left: 8px solid var(--brand-yellow);
  box-shadow: 0 10px 26px rgba(20, 22, 28, 0.04);
  padding: 20px 22px;
}

.quote-card:hover {
  border-color: rgba(246, 200, 0, 0.72);
  box-shadow: 0 18px 42px rgba(20, 22, 28, 0.08);
  transform: translateY(-4px);
}

.quote-card p {
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
}

.quote-card cite {
  color: var(--muted);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 12px;
}

.about-quote {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto;
  margin-top: 0;
}

.about-quote cite {
  margin-top: 0;
  white-space: nowrap;
}

.course-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.course-card.highlighted {
  border-color: rgba(246, 200, 0, 0.75);
  box-shadow: var(--shadow);
  position: relative;
}

.course-card.highlighted::before {
  background: var(--brand-yellow);
  border-radius: 999px;
  content: "";
  height: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 10px;
}

.course-card h3 {
  font-size: 1.35rem;
  margin-top: 16px;
}

.course-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0;
}

.course-card li {
  color: var(--brand-charcoal);
  display: flex;
  gap: 10px;
}

.course-card li i {
  color: var(--brand-yellow-dark);
  margin-top: 5px;
}

.best-for {
  margin-bottom: 22px;
  margin-top: auto;
}

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

.process-section {
  background:
    linear-gradient(90deg, rgba(20, 22, 28, 0.86), rgba(20, 22, 28, 0.68)),
    url("../images/admission-process-bg.jpg") center / cover no-repeat;
  color: white;
  position: relative;
}

.process-section .section-kicker {
  background: rgba(246, 200, 0, 0.92);
  border-color: rgba(246, 200, 0, 0.92);
}

.process-section .section-heading h2,
.process-section .section-heading p {
  color: white;
}

.process-section .section-heading p {
  opacity: 0.82;
}

.process-step {
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  gap: 16px;
  padding: 24px;
}

.process-step span {
  align-items: center;
  background: var(--brand-yellow);
  border-radius: 50%;
  color: var(--brand-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
  transition: transform 0.25s ease;
}

.process-step:hover span {
  transform: scale(1.08) rotate(-6deg);
}

.career-strip {
  align-items: center;
  background: var(--brand-dark);
  border-radius: var(--radius);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  padding: 22px 24px;
  overflow: hidden;
  position: relative;
}

.career-strip::after {
  animation: stripShine 4.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(246, 200, 0, 0.24), transparent);
  content: "";
  height: 100%;
  left: -40%;
  position: absolute;
  top: 0;
  width: 38%;
}

.career-strip span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
}

.placement-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.92fr 1.08fr;
}

.placement-image {
  margin-top: 0;
}

.placement-features {
  grid-template-columns: 1fr;
}

.faq-grid,
.lead-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 0.7fr 1fr;
}

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

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(246, 200, 0, 0.72);
  box-shadow: 0 12px 28px rgba(20, 22, 28, 0.06);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--brand-dark);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 850;
  justify-content: space-between;
  padding: 19px 20px;
  text-align: left;
  width: 100%;
}

.faq-item i {
  transition: transform 0.2s ease;
}

.faq-item.active i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  display: block;
}

.lead-section {
  background: var(--brand-dark);
  color: white;
}

.lead-copy h2,
.lead-copy p {
  color: white;
}

.lead-copy p {
  opacity: 0.8;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  align-items: center;
  color: white;
  display: flex;
  gap: 12px;
}

.contact-list i {
  color: var(--brand-yellow);
  width: 18px;
}

.lead-form {
  padding: 28px;
}

.hero-form {
  border-top: 8px solid var(--brand-yellow);
  box-shadow: 0 24px 60px rgba(20, 22, 28, 0.12);
  padding: 30px;
  transform-origin: center;
}

.hero-form .form-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.hero-form .form-header span {
  color: var(--brand-yellow-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-form .form-header h2 {
  color: var(--brand-dark);
  font-size: 1.7rem;
  line-height: 1.15;
  margin-top: 6px;
}

.hero-form .form-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.hero-form > label + label {
  margin-top: 14px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--brand-dark);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: #fbfbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.lead-form > label,
.lead-form .btn {
  margin-top: 16px;
}

.form-status {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.site-footer {
  background: #111216;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-inner img {
  background: white;
  border-radius: 6px;
  height: 42px;
  padding: 5px 8px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-contact a {
  color: white;
  font-weight: 700;
}

.chatbot {
  bottom: 22px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.chatbot-toggle {
  animation: chatPulse 2.8s ease-in-out infinite;
  align-items: center;
  background: var(--brand-yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(20, 22, 28, 0.2);
  color: var(--brand-dark);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  transition: transform 0.2s ease;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wingGlow {
  from {
    opacity: 0.55;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  to {
    opacity: 0.95;
    transform: translate3d(-24px, 18px, 0) scale(1.08);
  }
}

@keyframes stripShine {
  0% {
    transform: translateX(0);
  }
  45%,
  100% {
    transform: translateX(420%);
  }
}

@keyframes chatPulse {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(20, 22, 28, 0.2);
  }
  50% {
    box-shadow: 0 18px 36px rgba(20, 22, 28, 0.2), 0 0 0 8px rgba(246, 200, 0, 0.2);
  }
}

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

  body.animations-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
}

.chatbot-toggle i {
  font-size: 1.2rem;
}

.chatbot-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  bottom: 72px;
  box-shadow: 0 28px 70px rgba(20, 22, 28, 0.22);
  display: none;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: min(370px, calc(100vw - 36px));
}

.chatbot.open .chatbot-panel {
  display: block;
}

.chatbot-header {
  align-items: flex-start;
  background: var(--brand-dark);
  color: white;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 18px;
}

.chatbot-header span {
  color: var(--brand-yellow);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-header strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
  margin-top: 4px;
}

.chatbot-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.chatbot-body {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding: 18px;
}

.chat-message {
  align-items: flex-start;
  display: flex;
  gap: 9px;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message .avatar {
  align-items: center;
  background: rgba(246, 200, 0, 0.18);
  border-radius: 50%;
  color: var(--brand-dark);
  display: inline-flex;
  flex: 0 0 auto;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.chat-message p {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 275px;
  padding: 10px 12px;
}

.chat-message.user p {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.chatbot-quick-actions {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
}

.chatbot-quick-actions button {
  background: rgba(246, 200, 0, 0.16);
  border: 1px solid rgba(246, 200, 0, 0.55);
  border-radius: 999px;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 11px;
}

.chatbot-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 44px;
  padding: 12px 14px;
}

.chatbot-form input {
  min-height: 44px;
}

.chatbot-form button {
  align-items: center;
  background: var(--brand-yellow);
  border: 0;
  border-radius: var(--radius);
  color: var(--brand-dark);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.chatbot-whatsapp {
  align-items: center;
  background: #25d366;
  color: white;
  display: flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  padding: 12px 14px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .placement-layout,
  .faq-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .visual-banner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    height: 44px;
  }

  .main-nav,
  .header-actions {
    background: white;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-basis: 100%;
    margin-left: 0;
    padding: 12px 0;
  }

  .main-nav.open,
  .header-actions.open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero {
    padding: 46px 0 54px;
  }

  .feature-grid.three,
  .feature-grid.four,
  .course-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-form {
    padding: 24px;
  }

  .about-quote {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-copy,
  .hero h1,
  .hero p {
    max-width: calc(100vw - 36px);
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.3;
    white-space: normal;
  }

  .hero h1 {
    font-size: 2.12rem;
    line-height: 1.04;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .chatbot {
    bottom: 16px;
    right: 16px;
  }

  .chatbot-toggle {
    min-height: 50px;
    padding: 12px 15px;
  }

  .chatbot-toggle span {
    display: none;
  }

  .hero-proof {
    gap: 18px;
  }

  .lead-form,
  .quote-card,
  .course-card {
    padding: 22px;
  }

  .about-grid {
    gap: 22px;
  }
}
