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

:root {
  --orange: #E8471A;
  --orange-light: #FF5C2A;
  --gold: #C87E00;
  /* Light theme surface colours */
  --dark: #FFFFFF;
  --dark2: #F5F5F5;
  --dark3: #EFEFEF;
  --card-dark: #E8E8E8;
  --light: #F9F4F0;
  --white: #FFFFFF;
  --gray: #555555;
  --gray-light: #444444;
  --text-muted: #777777;
  /* Text on light */
  --text-main: #111111;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text-main); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(232,71,26,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(232,71,26,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mobile-cta-item { display: none; } /* shown only in mobile dropdown */
.nav-logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: #444444; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #FFFFFF;
  padding: 10px 24px; border-radius: 4px; font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #FFF8F5;
  padding: 72px 5% 60px; /* 72px top = navbar height, so content never hides under it */
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-slash {
  position: absolute; right: -5%; top: -10%; width: 55%; height: 130%;
  background: linear-gradient(135deg, var(--orange) 0%, #B5340F 60%, transparent 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}
.hero-slash-2 {
  position: absolute; right: 5%; top: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, #F5A623 0%, var(--orange) 60%, transparent 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 4% 100%);
  opacity: 0.05;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,71,26,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.hero-glow {
  position: absolute; top: 20%; right: 30%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,71,26,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,71,26,0.08); border: 1px solid rgba(232,71,26,0.3);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 32px;
  font-size: 12px; font-weight: 600; color: #C05A10; letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-eyebrow-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 12px;
}
.hero h1 .brand { color: var(--orange); display: block; }
.hero h1 .sub { color: #111111; display: block; }

.hero-ticker {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700; color: var(--gold);
  margin-bottom: 28px; min-height: 48px;
}
.hero-ticker .cursor { animation: blink-cursor 0.8s step-end infinite; }
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-size: 17px; color: #555555; line-height: 1.7;
  max-width: 560px; margin: 0 auto 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--orange); color: #FFFFFF;
  padding: 16px 36px; border-radius: 4px; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(232,71,26,0.3);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,71,26,0.4); }
.btn-outline {
  border: 1.5px solid rgba(0,0,0,0.2); color: #222222;
  padding: 16px 36px; border-radius: 4px; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,71,26,0.04); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap; justify-content: center;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: #888888; letter-spacing: 1px; margin-top: 4px; text-transform: uppercase; }

/* ── SECTION COMMONS ── */
section { padding: 100px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--orange);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: #111111;
}
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 17px; color: #666666; line-height: 1.7; max-width: 600px; margin-top: 16px; }

/* ── ABOUT ── */
#about { background: #F5F5F5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-feat {
  background: #FFFFFF; border: 1px solid rgba(232,71,26,0.12);
  border-radius: 8px; padding: 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-feat:hover { border-color: rgba(232,71,26,0.4); box-shadow: 0 6px 20px rgba(232,71,26,0.1); }
.about-feat-icon { font-size: 24px; margin-bottom: 10px; }
.about-feat-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: #111111; }
.about-feat-desc { font-size: 13px; color: #666666; line-height: 1.5; }

.about-visual { position: relative; }
.about-card-main {
  background: linear-gradient(135deg, var(--orange) 0%, #B5340F 100%);
  border-radius: 16px; padding: 40px; position: relative; overflow: hidden;
}
.about-card-main::after {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.about-card-main::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.about-card-main h3 {
  font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; position: relative; z-index: 1; color: #FFFFFF;
}
.about-card-main p { font-size: 15px; opacity: 0.9; line-height: 1.7; position: relative; z-index: 1; color: #FFFFFF; }
.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; position: relative; z-index: 1; }
.about-stat-box { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 14px; text-align: center; }
.about-stat-box .n { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: #FFFFFF; }
.about-stat-box .l { font-size: 10px; opacity: 0.85; letter-spacing: 0.5px; margin-top: 2px; color: #FFFFFF; }

/* ── COURSES ── */
#courses { background: #FFFFFF; }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
.course-card {
  background: #FFFFFF; border: 1px solid #E5E5E5;
  border-radius: 12px; padding: 32px; position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,71,26,0.35);
  box-shadow: 0 20px 50px rgba(232,71,26,0.12), 0 4px 16px rgba(0,0,0,0.06);
}
.course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #F5A623);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.course-card:hover::before { transform: scaleX(1); }
.course-letter {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(232,71,26,0.1); border: 1px solid rgba(232,71,26,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800;
  color: var(--orange); margin-bottom: 18px;
}
.course-name {
  font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.2; color: #111111;
}
.course-tagline { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 16px; font-style: italic; }
.course-topics { list-style: none; margin-bottom: 24px; }
.course-topics li {
  font-size: 13px; color: #555555; padding: 5px 0;
  border-bottom: 1px solid #F0F0F0;
  display: flex; align-items: center; gap: 8px;
}
.course-topics li::before { content: '›'; color: var(--orange); font-weight: 700; font-size: 16px; }
.course-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.5px;
}
.badge-dur { background: rgba(200,126,0,0.1); color: #A06400; border: 1px solid rgba(200,126,0,0.25); }
.badge-sal { background: rgba(232,71,26,0.08); color: #C04010; border: 1px solid rgba(232,71,26,0.2); }

/* ── WHAT'S REQUIRED ── */
#required { background: #F5F5F5; }
.required-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 60px; }
.req-card {
  background: #FFFFFF; border: 1px solid #E5E5E5;
  border-radius: 12px; padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.req-card:hover { transform: translateY(-4px); border-color: rgba(232,71,26,0.3); box-shadow: 0 10px 30px rgba(232,71,26,0.08); }
.req-icon { font-size: 32px; margin-bottom: 18px; }
.req-title { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 16px; color: #111111; }
.req-items { list-style: none; }
.req-items li {
  font-size: 14px; color: #555555; padding: 7px 0;
  border-bottom: 1px solid #F0F0F0;
  display: flex; gap: 10px; align-items: flex-start;
}
.req-items li:last-child { border-bottom: none; }
.req-check { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── METHODOLOGY ── */
#methodology { background: #FFFFFF; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; position: relative; }
.method-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.method-step { padding: 0 28px 40px; text-align: center; position: relative; }
.method-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  background: #FFFFFF; border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; color: var(--orange);
  position: relative; z-index: 1;
  transition: background 0.3s;
  box-shadow: 0 4px 16px rgba(232,71,26,0.15);
}
.method-step:hover .method-num { background: var(--orange); color: #FFFFFF; }
.method-step-title { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #111111; }
.method-step-desc { font-size: 14px; color: #666666; line-height: 1.6; }

/* ── CAREERS ── */
#careers { background: #F5F5F5; }
.careers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.career-role {
  background: #FFFFFF; border: 1px solid #E5E5E5;
  border-radius: 10px; padding: 24px; text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.career-role:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(232,71,26,0.1); }
.career-role-icon { font-size: 28px; margin-bottom: 12px; }
.career-role-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #111111; }
.career-role-course { font-size: 12px; color: var(--orange); }

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, var(--orange) 0%, #9C3010 100%);
  padding: 100px 5%; text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: 'GMR'; position: absolute; bottom: -40px; right: 5%;
  font-family: 'Montserrat', sans-serif; font-size: 200px; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none;
}
#cta h2 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 5vw, 60px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px; position: relative; z-index: 1; color: #FFFFFF;
}
#cta p { font-size: 18px; opacity: 0.9; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; color: #FFFFFF; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #FFFFFF; color: var(--orange); padding: 16px 40px; border-radius: 4px; font-size: 14px; font-weight: 800; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.25s; }
.btn-white:hover { background: #F5A623; color: #111111; transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.6); color: #FFFFFF; padding: 16px 40px; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.25s; }
.btn-ghost:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: #1A1A1A; padding: 60px 5% 30px; border-top: 3px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand p { font-size: 14px; color: #AAAAAA; line-height: 1.7; margin: 16px 0 24px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #AAAAAA; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #FFFFFF; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 13px; color: #888888; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { font-size: 11px; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); color: #AAAAAA; }

/* ── CONTACT SECTION ── */
#contact { background: #FFFFFF; }
.contact-section-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: #F8F8F8; border: 1px solid #EEEEEE;
  border-radius: 12px; padding: 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.contact-info-card:hover {
  border-color: rgba(232,71,26,0.35);
  box-shadow: 0 6px 24px rgba(232,71,26,0.08);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(232,71,26,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.contact-info-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 700; color: #111111; margin-bottom: 3px; }
.contact-info-sub { font-size: 13px; color: #888888; }

.contact-form-wrap {}
.contact-form-card {
  background: #FFFFFF; border: 1px solid #E5E5E5;
  border-radius: 16px; padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}
.contact-form-title {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800;
  color: #111111; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 600; color: #555555; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 7px; }
.form-input {
  padding: 12px 16px; border: 1.5px solid #E0E0E0; border-radius: 8px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: #111111;
  background: #FAFAFA; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,71,26,0.1); background: #FFFFFF; }
.form-input::placeholder { color: #BBBBBB; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--orange); color: #FFFFFF;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px;
  cursor: pointer; transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(232,71,26,0.3);
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,71,26,0.4); }
.form-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }

@media (max-width: 768px) {
  .contact-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── LOGO SVG INLINE ── */
.logo-svg-inline { display: block; width: 100%; height: auto; max-width: 340px; margin-bottom: 30px; }

/* ── CONTACT BAR ── */
.contact-bar { background: #FFFFFF; border: 1px solid #E5E5E5; border-radius: 12px; padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { width: 40px; height: 40px; background: rgba(232,71,26,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-item-label { font-size: 11px; color: #888888; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-val { font-size: 15px; font-weight: 600; color: #111111; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  gap: 5px; padding: 4px; border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(232,71,26,0.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #333333; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Navbar */
  nav {
    padding: 0 5%;
    height: 64px;
    overflow: visible; /* allow dropdown to show */
  }
  .hamburger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-mobile-cta-item { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 5% 24px;
    gap: 0;
    border-top: 1px solid rgba(232,71,26,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 13px 0;
    font-size: 15px; font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #222222;
  }
  .nav-mobile-cta-item { border-bottom: none !important; padding-top: 12px; }
  .nav-mobile-cta {
    display: block; text-align: center;
    padding: 12px 24px !important;
    border-bottom: none !important;
  }

  /* Hero */
  .hero { padding: 96px 5% 60px; min-height: auto; }
  .brand { font-size: 2.6rem !important; }
  .ampersand { font-size: 2rem !important; }
  .sub { font-size: 2.6rem !important; }
  .hero-ticker { font-size: 18px; min-height: 36px; }
  .hero-desc { font-size: 15px; }
  .btn-primary, .btn-outline { padding: 14px 24px; font-size: 13px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 12px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 14px; }
  .logo-svg-inline { max-width: 220px; margin: 0 auto 20px; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }

  /* Required */
  .required-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }

  /* Methodology */
  .method-steps { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .method-steps::before { display: none; }
  .method-step { padding: 0 16px 32px; }

  /* Careers */
  .careers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }

  /* CTA */
  #cta { padding: 60px 5%; }
  #cta h2 { font-size: 28px; }
  .btn-white, .btn-ghost { padding: 14px 24px; font-size: 13px; width: 100%; text-align: center; display: block; }
  .cta-actions { flex-direction: column; gap: 12px; }

  /* Contact */
  .contact-section-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .contact-bar { flex-direction: column; padding: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Sections */
  section { padding: 60px 5%; }
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .section-subtitle { font-size: 15px; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand { font-size: 2rem !important; }
  .sub { font-size: 2rem !important; }
  .nav-logo-img { height: 36px; }
}

/* ── SMOOTH SECTION DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(232,71,26,0.25), transparent); }


.title {
  display: flex;
  flex-direction: column;
  align-items: center;   /* Center all lines */
  gap: 4px;
  margin: 0;
  line-height: 1.1;
}

.brand {
  font-size: 4.5rem;
  font-weight: 700;
}

.ampersand {
  font-size: 3rem;
  font-weight: 700;
}

.sub {
  font-size: 4.5rem;
  font-weight: 700;
}