@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --color-bg:        #080c14;
  --color-bg-2:      #0d1220;
  --color-bg-card:   #111827;
  --color-border:    #1e2d45;
  --color-accent:    #00c2ff;
  --color-accent-2:  #0078d4;
  --color-text:      #e8eaf0;
  --color-muted:     #8a9ab5;
  --color-white:     #ffffff;
  --color-success:   #22c55e;
  --font-head:       'Space Grotesk', sans-serif;
  --font-body:       'Inter', sans-serif;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --transition:      0.25s ease;
  --shadow-card:     0 4px 32px rgba(0, 194, 255, 0.07);
  --shadow-glow:     0 0 40px rgba(0, 194, 255, 0.18);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--color-muted); font-size: 1rem; line-height: 1.7; }

.accent { color: var(--color-accent); }
.tag-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* =========================================
   LAYOUT HELPERS
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 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; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #050a12;
}
.btn-primary:hover {
  background: #33d1ff;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--color-accent);
  padding: 0.5rem 0;
  border-radius: 0;
  font-size: 0.9rem;
}
.btn-ghost:hover { color: #33d1ff; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(8, 12, 20, 0.97);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--color-accent); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-white); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,120,212,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,45,69,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,45,69,0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 780px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 1.4rem; letter-spacing: -0.03em; }
.hero h1 span {
  background: linear-gradient(135deg, var(--color-accent), #66e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.hero-stat-num span { color: var(--color-accent); }
.hero-stat-label { font-size: 0.85rem; color: var(--color-muted); margin-top: 0.3rem; }

/* =========================================
   HERO IMAGE BLOCK
   ========================================= */
.hero-visual {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 50%);
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header { margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; font-size: 1.05rem; margin-top: 0.75rem; }
.section-header.text-center p { margin: 0.75rem auto 0; }

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(0, 194, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 50px; height: 50px;
  background: rgba(0, 194, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card p { font-size: 0.9rem; }

/* =========================================
   COURSE CARDS
   ========================================= */
.course-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  border-color: rgba(0, 194, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 194, 255, 0.1);
}
.course-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.course-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.course-level {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.level-beginner { background: rgba(34,197,94,0.15); color: #22c55e; }
.level-intermediate { background: rgba(245,158,11,0.15); color: #f59e0b; }
.level-advanced { background: rgba(239,68,68,0.15); color: #ef4444; }
.course-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.course-card p { font-size: 0.87rem; flex: 1; }
.course-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-muted);
}
.course-meta-item { display: flex; align-items: center; gap: 0.3rem; }

/* =========================================
   FEATURE SPLIT
   ========================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.feature-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.feature-check {
  width: 22px; height: 22px;
  min-width: 22px;
  background: rgba(0, 194, 255, 0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; stroke: var(--color-accent); }
.feature-item-text h5 { font-size: 0.95rem; color: var(--color-white); margin-bottom: 0.2rem; }
.feature-item-text p { font-size: 0.85rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(0,194,255,0.25); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--color-text); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}
.testimonial-name { font-size: 0.92rem; font-weight: 600; color: var(--color-white); }
.testimonial-role { font-size: 0.8rem; color: var(--color-muted); }

/* =========================================
   BLOG / ARTICLES
   ========================================= */
.article-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.article-card:hover {
  border-color: rgba(0,194,255,0.3);
  transform: translateY(-4px);
}
.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-card-body { padding: 1.5rem; }
.article-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}
.article-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.article-card p { font-size: 0.87rem; }
.article-meta { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.8rem; color: var(--color-muted); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, rgba(0,120,212,0.15), rgba(0,194,255,0.08));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 90px 0;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   STEPS / PROCESS
   ========================================= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step-card { text-align: center; padding: 1.5rem; }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 194, 255, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card h4 { margin-bottom: 0.5rem; }

/* =========================================
   PARTNERS / LOGOS
   ========================================= */
.partners-strip {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.partners-strip p { text-align: center; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: 1.5rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.partner-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(138, 154, 181, 0.45);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.partner-logo:hover { color: var(--color-muted); }

/* =========================================
   FAQ
   ========================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  min-width: 22px; height: 22px;
  background: rgba(0,194,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.9rem;
  color: var(--color-accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,194,255,0.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner { padding-bottom: 1.4rem; }
.faq-answer-inner p { font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* =========================================
   NEWSLETTER FORM
   ========================================= */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.newsletter-input::placeholder { color: var(--color-muted); }
.newsletter-input:focus { border-color: var(--color-accent); }

/* =========================================
   CONTACT FORM
   ========================================= */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--color-muted); }
.form-control:focus { border-color: var(--color-accent); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--color-bg-card); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-4px); }
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.team-card-body { padding: 1.25rem; }
.team-card h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.team-card p { font-size: 0.85rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(0,194,255,0.25); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,120,212,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { max-width: 580px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb span { color: var(--color-muted); }

/* =========================================
   ARTICLE / BLOG PAGE
   ========================================= */
.article-content { max-width: 780px; margin: 0 auto; }
.article-content h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.article-content p { margin-bottom: 1.25rem; color: var(--color-text); font-size: 1rem; }
.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--color-text);
}
.article-content li { margin-bottom: 0.5rem; font-size: 1rem; }
.article-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  border: 1px solid var(--color-border);
}
.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0,194,255,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-text);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--color-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
.footer-contact a { font-size: 0.88rem; color: var(--color-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-accent); }

/* =========================================
   NOTIFICATION TOAST (cookies)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 700px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 2000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.88rem; color: var(--color-muted); }
.cookie-banner a { color: var(--color-accent); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 0.55rem 1.3rem;
  background: var(--color-accent);
  color: #050a12;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: #33d1ff; }
.cookie-btn-decline {
  padding: 0.55rem 1.3rem;
  background: transparent;
  color: var(--color-muted);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.cookie-btn-decline:hover { border-color: var(--color-accent); color: var(--color-text); }

/* =========================================
   POLICY PAGES
   ========================================= */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.policy-content h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.policy-content .policy-date { font-size: 0.88rem; color: var(--color-muted); margin-bottom: 2.5rem; }
.policy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 0.9rem; color: var(--color-white); }
.policy-content h3 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; color: var(--color-text); }
.policy-content p { color: var(--color-text); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.75; }
.policy-content ul, .policy-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  color: var(--color-text);
}
.policy-content li { font-size: 0.97rem; margin-bottom: 0.5rem; line-height: 1.7; }
.policy-content a { color: var(--color-accent); }
.policy-content a:hover { text-decoration: underline; }
.policy-box {
  background: rgba(0,194,255,0.06);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.policy-box p { margin: 0; font-size: 0.92rem; color: var(--color-text); }

/* =========================================
   ABOUT / MISSION STRIP
   ========================================= */
.mission-strip {
  background: linear-gradient(135deg, rgba(0,120,212,0.12), rgba(0,194,255,0.06));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid rgba(0,194,255,0.15);
  text-align: center;
}
.mission-strip h2 { margin-bottom: 1rem; }
.mission-strip p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,194,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--color-white); }
.contact-info-item p { font-size: 0.88rem; }
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 280px;
  margin-top: 1.5rem;
  background: var(--color-bg-card);
  display: flex; align-items: center; justify-content: center;
}
.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   COUNTER ANIMATION
   ========================================= */
.stats-section {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
}
.stat-item .num span { color: var(--color-accent); }
.stat-item p { font-size: 0.88rem; margin-top: 0.3rem; }

/* =========================================
   HIGHLIGHTS / TAGS
   ========================================= */
.highlight-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.highlight-tag {
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* =========================================
   POLICY PAGES
   ========================================= */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 90px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.policy-toc h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.policy-toc ul { list-style: none; padding: 0; margin: 0; }
.policy-toc ul li { margin-bottom: 0.4rem; }
.policy-toc ul li a {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 0.25rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}
.policy-toc ul li a:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}

.policy-body { max-width: 780px; }

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
.policy-section:last-of-type { border-bottom: none; }

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.policy-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 1.25rem 0 0.6rem;
}
.policy-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.policy-section ul {
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}
.policy-section ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.policy-section a {
  color: var(--color-accent);
  text-decoration: none;
}
.policy-section a:hover { text-decoration: underline; }

.policy-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: var(--color-bg-2);
  color: var(--color-white);
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.cookie-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text);
  vertical-align: top;
  line-height: 1.5;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: rgba(255,255,255,0.02); }

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 70px; }
  .grid-2, .grid-3, .feature-split, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split.reverse { direction: ltr; }
  .hero-stats { gap: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .policy-nav-links { flex-direction: column; }
}

@media (max-width: 480px) {
  .steps-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
