/* ================================================================
   TEKNOTRADE — Main Stylesheet
   ================================================================ */

/* ----------------------------------------------------------------
   1. Custom Properties
   ---------------------------------------------------------------- */
:root {
  --navy:         #0D2545;
  --navy-dark:    #081830;
  --navy-mid:     #1a3a6b;
  --orange:       #E8580A;
  --orange-dark:  #c4490a;
  --orange-light: #ff7b3a;
  --white:        #ffffff;
  --bg:           #f7f8fc;
  --bg-dark:      #f0f2f7;
  --border:       #e4e7ef;
  --text:         #1c2b3a;
  --text-mid:     #4a5568;
  --text-light:   #718096;
  --success:      #16a34a;
  --amber:        #d97706;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    6px;
  --radius-lg: 14px;
  --shadow:    0 1px 4px rgba(0,0,0,.06), 0 4px 18px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(13,37,69,.14);
  --container: 1160px;
  --header-h:  72px;
}

/* ----------------------------------------------------------------
   2. Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; margin: 1.5rem 0 .5rem; font-weight: 700; color: var(--navy); }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .35rem; }

strong { font-weight: 700; color: var(--text); }

/* ----------------------------------------------------------------
   3. Layout Utilities
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 80px;
}

.section--bg {
  background: var(--bg);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head--sm { margin-bottom: 40px; }
.section-head h2 { margin-top: .4rem; }
.section-head p  { margin-top: .75rem; color: var(--text-mid); }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

.accent { color: var(--orange); }
em { font-style: normal; color: var(--orange); }

/* ----------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  text-decoration: none !important;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--bg);
  color: var(--navy);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   5. Badges
   ---------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-dark);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.badge--orange { background: rgba(232,88,10,.1); color: var(--orange); border-color: rgba(232,88,10,.2); }
.badge--green  { background: rgba(22,163,74,.1);  color: var(--success); border-color: rgba(22,163,74,.2); }
.badge--amber  { background: rgba(217,119,6,.1);  color: var(--amber); border-color: rgba(217,119,6,.2); }

/* ----------------------------------------------------------------
   6. Header
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--navy);
}
.site-logo__name em { color: var(--orange); font-weight: 900; }
.site-logo__sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-light);
}

/* Nav */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.site-nav__list a:hover { color: var(--orange); background: var(--bg); }
.site-nav__list .current-menu-item > a { color: var(--orange); }

.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.btn-nav:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-mark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .04;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.hero__content {
  max-width: 640px;
}

.hero__content .eyebrow { color: var(--orange); margin-bottom: 1rem; }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title .accent { color: var(--orange); }

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ----------------------------------------------------------------
   8. Stats Bar
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--orange);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
}
.stat strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.stat span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   9. Course Cards
   ---------------------------------------------------------------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none !important;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .2s;
}
.course-card:hover {
  border-color: rgba(232,88,10,.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.course-card:hover::before { transform: scaleY(1); }

.course-card--featured {
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg);
  border-color: rgba(232,88,10,.2);
}

.course-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(232,88,10,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.course-card--featured .course-card__icon {
  width: 64px;
  height: 64px;
}

.course-card__body { flex: 1; }
.course-card__sector {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.course-card__body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.course-card__body p {
  font-size: .875rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.course-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.course-card__arrow {
  font-size: 1.2rem;
  color: var(--orange);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.course-card:hover .course-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   10. About Snippet
   ---------------------------------------------------------------- */
.about-snippet {
  background: var(--navy);
}
.about-snippet__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-snippet__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.about-snippet__mark-wrap {
  opacity: .15;
}
.about-snippet__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  width: 100%;
}
.about-snippet__card strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.about-snippet__card span {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-snippet__card p { font-size: .875rem; color: rgba(255,255,255,.55); margin: 0; }

.about-snippet__content .eyebrow { margin-bottom: .5rem; }
.about-snippet__content h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-snippet__content p  { color: rgba(255,255,255,.65); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: .6rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.about-snippet__content .check-list li { color: rgba(255,255,255,.65); }

/* ----------------------------------------------------------------
   11. Accreditations Strip
   ---------------------------------------------------------------- */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.accred-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  background: var(--white);
  transition: box-shadow .2s, border-color .2s;
}
.accred-item:hover { box-shadow: var(--shadow); border-color: rgba(232,88,10,.2); }
.accred-item--active {
  border-color: rgba(22,163,74,.3);
  background: rgba(22,163,74,.03);
}
.accred-item__badge {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-light);
}
.accred-item--active .accred-item__badge { color: var(--success); }
.accred-item strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.accred-item span {
  display: block;
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
}
.accred-item em {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
}
.accred-item--active em { color: var(--success); }

/* ----------------------------------------------------------------
   12. Locations
   ---------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.location-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232,88,10,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}
.location-card h3 { margin-bottom: 12px; }
.location-card address { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ----------------------------------------------------------------
   13. CTA Banner
   ---------------------------------------------------------------- */
.cta-banner {
  background: var(--orange);
  padding-block: 64px;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: .4rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   14. Page Hero
   ---------------------------------------------------------------- */
.page-hero {
  padding: 80px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero--navy {
  background: var(--navy);
  border-bottom: none;
}
.page-hero--navy .eyebrow { color: var(--orange); }
.page-hero--navy h1      { color: var(--white); }
.page-hero--navy p       { color: rgba(255,255,255,.65); max-width: 560px; margin-top: .75rem; }

/* ----------------------------------------------------------------
   15. Course Section (Courses Page)
   ---------------------------------------------------------------- */
.course-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.course-filter-bar .container {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-block: 12px;
}
.course-filter-bar__link {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-mid);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: background .15s, color .15s, border-color .15s;
  text-decoration: none !important;
}
.course-filter-bar__link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.course-section__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.course-section__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: rgba(232,88,10,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.course-section__head .eyebrow { margin: 0; }
.course-section__head h2 { margin: 0; }
.course-section__head .badge { margin-left: auto; }

.course-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.course-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.course-detail h3 { margin-bottom: 1rem; }
.course-detail p  { font-size: .95rem; }

.course-meta-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc( var(--header-h) + 56px );
}
.course-meta-card__item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.course-meta-card__item:last-of-type { border-bottom: none; margin-bottom: 16px; }
.course-meta-card__item span { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
.course-meta-card__item strong { font-size: .9rem; color: var(--navy); }

/* ----------------------------------------------------------------
   16. About Page
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.values-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.values-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.values-list__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(232,88,10,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.values-list li strong { display: block; margin-bottom: 4px; }
.values-list li p { font-size: .875rem; margin: 0; }

.founder-section { background: var(--bg); }
.founder-inner { max-width: 960px; margin-inline: auto; }
.founder-card {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.founder-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid rgba(232,88,10,.2);
}
.founder-card__body h2 { margin-bottom: .75rem; }
.founder-card__quals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}
.founder-card__quals span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(13,37,69,.07);
  color: var(--navy);
}

.accred-detail { display: flex; flex-direction: column; gap: 16px; }
.accred-detail__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.accred-detail__item--active { border-color: rgba(22,163,74,.3); }
.accred-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.accred-detail__header strong { font-size: 1rem; color: var(--navy); }
.accred-detail__item p { font-size: .9rem; margin-bottom: .4rem; }

/* ----------------------------------------------------------------
   17. Contact Page
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.form-success {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  color: var(--success);
}
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label span { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,88,10,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { 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='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.contact-info { padding-top: 8px; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info h3 { margin: 2rem 0 1rem; font-size: 1rem; }
.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(232,88,10,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-info__item strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--text-light); margin-bottom: 3px; }
.contact-info__item a { color: var(--navy); font-weight: 600; font-size: .95rem; }
.contact-info__office { margin-bottom: 1.2rem; }
.contact-info__office strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info__office address { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }
.contact-info__hours { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-info__hours strong { display: block; margin-bottom: 6px; }
.contact-info__hours p { font-size: .875rem; }

/* ----------------------------------------------------------------
   18. Footer
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  padding-top: 72px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer__brand { }
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.site-footer__name {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .05em;
}
.site-footer__name em { color: var(--orange); }
.site-footer__sub {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.35);
}
.site-footer__tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .5rem;
}
.site-footer__reg {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

.site-footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.site-footer__col ul { list-style: none; padding: 0; }
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.site-footer__col a:hover { color: var(--orange); text-decoration: none; }

.site-footer__contact { list-style: none; padding: 0; }
.site-footer__contact li { margin-bottom: 16px; font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.site-footer__contact strong { display: block; color: rgba(255,255,255,.85); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.site-footer__contact a { color: rgba(255,255,255,.6); }
.site-footer__contact a:hover { color: var(--orange); text-decoration: none; }

.site-footer__bottom {
  padding-block: 20px;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }
.site-footer__accred { font-size: .72rem !important; }

/* ----------------------------------------------------------------
   19. Content page
   ---------------------------------------------------------------- */
.content-wrap {
  max-width: 720px;
  margin-inline: auto;
}
.content-wrap h2, .content-wrap h3 { margin-top: 2rem; margin-bottom: .75rem; }
.content-wrap ul { margin-bottom: 1rem; }

/* ----------------------------------------------------------------
   20. Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .course-grid { grid-template-columns: 1fr 1fr; }
  .course-card--featured { grid-column: span 2; }
  .accred-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .about-snippet__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-snippet__media { flex-direction: row; justify-content: center; }
  .course-detail { grid-template-columns: 1fr 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding-block: 56px; }

  /* Header / Nav */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
  }
  .site-nav__list li { width: 100%; }
  .site-nav__list a { display: block; padding: 12px 16px; width: 100%; }
  .btn-nav { display: inline-flex; margin: 8px 16px 4px; width: calc(100% - 32px); justify-content: center; }
  .site-header { position: sticky; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero__bg-mark { display: none; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-bar__inner { flex-wrap: wrap; gap: 0; }
  .stat { width: 50%; }
  .stat-divider { display: none; }

  /* Courses */
  .course-grid { grid-template-columns: 1fr; }
  .course-card--featured { grid-column: span 1; flex-direction: column; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .course-detail { grid-template-columns: 1fr; }
  .course-meta-card { position: static; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row--half { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  /* Founder card */
  .founder-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 24px; }
  .founder-card__quals { justify-content: center; }

  /* Locations */
  .location-grid { grid-template-columns: 1fr; }

  /* About */
  .about-snippet__media { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .accred-grid { grid-template-columns: 1fr; }
  .stat { width: 100%; }
  .course-section__head { flex-direction: column; align-items: flex-start; }
  .course-section__head .badge { margin-left: 0; }
}
