@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   BROMBUNORO — Core Design System
   Palette: #FFFFFF | #1C1917 | #1D4ED8 | #CA8A04
   ============================================================ */

:root {
  --white:       #FFFFFF;
  --charcoal:    #1C1917;
  --blue:        #1D4ED8;
  --blue-light:  #3B6EF0;
  --blue-dark:   #1240B8;
  --gold:        #CA8A04;
  --gold-light:  #EAB308;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --transition:  .22s ease;
}

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

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

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--gray-700); }

.text-blue  { color: var(--blue); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: .25rem .8rem;
  border-left: 3px solid var(--blue);
  margin-bottom: 1rem;
  background: rgba(29,78,216,.06);
}
.section-label.gold {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(202,138,4,.06);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--charcoal); }
.section-blue { background: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: .02em;
  text-align: center;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #B07803; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-sm { padding: .5rem 1.2rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── HEADER / NAV ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--charcoal);
  letter-spacing: -.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
}
.logo span { color: var(--blue); }

nav.main-nav { display: flex; align-items: center; gap: 2rem; }
nav.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  transition: var(--transition);
}
nav.main-nav a:hover { color: var(--blue); }
nav.main-nav a.active { color: var(--blue); }
nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -1rem;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .65rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--gray-700);
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--blue); }

.header-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-nav a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.02) 0 1px,
    transparent 1px 80px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(255,255,255,.02) 0 1px,
    transparent 1px 80px
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 strong { color: var(--gold); font-weight: 800; }
.hero p.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-item {}
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .2rem; }

.hero-visual {}
.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.4rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-500);
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { font-size: 1.05rem; margin-top: .75rem; }
.section-header-left { text-align: left; margin: 0 0 3rem; max-width: 100%; }
.divider-line {
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.divider-line.left { margin: 1rem 0 0; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 1.75rem; }
.card-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--gray-100); }

.card-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.card-dark .card-body p { color: rgba(255,255,255,.65); }

/* Course card */
.course-card { position: relative; }
.course-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.course-card:hover .course-card-img img { transform: scale(1.04); }
.course-badge {
  display: inline-block;
  padding: .2rem .7rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 3px;
  margin-bottom: .7rem;
}
.badge-blue { background: rgba(29,78,216,.12); color: var(--blue); }
.badge-gold { background: rgba(202,138,4,.12); color: var(--gold); }
.badge-dark { background: rgba(28,25,23,.08); color: var(--charcoal); }

.course-meta {
  display: flex;
  gap: 1.2rem;
  margin: .75rem 0;
  font-size: .8rem;
  color: var(--gray-500);
}
.course-meta span { display: flex; align-items: center; gap: .3rem; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.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; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; align-items: start; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; }

/* ── FEATURES / ICON BLOCKS ── */
.feature-block {
  display: flex;
  gap: 1.2rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(29,78,216,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-icon.gold { background: rgba(202,138,4,.1); color: var(--gold); }

/* ── DATA / STATS ── */
.stat-block {
  text-align: center;
  padding: 1.5rem;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}
.stat-num .accent { color: var(--blue); }
.stat-label { font-size: .82rem; color: var(--gray-500); margin-top: .35rem; }

/* ── CHART BARS (CSS) ── */
.chart-section { padding: 3rem 0; }
.chart-wrap { max-width: 560px; }
.chart-title { font-size: .8rem; font-weight: 600; color: var(--gray-500); margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .08em; }
.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  align-items: center;
  gap: .8rem;
  margin-bottom: .7rem;
}
.bar-label { font-size: .82rem; color: var(--gray-700); font-weight: 500; text-align: right; }
.bar-track {
  background: var(--gray-100);
  border-radius: 3px;
  height: 18px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--blue);
  transition: width 1s ease;
}
.bar-fill.gold { background: var(--gold); }
.bar-value { font-size: .78rem; font-weight: 700; color: var(--charcoal); }

/* ── PIE CHART (CSS) ── */
.pie-legend { margin-top: 1.5rem; }
.pie-legend-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .5rem;
  font-size: .85rem;
}
.pie-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── COURSE PATHWAY ── */
.pathway-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  position: relative;
}
.pathway-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.pathway-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── ACCORDION / FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
  gap: 1rem;
}
.faq-question:hover { color: var(--blue); }
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.2rem;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .95rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .88rem; }
.author-role { font-size: .78rem; color: var(--gray-500); }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-check { display: flex; gap: .7rem; align-items: flex-start; }
.form-check input[type="checkbox"] { margin-top: .2rem; accent-color: var(--blue); }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  font-size: .95rem;
}
.form-success.visible { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--gray-500);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-300); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(29,78,216,.15));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: .75rem; }
.page-hero p.lead { color: rgba(255,255,255,.68); font-size: 1rem; max-width: 580px; }
.breadcrumb-dark { color: rgba(255,255,255,.5); }
.breadcrumb-dark a { color: rgba(255,255,255,.75); }

/* ── INFO BOXES ── */
.info-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue);
  background: rgba(29,78,216,.05);
}
.info-box.gold { border-left-color: var(--gold); background: rgba(202,138,4,.05); }
.info-box h4 { margin-bottom: .5rem; font-size: .95rem; }
.info-box p { margin: 0; font-size: .9rem; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: .85rem 1rem;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.data-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.data-table tr:hover td { background: var(--gray-50); }
.data-table tr:last-child td { border-bottom: none; }

/* ── BLOG ── */
.blog-card {}
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.blog-meta { font-size: .75rem; color: var(--gray-500); margin-bottom: .6rem; display: flex; gap: .8rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--blue); }
.read-more { font-size: .82rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .25rem; }
.read-more:hover { gap: .5rem; }

/* ── CONTACT PAGE ── */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(29,78,216,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.contact-info-item p { margin: 0; font-size: .9rem; }

/* ── GLOSSARY ── */
.glossary-letter { font-size: 2rem; font-weight: 800; color: var(--blue); margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gray-200); }
.glossary-term { padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
.glossary-term h4 { font-size: .98rem; margin-bottom: .3rem; }
.glossary-term p { margin: 0; font-size: .88rem; }

/* ── CALCULATOR ── */
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.calc-result {
  background: var(--charcoal);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}
.calc-result-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.calc-result-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
}
.footer-main {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding: .25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-policies { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.operator-note { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 1rem; line-height: 1.5; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 2px solid var(--blue);
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
#cookie-banner.hidden { display: none; }
.cookie-text { font-size: .85rem; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── POLICY PAGES ── */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gray-200); }
.policy-content h3 { font-size: 1.1rem; margin: 1.75rem 0 .75rem; color: var(--blue); }
.policy-content p { font-size: .93rem; line-height: 1.75; }
.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { font-size: .93rem; line-height: 1.7; margin-bottom: .35rem; list-style: disc; color: var(--gray-700); }
.policy-date { font-size: .8rem; color: var(--gray-500); margin-bottom: 2rem; padding: .75rem 1rem; background: var(--gray-50); border-radius: var(--radius-sm); }

/* ── ABOUT / TEAM ── */
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.team-role { font-size: .82rem; color: var(--blue); font-weight: 600; margin-bottom: .5rem; }
.team-bio { font-size: .82rem; color: var(--gray-500); }

/* ── TIMELINE ── */
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-year {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  padding-top: .1rem;
}
.timeline-content h4 { margin-bottom: .4rem; }
.timeline-content p { margin: 0; font-size: .88rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03) 0 1px,
    transparent 1px 40px
  );
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }

/* ── CHECKLIST ── */
.checklist { padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--gray-700);
}
.checklist li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .08rem;
}
.checklist.white li { color: rgba(255,255,255,.8); }
.checklist.white li::before { color: var(--gold); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.highlight-box h3 { color: var(--white); margin-bottom: 1rem; }
.highlight-box p { color: rgba(255,255,255,.7); margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-image-wrap { max-height: 280px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-policies { justify-content: center; }
  #cookie-banner { flex-direction: column; gap: 1rem; }
  .bar-row { grid-template-columns: 80px 1fr 40px; }
  .bar-label { font-size: .72rem; }
  section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { justify-content: center; }
}
