@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #1B3A6B;
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-surface-2: #F1F5F9;
  --color-border: #E2E8F0;
  --color-text: #0F172A;
  --color-text-secondary: #475569;
  --color-text-muted: #94A3B8;
  --color-success: #059669;
  --radius-sm: 6px;
  --radius-md: 10px;
  --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,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--color-text-secondary); line-height: 1.75; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(37,99,235,.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 12px; font-size: 1.0625rem; }
.text-accent { color: var(--color-accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(37,99,235,.04);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
  background: var(--color-surface-2);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--color-surface-2); color: var(--color-primary); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--color-surface);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(37,99,235,.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-desc { font-size: 1.0625rem; color: var(--color-text-secondary); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.hero-stat-label { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 2px; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,235,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-badge-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-primary); }
.hero-badge-text span { font-size: 0.75rem; color: var(--color-text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-surface-2);
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-bar-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-right: 8px;
}
.trust-item {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  padding: 6px 16px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  opacity: .7;
}
.trust-item:hover { opacity: 1; }

/* ===== CARDS ===== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--color-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ===== COURSE CARD ===== */
.course-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.course-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.course-card-body { padding: 20px; }
.course-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.course-level {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 100px;
}
.level-beginner { background: rgba(5,150,105,.1); color: var(--color-success); }
.level-intermediate { background: rgba(245,158,11,.1); color: #D97706; }
.level-advanced { background: rgba(220,38,38,.08); color: #DC2626; }
.course-duration { font-size: 0.8rem; color: var(--color-text-muted); }
.course-card h3 { font-size: 1rem; margin-bottom: 8px; }
.course-card p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 16px; }
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.course-instructor { display: flex; align-items: center; gap: 8px; }
.course-instructor img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.course-instructor span { font-size: 0.8125rem; font-weight: 500; color: var(--color-text-secondary); }
.course-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.course-link:hover { gap: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9375rem; color: var(--color-text-secondary); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author-name { font-weight: 700; font-size: 0.9rem; color: var(--color-primary); }
.testimonial-author-role { font-size: 0.8rem; color: var(--color-text-muted); }

/* ===== BLOG CARD ===== */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--color-primary); }
.blog-card p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 14px; }
.blog-card-meta { font-size: 0.8rem; color: var(--color-text-muted); }
.blog-card a { display: block; color: inherit; }
.blog-card a:hover h3 { color: var(--color-accent); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}
.faq-item.open .faq-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--color-primary);
  padding: 80px 0;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.7); }
.cta-section .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--color-surface-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-brand .nav-logo-icon { background: rgba(255,255,255,.15); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.6); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: var(--color-text); font-weight: 500; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 56px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.0625rem; max-width: 600px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: block;
}
.stat-label { font-size: 0.875rem; color: var(--color-text-muted); margin-top: 4px; }
.stat-divider { border: none; border-left: 1px solid var(--color-border); }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 6px; }
.form-success {
  display: none;
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--color-success);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ===== TABS ===== */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color .2s, background .2s;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
}
.tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.tab-btn:hover { color: var(--color-primary); background: var(--color-surface-2); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== PROCESS STEPS ===== */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.step-body h4 { margin-bottom: 6px; padding-top: 6px; font-size: 1.0625rem; }
.step-body p { font-size: 0.9rem; }

/* ===== ABOUT PAGE ===== */
.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--color-border);
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8125rem; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.8375rem; color: var(--color-text-muted); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.highlight-box h3 { color: var(--color-primary); }

/* ===== TWO-COL INFO ===== */
.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-info img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== BADGE LIST ===== */
.badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  z-index: 2000;
  display: none;
  border-top: 1px solid rgba(255,255,255,.1);
}
#cookie-banner.show { display: flex; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.cookie-inner p { font-size: 0.875rem; line-height: 1.5; color: rgba(255,255,255,.8); }
.cookie-inner p a { color: #93C5FD; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.cookie-accept { background: var(--color-accent); color: #fff; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2) !important; }
.cookie-decline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ===== FEATURE ROW ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; gap: 12px; }
.feature-item-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-item-icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.feature-item-text strong { display: block; font-size: 0.9375rem; color: var(--color-primary); margin-bottom: 2px; }
.feature-item-text p { font-size: 0.875rem; margin: 0; }

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0 48px;
  margin-top: var(--nav-height);
}
.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.policy-breadcrumb a {
  color: var(--color-accent);
  font-weight: 500;
}
.policy-breadcrumb a:hover { text-decoration: underline; }
.policy-breadcrumb span { color: var(--color-text-muted); }
.policy-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 12px;
  color: var(--color-primary);
}
.policy-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.policy-main { padding: 64px 0 96px; }

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky TOC sidebar */
.policy-toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.policy-toc h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.policy-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-toc nav a {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: all .15s ease;
}
.policy-toc nav a:hover {
  background: rgba(37,99,235,.06);
  color: var(--color-accent);
}

/* Article content */
.policy-content {
  max-width: 760px;
}
.policy-content section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--color-border);
}
.policy-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-content h2 {
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-top: 4px;
}
.policy-content h3 {
  font-size: 1.0625rem;
  color: var(--color-primary);
  margin: 24px 0 10px;
}
.policy-content p {
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 0.9375rem;
}
.policy-content p:last-child { margin-bottom: 0; }
.policy-content a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-content a:hover { color: var(--color-accent-hover); }

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.policy-notice {
  background: rgba(37,99,235,.06);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.policy-contact-block {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.policy-contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.policy-contact-item:last-child { border-bottom: none; }
.policy-contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  min-width: 200px;
  flex-shrink: 0;
}
.policy-contact-value {
  font-size: 0.9375rem;
  color: var(--color-text);
}
.policy-contact-value a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cookie table */
.policy-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin: 20px 0;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  background: var(--color-surface);
}
.policy-table thead {
  background: var(--color-surface-2);
}
.policy-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
}
.policy-table td {
  padding: 12px 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:hover td { background: var(--color-surface-2); }
.policy-table code {
  font-family: monospace;
  font-size: 0.75rem;
  background: rgba(37,99,235,.08);
  color: var(--color-accent);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-toc {
    position: static;
    order: -1;
  }
}
@media (max-width: 600px) {
  .policy-contact-item { flex-direction: column; gap: 4px; }
  .policy-contact-label { min-width: unset; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-info { gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-badge { left: 10px; }
  .hero-stats { gap: 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .two-col-info { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
