/* =========================================================
   Cyber Tech Intelligence - Common Theme CSS
   Reusable across all website pages
   Fonts: Inter for headings, Public Sans for body
   ========================================================= */

/* Google Fonts: add this in <head> before this CSS file
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Public+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
*/

:root {
  /* Theme colors */
  --bg-base: #0a0a12;
  --bg-surface: #0f0f1e;
  --bg-card: #13132a;
  --bg-card-hover: #1a1a38;

  --purple-deep: #1e0a4a;
  --purple-mid: #3b1fa3;
  --purple-vivid: #6c3fff;
  --purple-bright: #8b5cf6;
  --purple-glow: #a78bfa;

  --accent-violet: #7c3aed;
  --accent-pink: #c026d3;
  --accent-cyan: #06b6d4;

  --text-primary: #f0eeff;
  --text-secondary: #a89dc8;
  --text-muted: #6b7280;
  --text-white: #ffffff;

  --border-subtle: rgba(108, 63, 255, 0.15);
  --border-mid: rgba(108, 63, 255, 0.3);

  --glow-sm: 0 0 20px rgba(108, 63, 255, 0.25);
  --glow-md: 0 0 40px rgba(108, 63, 255, 0.35);
  --glow-lg: 0 0 80px rgba(108, 63, 255, 0.3);

  /* Font system */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --font-display: var(--font-heading);
  --font-mono: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 24px;
  --section-padding: 96px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-base: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6,
.section-heading,
.nav-logo,
.btn-primary,
.btn-ghost,
.card-title {
  font-family: var(--font-heading);
}

/* =========================
   Common utilities
   ========================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-surface {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-glow);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* =========================
   Buttons
   ========================= */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--accent-violet));
  color: var(--text-white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-glow);
  border: 1px solid var(--border-mid);
}

.btn-ghost:hover {
  background: rgba(108, 63, 255, 0.1);
  border-color: var(--purple-vivid);
}

/* =========================
   Header / Navigation
   ========================= */
.announce-bar {
  background: linear-gradient(90deg, var(--purple-deep), var(--accent-violet), var(--purple-deep));
  background-size: 200% 100%;
  animation: barSlide 6s linear infinite;
  text-align: center;
  padding: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-glow);
}

.site-nav,
nav[role="navigation"] {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-mid), var(--accent-violet));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(108, 63, 255, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   Hero common
   ========================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
 padding: 180px 0 50px 0!important;
}



.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 63, 255, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(192, 38, 211, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 63, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 63, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  /*mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);*/
}

.hero-content {
  position: relative;
  z-index: 2;
/*  max-width: 800px;*/
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-cyan);
  animation: pulse 2s ease-in-out infinite;
}

.hero-eyebrow span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.1px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight:600;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(108, 63, 255, 0.5), transparent); top: 30%; right: 5%; }
.orb-2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(192, 38, 211, 0.35), transparent); top: 10%; right: 20%; }
.orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent); top: 60%; right: 2%; }

/* =========================
   Reusable cards and grids
   ========================= */
.grid-auto,
.solutions-grid,
.deliver-grid,
.report-grid,
.serve-grid,
.events-grid,
.proof-grid {
  display: grid;
  gap: 24px;
}

.solutions-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.deliver-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.report-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.serve-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.events-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.proof-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.theme-card,
.solution-card,
.report-card,
.perspective-card,
.geo-region,
.serve-card,
.event-card,
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  color: inherit;
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.theme-card:hover,
.solution-card:hover,
.report-card:hover,
.perspective-card:hover,
.serve-card:hover,
.event-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}



.deliver-card{
    transition: all .3s cubic-bezier(.22,1,.36,1);
    will-change: transform;

  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  color: inherit;
  
}

.deliver-card:hover{
    transform: translateY(-5px)!important;
    border-color: var(--border-mid);
    
    box-shadow: var(--glow-sm);
}

.solution-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 63, 255, 0.07), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.solution-card:hover {
  border-color: var(--purple-vivid);
  background: var(--bg-card-hover);
}

.solution-card:hover::before { opacity: 1; }

.solution-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border-mid);
}

.solution-card h3,
.deliver-card h3,
.report-card h3,
.perspective-card h3,
.serve-card h3,
.event-card h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.solution-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.solution-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.solution-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 16px;
  color: var(--purple-vivid);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.solution-card:hover .solution-arrow {
  opacity: 1;
  transform: translateX(0);
}

.deliver-card,
.proof-card { padding: 28px; }
.deliver-card { padding: 32px; }
.deliver-num { font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--purple-vivid); letter-spacing: 0.1em; margin-bottom: 12px; }
.deliver-icon { font-size: 28px; margin-bottom: 16px; }
.deliver-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.deliver-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.report-card,
.perspective-card,
.event-card {
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.report-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--purple-deep), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.report-thumb::after,
.perspective-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 63, 255, 0.2), rgba(192, 38, 211, 0.1));
}

.report-body,
.event-body { padding: 24px; }
.report-meta { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.report-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(108, 63, 255, 0.15);
  color: var(--purple-glow);
  border: 1px solid var(--border-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.report-card p,
.event-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.report-dl,
.event-register { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--purple-bright); }
.report-dl { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; }

.perspective-grid,
.geo-inner,
.faq-inner {
  display: grid;
  gap: 80px;
}

.perspective-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.geo-inner { grid-template-columns: 1fr 1fr; align-items: center; }
.faq-inner { grid-template-columns: 1fr 1.5fr; align-items: start; }

.perspective-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(59, 31, 163, 0.8), rgba(10, 10, 18, 0.9));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  font-size: 56px;
}
.perspective-img-icon { position: relative; z-index: 2; }
.perspective-body { padding: 28px; flex: 1; }
.perspective-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.author-avatar,
.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}
.author-info small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.author-info strong { font-size: 14px; font-weight: 700; }
.perspective-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.perspective-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* =========================
   Specialized common sections
   ========================= */
.trust-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
  background: var(--bg-surface);
}
.trust-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap;text-transform: uppercase;justify-content:center; }
.trust-label,
.event-date,
.newsletter-trust {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-label { color: var(--text-muted); white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-logo-item { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--text-muted); opacity: 0.7; letter-spacing: 0.05em; text-transform: uppercase; transition: opacity 0.2s ease; }
.trust-logo-item:hover { opacity: 1; }

.geo-section {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--bg-base) 50%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.geo-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 63, 255, 0.15), transparent 70%);
}
.geo-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.geo-region { border-radius: var(--radius-lg); padding: 20px; position: relative; overflow: hidden; }
.geo-region-flag { font-size: 24px; margin-bottom: 8px; }
.geo-region-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.geo-region-desc { font-size: 12px; color: var(--text-muted); }
.geo-region-pulse { position: absolute; top: 16px; right: 16px; width: 8px; height: 8px; background: var(--accent-cyan); border-radius: 50%; animation: pulse 2.5s ease-in-out infinite; }
.geo-text h2 { margin-bottom: 20px; }
.geo-text p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.geo-list { list-style: none; }
.geo-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--text-secondary); }
.geo-list li::before { content: '→'; color: var(--purple-vivid); font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.serve-card { border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.serve-icon { font-size: 32px; margin-bottom: 12px; }
.serve-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.serve-card p { font-size: 13px; color: var(--text-muted); }

.event-banner {
  height: 255px;
  background: linear-gradient(135deg, var(--purple-deep), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.event-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.03) 8px, rgba(255, 255, 255, 0.03) 16px); }
.event-banner span { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.event-date { color: var(--accent-cyan); margin-bottom: 8px; }
.event-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.event-register { margin-top: 16px; }

.faq-list { list-style: none; }
.faq-item{
    padding:24px;
    margin-bottom:12px;
    border:1px solid transparent;
    border-radius:15px;
    background:transparent;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s cubic-bezier(.16,1,.3,1),
        background .45s ease,
        border-color .35s ease,
        color .35s ease;

    will-change: transform;
}

.faq-item:hover{
    transform: translateY(-3px);
    border-color: var(--border-mid);
    box-shadow: var(--glow-sm);
   /* background: linear-gradient(135deg,#a78bfa,#8b5cf6,#06b6d4);
    color:#fff;*/
}
/*.faq-item:hover .faq-answer {*/
/*    color: #fff;*/
    /* background-color: red; */
/*    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #06b6d4);*/
/*    padding: 10px;*/
/*    border-radius: 8px;*/
/*}*/

.faq-question { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.faq-answer { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.newsletter-section {
  background: linear-gradient(135deg, var(--purple-deep), var(--bg-surface));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 96px 0;
}
.newsletter-section h2 { margin-bottom: 16px; }
.newsletter-section p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 36px; }
.faq-inner .newsletter-form {
display: block;
    gap: 12px;
    max-width: 480px;
    margin:15px 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
       background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    color: inherit;
}
 .newsletter-section .newsletter-form { 
  display: block;
  gap: 12px;
    max-width: 480px;
    margin:0 auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
       background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    color: inherit;
 }

.newsletter-input {
  flex: 1;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: var(--purple-vivid); }
.newsletter-trust { margin-top: 16px; font-size: 12px; color: var(--text-muted); }

.newsletter-form form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.newsletter-input{
    width:100%;
}

.proof-stars { font-size: 14px; color: #fbbf24; letter-spacing: 2px; margin-bottom: 12px; }
.proof-quote { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar { background: linear-gradient(135deg, var(--purple-mid), var(--accent-pink)); }
.proof-author strong { font-size: 14px; display: block; }
.proof-author span { font-size: 12px; color: var(--text-muted); }

.cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(108, 63, 255, 0.2), transparent 70%); }
.cta-banner h2 { position: relative; font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-banner p { position: relative; color: var(--text-secondary); max-width: 520px; margin: 0 auto 36px; font-size: 17px; }
.cta-actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================
   Footer
   ========================= */
.site-footer,
footer[role="contentinfo"] {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-social-link:hover { border-color: var(--border-mid); background: var(--bg-card-hover); }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--purple-glow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border-subtle); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* =========================
   Animations
   ========================= */
@keyframes barSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .geo-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .geo-visual { order: -1; }
  .perspective-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
  }

  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-stats {
    gap: 28px;
  }

  .solutions-grid,
  .serve-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    order: -1;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .solutions-grid,
  .serve-grid,
  .geo-visual {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .newsletter-form,
  .cta-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
}


.cookie-consent-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    padding: 18px;
    background: #ffffff;
    border-top: 1px solid #dddddd;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.12);
}

.cookie-consent-banner[hidden],
.cookie-preferences-modal[hidden] {
    display: none !important;
}

.cookie-consent-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-content {
    max-width: 720px;
}

.cookie-consent-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
}

.cookie-consent-content p {
    margin: 0 0 8px;
    color: #555555;
    line-height: 1.6;
}

.cookie-consent-content a {
    color: #0875d1;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-primary {
    color: #ffffff;
    background: #0875d1;
    border-color: #0875d1;
}

.cookie-btn-secondary {
    color: #222222;
    background: #ffffff;
    border-color: #cccccc;
}

.cookie-preferences-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
}

.cookie-preferences-box {
    position: relative;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
}

.cookie-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

.cookie-option p {
    margin: 5px 0 0;
    color: #666666;
    line-height: 1.5;
}

.cookie-option input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.cookie-save-preferences {
    width: 100%;
    margin-top: 20px;
}

.cookie-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .cookie-consent-container {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .cookie-consent-actions {
        justify-content: stretch;
        flex-direction: column;
    }

    .cookie-consent-actions .cookie-btn {
        width: 100%;
    }

    .cookie-preferences-box {
        padding: 25px 20px;
    }
}

