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

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:        #FFFFFF;
  --gray-50:      #FAFAF9;
  --gray-100:     #F5F5F4;
  --gray-200:     #E7E5E4;
  --gray-300:     #D6D3D1;
  --gray-500:     #78716C;
  --gray-700:     #44403C;
  --gray-900:     #1C1917;
  --blue-dark:    #1E3A5F;
  --blue-mid:     #2D5080;
  --blue-light:   #EBF2FA;
  --green-dark:   #166534;
  --green-mid:    #15803D;
  --green-light:  #DCFCE7;
  --accent:       #D97706;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Merriweather', Georgia, serif;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:    0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.05);
  --transition:   all .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--blue-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { color: var(--gray-700); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--gray-500); line-height: 1.8; }
.text-small { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-blue { color: var(--blue-dark); }
.text-green { color: var(--green-dark); }
.font-serif { font-family: var(--font-serif); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide   { max-width: 1380px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--gray { background: var(--gray-100); }
.section--blue { background: var(--blue-dark); }
.section--blue-light { background: var(--blue-light); }

.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-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--blue-dark);
  color: var(--white);
  border: 2px solid var(--blue-dark);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn--outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--green {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}
.btn--green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   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: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--blue-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.15rem; font-weight: 800; color: var(--blue-dark); letter-spacing: -.5px; }
.logo-tagline { font-size: .7rem; color: var(--gray-500); font-weight: 400; text-transform: uppercase; letter-spacing: .5px; }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue-dark); background: var(--blue-light); }
.nav-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  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(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .85rem;
  font-size: .875rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-link:hover { background: var(--blue-light); color: var(--blue-dark); }
.dropdown-icon {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}

.header-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
  padding: 6rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: .3rem .75rem;
  border-radius: var(--radius-sm);
  margin-bottom: .85rem;
}
.section-eyebrow--green {
  color: var(--green-dark);
  background: var(--green-light);
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }
.divider {
  width: 48px; height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  margin: 1rem 0;
}
.divider--green { background: var(--green-dark); }
.centered .divider { margin-left: auto; margin-right: auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: .25rem .6rem;
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
}
.card-tag--green { color: var(--green-dark); background: var(--green-light); }
.card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--gray-500); margin-bottom: 1rem; }
.card-meta { display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--gray-500); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--gray-200); }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }

/* Course card */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.course-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .course-card-img img { transform: scale(1.04); }
.course-level {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--blue-dark);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .25rem .6rem;
  border-radius: var(--radius-sm);
}
.course-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.course-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.course-card-body p { font-size: .875rem; color: var(--gray-500); flex: 1; margin-bottom: 1rem; }
.course-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--gray-500); margin-bottom: 1rem; }
.course-meta span { display: flex; align-items: center; gap: .25rem; }
.course-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   STATS
   ============================================================ */
.stats-strip {
  background: var(--blue-dark);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; }
.stat-num span { color: rgba(255,255,255,.5); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ============================================================
   FEATURES / BENEFITS
   ============================================================ */
.feature-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-item p { font-size: .9rem; color: var(--gray-500); }

.benefit-list { display: flex; flex-direction: column; gap: .85rem; }
.benefit-item { display: flex; align-items: flex-start; gap: .85rem; }
.benefit-check {
  width: 22px; height: 22px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .2rem;
}
.benefit-check svg { width: 12px; height: 12px; color: var(--white); }
.benefit-item p { margin: 0; font-size: .95rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--blue-light);
  line-height: 1;
  font-family: var(--font-serif);
  margin-bottom: .5rem;
  color: var(--blue-dark);
  opacity: .2;
}
.testimonial-text { font-size: .95rem; color: var(--gray-700); font-style: italic; margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--gray-900); }
.author-title { font-size: .78rem; color: var(--gray-500); }
.stars { color: #F59E0B; font-size: .85rem; margin-bottom: .5rem; }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
  text-align: left;
  transition: var(--transition);
  gap: 1rem;
}
.accordion-toggle:hover { background: var(--gray-50); color: var(--blue-dark); }
.accordion-toggle.open { color: var(--blue-dark); background: var(--blue-light); }
.accordion-icon { flex-shrink: 0; transition: transform .25s; color: var(--gray-500); }
.accordion-toggle.open .accordion-icon { transform: rotate(180deg); color: var(--blue-dark); }
.accordion-body { display: none; padding: 1.25rem 1.5rem; background: var(--white); border-top: 1px solid var(--gray-200); }
.accordion-body.open { display: block; }
.accordion-body p { font-size: .9rem; color: var(--gray-700); margin: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(30,58,95,.1); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-hint { font-size: .78rem; color: var(--gray-500); margin-top: .35rem; }
.form-error { font-size: .78rem; color: #DC2626; margin-top: .35rem; }

.form-success {
  background: var(--green-light);
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--green-dark);
  font-weight: 500;
  display: none;
  align-items: center;
  gap: .75rem;
}
.form-success.visible { display: flex; }
.form-success-icon { font-size: 1.25rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb .sep { color: var(--gray-300); }
.breadcrumb .current { color: var(--gray-700); font-weight: 500; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--blue-dark);
  padding: 4rem 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; }
.page-hero-meta { display: flex; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.page-hero-meta span { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.7); }

/* ============================================================
   TABLE OF CONTENTS (sidebar)
   ============================================================ */
.toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 85px;
}
.toc h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1rem; color: var(--gray-500); }
.toc-list { display: flex; flex-direction: column; gap: .4rem; }
.toc-link {
  font-size: .875rem;
  color: var(--gray-700);
  padding: .3rem .5rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: var(--transition);
  display: block;
}
.toc-link:hover, .toc-link.active { color: var(--blue-dark); background: var(--blue-light); border-left-color: var(--blue-dark); }

/* ============================================================
   ARTICLE CONTENT
   ============================================================ */
.article-content h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; padding-top: 1rem; border-top: 2px solid var(--gray-200); }
.article-content h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .75rem; }
.article-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .5rem; line-height: 1.7; font-size: .95rem; color: var(--gray-700); }
.article-content blockquote {
  border-left: 4px solid var(--blue-dark);
  padding: 1rem 1.5rem;
  background: var(--blue-light);
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content blockquote p { font-style: italic; margin: 0; color: var(--blue-dark); }
.article-content .highlight-box {
  background: var(--green-light);
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.article-content .highlight-box p { margin: 0; color: var(--green-dark); font-weight: 500; }
.article-content img { border-radius: var(--radius-md); margin: 2rem 0; width: 100%; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-content th { background: var(--blue-dark); color: var(--white); padding: .75rem 1rem; text-align: left; font-weight: 600; }
.article-content td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-200); }
.article-content tr:nth-child(even) td { background: var(--gray-50); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--blue-dark);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .875rem; margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: .85rem; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: .2rem; color: rgba(255,255,255,.3); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .25rem .6rem;
  border-radius: 100px;
  background: var(--gray-200);
  color: var(--gray-700);
}
.tag--blue { background: var(--blue-light); color: var(--blue-dark); }
.tag--green { background: var(--green-light); color: var(--green-dark); }
.tag--amber { background: #FEF3C7; color: #92400E; }

/* ============================================================
   UTILITIES
   ============================================================ */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; } .p-2 { padding: 1rem; } .p-3 { padding: 1.5rem; } .p-4 { padding: 2rem; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  border-left: 4px solid var(--blue-dark);
  background: var(--blue-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; color: var(--blue-dark); font-size: .9rem; }
.info-box--green { border-left-color: var(--green-dark); background: var(--green-light); }
.info-box--green p { color: var(--green-dark); }
.info-box--amber { border-left-color: var(--accent); background: #FEF3C7; }
.info-box--amber p { color: #92400E; }

/* ============================================================
   PROGRESS STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; }
.step-num {
  width: 36px; height: 36px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.step-body h4 { margin-bottom: .35rem; }
.step-body p { font-size: .9rem; color: var(--gray-500); margin: 0; }

/* ============================================================
   TWO-COL LAYOUT (sidebar + content)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.two-col--reverse {
  grid-template-columns: 300px 1fr;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-top: 3rem; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.page-link:hover { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-dark); }
.page-link.active { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: .85rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--blue-light); color: var(--blue-dark); }
.mobile-nav-section { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); padding: 1rem 1rem .25rem; margin-top: .5rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--gray-900);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.cookie-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-accept {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--green-mid); }
.cookie-settings {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2);
  padding: .6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .875rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-settings:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .85rem; color: var(--blue-dark); }
.policy-content h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: .6rem; color: var(--gray-900); }
.policy-content p { font-size: .9375rem; line-height: 1.8; margin-bottom: 1rem; color: var(--gray-700); }
.policy-content ul { margin: .75rem 0 1.25rem 1.5rem; list-style: disc; }
.policy-content li { font-size: .9375rem; line-height: 1.7; color: var(--gray-700); margin-bottom: .4rem; }
.policy-content a { color: var(--blue-dark); text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .875rem; }
.policy-content th { background: var(--gray-100); color: var(--gray-900); padding: .65rem 1rem; text-align: left; font-weight: 600; border: 1px solid var(--gray-200); }
.policy-content td { padding: .65rem 1rem; border: 1px solid var(--gray-200); color: var(--gray-700); }
.policy-meta { display: flex; gap: 2rem; padding: 1rem 1.5rem; background: var(--gray-100); border-radius: var(--radius-md); margin-bottom: 2.5rem; flex-wrap: wrap; }
.policy-meta span { font-size: .8rem; color: var(--gray-500); }
.policy-meta strong { color: var(--gray-700); }

/* ============================================================
   GLOSSARY
   ============================================================ */
.glossary-term { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt { font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .5rem; }
.glossary-term dd { font-size: .9375rem; color: var(--gray-700); line-height: 1.75; }
.glossary-alpha { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.alpha-link {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}
.alpha-link:hover { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-mid); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); }
.contact-detail-body { }
.contact-detail-body strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.contact-detail-body span { font-size: .95rem; color: var(--white); }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-box h3 { margin-bottom: 1.5rem; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-bar {
  display: flex;
  gap: .5rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.search-bar input {
  flex: 1;
  padding: .85rem 1.25rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  outline: none;
  transition: var(--transition);
}
.search-bar input:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(30,58,95,.1); }
.search-bar button {
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--blue-mid); }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-500);
  margin-top: 2rem;
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--gray-300); }
.map-placeholder p { font-size: .875rem; margin: 0; }


/* === AUTO-FIXED: SVG size rules === */
.benefit-item svg,.benefit-list svg { width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;flex-shrink:0; }
.feature-item svg { width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;flex-shrink:0; }
.text-center svg { width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;flex-shrink:0; }
