/* ============================================
   BIQ TRAINING & LEARNING PLT — STYLE.CSS
   Aesthetic: Refined Corporate / Editorial
   Palette: Deep Navy + Warm Gold + Cream
   Typography: Playfair Display + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0d1b3e;
  --navy-mid:    #162348;
  --navy-light:  #1e3060;
  --gold:        #c9992a;
  --gold-light:  #e4b84a;
  --gold-pale:   #f5e6c0;
  --cream:       #faf8f3;
  --cream-dark:  #f0ede4;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-mid:    #3d4066;
  --text-light:  #6b7280;
  --border:      rgba(201,153,42,0.2);
  --shadow-sm:   0 2px 8px rgba(13,27,62,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,62,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,62,0.18);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius:      4px;
  --radius-lg:   12px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography Scale ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--navy); color: var(--cream); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(250,248,243,0.75); }

.section--cream { background: var(--cream-dark); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,62,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,153,42,0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,27,62,0.98);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.navbar__logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(250,248,243,0.8);
  letter-spacing: 0.03em;
  transition: var(--transition);
  border-radius: var(--radius);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold-light);
  background: rgba(201,153,42,0.1);
}

.navbar__cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
}

.navbar__cta:hover {
  background: var(--gold-light) !important;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,153,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30,48,96,0.6) 0%, transparent 70%);
}

/* Geometric lines */
.hero__lines {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}

.hero__lines::before {
  content: '';
  position: absolute;
  top: 10%; right: 8%;
  width: 380px; height: 380px;
  border: 1px solid rgba(201,153,42,0.12);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}

.hero__lines::after {
  content: '';
  position: absolute;
  top: 15%; right: 12%;
  width: 260px; height: 260px;
  border: 1px solid rgba(201,153,42,0.18);
  border-radius: 50%;
  animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__tagline-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero__tagline-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(250,248,243,0.72);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,153,42,0.1);
  border: 1px solid rgba(201,153,42,0.25);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__badge-text {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,153,42,0.3);
}

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

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

/* ── Section Headers ── */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center { text-align: center; }

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

.section-header--center p { margin: 0 auto; }

.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.section-header--center .divider { margin: 0 auto 1.25rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(13,27,62,0.07);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  border-color: rgba(201,153,42,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card--dark {
  background: var(--navy-mid);
  border-color: rgba(201,153,42,0.15);
  color: var(--cream);
}

.card--dark:hover {
  border-color: rgba(201,153,42,0.4);
  background: var(--navy-light);
}

.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: rgba(250,248,243,0.7); }

.card__icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.card--dark .card__icon {
  background: rgba(201,153,42,0.15);
}

.card h4 { margin-bottom: 0.6rem; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,153,42,0.2);
  border-bottom: 1px solid rgba(201,153,42,0.2);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(201,153,42,0.15);
}

.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(201,153,42,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.78rem;
  color: rgba(250,248,243,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Services List ── */
.services-list {
  display: grid;
  gap: 0;
}

.service-category {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.service-category:last-child { border-bottom: none; }

.service-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.service-category__number {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  min-width: 2rem;
}

.service-category__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.service-category__arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 3rem;
}

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--cream-dark);
  border: 1px solid rgba(13,27,62,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.service-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── Courses ── */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13,27,62,0.08);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  border-color: rgba(201,153,42,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.course-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.course-card__category {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.course-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.course-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.course-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  margin-top: auto;
}

.course-card__link:hover {
  color: var(--navy);
  gap: 0.7rem;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 3px solid var(--gold-pale);
}

.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.team-card__title {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Philosophy ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.philosophy-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.philosophy-item:nth-child(2n) { border-right: none; }
.philosophy-item:nth-child(3),
.philosophy-item:nth-child(4) { border-bottom: none; }

.philosophy-item:hover {
  background: var(--gold-pale);
}

.philosophy-item__step {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.philosophy-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.philosophy-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(201,153,42,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: rgba(250,248,243,0.85);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,153,42,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: rgba(201,153,42,0.15);
  border-color: rgba(201,153,42,0.5);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(250,248,243,0.7);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,153,42,0.2);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250,248,243,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,153,42,0.6);
  background: rgba(255,255,255,0.09);
}

.form-group select option { background: var(--navy); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
footer {
  background: #080f22;
  color: rgba(250,248,243,0.6);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,153,42,0.12);
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__brand-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__links a {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.55);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy { font-size: 0.8rem; }

.footer__hrdc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201,153,42,0.1);
  border: 1px solid rgba(201,153,42,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(72px + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,153,42,0.1);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(250,248,243,0.7); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.78rem;
  color: rgba(250,248,243,0.5);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { color: rgba(201,153,42,0.4); }
.breadcrumb__current { color: var(--gold-light) !important; }

/* ── Mission Block ── */
.mission-block {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2.5rem 0;
}

.mission-block h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.mission-block p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Highlight Box ── */
.highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 3rem 0;
}

.highlight-box__main {
  background: var(--navy);
  padding: 3rem;
  color: var(--cream);
}

.highlight-box__main h2 { color: var(--white); margin-bottom: 1rem; }
.highlight-box__main p { color: rgba(250,248,243,0.72); margin-bottom: 1.75rem; }

.highlight-box__aside {
  background: var(--gold);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-box__aside h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlight-box__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-box__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.highlight-box__list li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Scroll Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlight-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: var(--navy);
    padding: 2rem;
    gap: 0.25rem;
    overflow-y: auto;
  }

  .navbar__nav.open a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-item { border-right: none; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-item__number { font-size: 2rem; }
}
