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

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

:root {
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c8d0db;
  --gray-500: #7a8899;
  --gray-700: #3d4f63;
  --navy: #1a2e4a;
  --azure: #2d7dd2;
  --azure-light: #e8f2fc;
  --azure-dark: #1f5fa0;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 4px rgba(26,46,74,0.07);
  --shadow-md: 0 4px 16px rgba(26,46,74,0.10);
  --shadow-lg: 0 8px 32px rgba(26,46,74,0.13);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }
a { color: var(--azure); text-decoration: none; transition: color .2s; }
a:hover { color: var(--azure-dark); }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .4rem; color: var(--gray-700); }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--azure);
  color: var(--white);
  border-color: var(--azure);
}
.btn-primary:hover {
  background: var(--azure-dark);
  border-color: var(--azure-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,125,210,.30);
}
.btn-outline {
  background: transparent;
  color: var(--azure);
  border-color: var(--azure);
}
.btn-outline:hover {
  background: var(--azure);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--azure);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.5px;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -.3px;
}
.logo-text span { color: var(--azure); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all .18s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--azure-light);
  color: var(--azure);
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  transition: transform .2s;
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .875rem;
  color: var(--gray-700);
  transition: all .15s;
}
.dropdown-menu a:hover {
  background: var(--azure-light);
  color: var(--azure);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

/* ========== HERO ========== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { flex: 1; min-width: 0; }
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 24px; color: var(--navy); }
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-image { flex: 1; min-width: 0; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.hero-stat-label {
  font-size: .825rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-700); max-width: 600px; margin: 0 auto; }
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-body { padding: 28px; }
.card-img img { width: 100%; height: 220px; object-fit: cover; display: block; }

/* GRID LAYOUTS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========== PROGRAM CARDS ========== */
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.program-card-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.program-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card-level {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--azure);
  margin-bottom: 10px;
}
.program-card-body h3 { margin-bottom: 12px; font-size: 1.15rem; }
.program-card-body p { flex: 1; font-size: .9rem; }
.program-card-meta {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.meta-item { font-size: .82rem; color: var(--gray-500); }
.meta-item strong { display: block; color: var(--navy); font-size: .9rem; }

/* ========== FEATURE LIST ========== */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--azure-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--azure);
  font-size: 1.2rem;
}
.feature-text h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-text p { font-size: .875rem; margin: 0; }

/* ========== INFO BOXES ========== */
.info-box {
  background: var(--azure-light);
  border-left: 4px solid var(--azure);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--navy); margin: 0; font-size: .95rem; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name { font-weight: 600; font-size: .95rem; color: var(--navy); }
.author-role { font-size: .82rem; color: var(--gray-500); }

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .975rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background .15s;
  user-select: none;
  list-style: none;
  gap: 12px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--azure);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--gray-50);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 20px 24px;
}
.faq-answer p { font-size: .925rem; margin: 0; }

/* ========== CONTACT FORM ========== */
.contact-form { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-control:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(45,125,210,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--azure); flex-shrink: 0; }
.form-check label { font-size: .875rem; color: var(--gray-700); }
.success-message {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: #065f46;
  font-weight: 600;
  margin-top: 16px;
}
.success-message.show { display: block; }

/* ========== BLOG ========== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img img { width: 100%; height: 210px; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: .875rem; flex: 1; margin-bottom: 16px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--gray-100); font-size: .8rem; color: var(--gray-500); }
.read-more { font-size: .875rem; font-weight: 600; color: var(--azure); }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 16px 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: .825rem; color: var(--gray-500); }
.breadcrumb a:hover { color: var(--azure); }
.breadcrumb-sep { font-size: .75rem; color: var(--gray-300); }
.breadcrumb-current { font-size: .825rem; color: var(--navy); font-weight: 500; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 64px 0 56px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--gray-700); max-width: 640px; }

/* ========== STEPS ========== */
.steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-number {
  width: 48px; height: 48px;
  background: var(--azure);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: .9rem; margin: 0; }

/* ========== STATS STRIP ========== */
.stats-strip { background: var(--navy); padding: 60px 0; }
.stats-strip .stat-value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); display: block; }
.stats-strip .stat-label { font-size: .875rem; color: rgba(255,255,255,.65); margin-top: 4px; }
.stats-grid { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--azure);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--azure); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--gray-50); color: var(--azure-dark); }

/* ========== INSTRUCTOR CARD ========== */
.instructor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow .22s, transform .22s;
}
.instructor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.instructor-card img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--azure-light);
}
.instructor-name { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.instructor-title { font-size: .85rem; color: var(--azure); font-weight: 500; margin-bottom: 12px; }
.instructor-bio { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* ========== TOOL CARD ========== */
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
}
.tool-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tool-icon { font-size: 2rem; margin-bottom: 14px; }
.tool-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tool-card p { font-size: .875rem; margin: 0; }

/* ========== TABLE ========== */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { background: var(--gray-50); color: var(--navy); font-weight: 600; padding: 14px 18px; text-align: left; border-bottom: 2px solid var(--gray-200); }
.data-table td { padding: 14px 18px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

/* ========== POLICY PAGES ========== */
.policy-content { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-top: 8px; border-top: 1px solid var(--gray-100); }
.policy-content h2:first-of-type { border-top: none; margin-top: 16px; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--navy); }
.policy-content ul, .policy-content ol { margin: 12px 0 16px; }
.policy-content p, .policy-content li { font-size: .95rem; line-height: 1.75; }
.policy-updated { font-size: .875rem; color: var(--gray-500); margin-bottom: 32px; padding: 12px 16px; background: var(--gray-50); border-radius: 8px; display: inline-block; }

/* ========== ARTICLE ========== */
.article-header { padding: 64px 0 40px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.article-meta { display: flex; gap: 20px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.article-date { font-size: .85rem; color: var(--gray-500); }
.article-author { font-size: .85rem; color: var(--gray-700); font-weight: 500; }
.article-category { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--azure); background: var(--azure-light); padding: 4px 12px; border-radius: 20px; }
.article-body { padding: 56px 0; }
.article-img { width: 100%; border-radius: var(--radius-lg); margin: 32px 0; box-shadow: var(--shadow-md); }
.article-body h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-body p { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 12px 0 20px; }
.article-body li { font-size: .975rem; line-height: 1.75; }
.article-share { padding: 32px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 40px 0; }
.article-share span { font-weight: 600; font-size: .875rem; color: var(--navy); }

/* ========== SIDEBAR ========== */
.sidebar-widget { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 16px; color: var(--navy); }
.sidebar-link { display: block; padding: 8px 0; font-size: .875rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--azure); }

/* ========== TAGS ========== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--azure-light);
  color: var(--azure);
  text-decoration: none;
  transition: all .15s;
}
.tag:hover { background: var(--azure); color: var(--white); }

/* ========== SPLIT LAYOUT ========== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-reverse .split-img { order: -1; }

/* ========== FOOTER ========== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.6); }
.footer-col h5 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 18px; letter-spacing: .3px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.95); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: rgba(255,255,255,.6); align-items: flex-start; }
.footer-contact-item strong { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .825rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: rgba(255,255,255,.9); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: .875rem; margin: 0; }
.cookie-banner a { color: var(--azure); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-img { order: 0; }
  .hero-inner { flex-direction: column; }
  .hero-image { width: 100%; }
  .hero { padding: 64px 0 56px; }
  .stats-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray-700);
    display: block;
  }
  .mobile-menu a:hover { background: var(--azure-light); color: var(--azure); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ========== POLICY PAGES ========== */
.page-hero--text {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 56px 0 48px;
}
.page-hero-inner { max-width: 760px; }
.page-hero--text h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.page-hero-sub {
  font-size: .9rem;
  color: var(--gray-500);
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--azure); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--gray-300); }

.policy-section { padding: 64px 0 80px; }
.container--narrow { max-width: 820px; }

.policy-intro {
  background: var(--azure-light);
  border-left: 4px solid var(--azure);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.policy-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.policy-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.policy-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
.policy-toc li { font-size: .9rem; line-height: 1.8; }
.policy-toc a { color: var(--azure); }
.policy-toc a:hover { text-decoration: underline; }

.policy-body h2 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin: 44px 0 14px;
  padding-top: 44px;
  border-top: 1px solid var(--gray-100);
}
.policy-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.policy-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  margin: 28px 0 10px;
}
.policy-body p {
  font-size: .975rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.policy-body ul, .policy-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-body li {
  font-size: .975rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.policy-body a { color: var(--azure); }
.policy-body a:hover { text-decoration: underline; }
.policy-body code {
  background: var(--gray-100);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .875rem;
  font-family: 'Courier New', monospace;
  color: var(--navy);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: .9rem;
}
.policy-table th, .policy-table td {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid var(--gray-100);
  vertical-align: top;
  line-height: 1.6;
}
.policy-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
}
.policy-table tbody tr:nth-child(even) { background: var(--gray-50); }
.policy-table tbody td { color: var(--gray-700); }
.policy-table tbody th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  width: 200px;
}

@media (max-width: 640px) {
  .policy-toc ol { grid-template-columns: 1fr; }
  .policy-table { font-size: .8rem; }
  .policy-table th, .policy-table td { padding: 8px 10px; }
}
