/* ============================================================
   About / Who We Are Page — CSS v1.0.0
   MLM Mind | https://mlmmind.com
   Primary colour: #6366f1 (indigo — trust & authority)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary:        #6366f1;
  --primary-dark:   #4f46e5;
  --primary-light:  #eef2ff;
  --secondary:      #818cf8;
  --secondary-dark: #6366f1;
  --accent:         #f97316;
  --accent-dark:    #ea580c;
  --teal:           #0d9488;
  --orange:         #f97316;
  --green:          #10b981;
  --amber:          #f59e0b;
  --rose:           #f43f5e;
  --sky:            #0ea5e9;

  --dark:   #04050f;
  --dark-2: #070920;
  --dark-3: #0a0d30;
  --dark-4: #0e1240;
  --dark-5: #121748;

  --mid:       #64748b;
  --mid-light: #94a3b8;

  --border:       rgba(99,102,241,.18);
  --border-light: rgba(99,102,241,.08);

  --success: #10b981;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --info:    #06b6d4;

  --shadow-sm: 0 2px 8px rgba(99,102,241,.15);
  --shadow-md: 0 8px 32px rgba(99,102,241,.20);
  --shadow-lg: 0 24px 64px rgba(99,102,241,.25);
  --glow:      0 0 40px rgba(99,102,241,.35);
  --glow-sm:   0 0 20px rgba(99,102,241,.25);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --container:   1240px;
  --section-pad: 96px;
}

/* ---------- 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(--dark); color: #e2e8f0; line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ---------- Scroll Progress ---------- */
#scroll-progress { position: fixed; top: 0; left: 0; z-index: 9999; height: 3px; width: 0%; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)); transition: width .1s linear; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; }
@media(max-width:960px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
@media(min-width:600px) and (max-width:960px) { .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem,3.2vw,2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: clamp(1.1rem,2vw,1.45rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: #cbd5e1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--r-full); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .25s var(--ease-out); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg),var(--glow-sm); }
.btn-outline { background: transparent; border: 1.5px solid rgba(129,140,248,.4); color: var(--secondary); }
.btn-outline:hover { background: rgba(99,102,241,.12); border-color: var(--primary); color: #fff; }
.btn-ghost  { background: transparent; color: #e2e8f0; border: 1.5px solid rgba(255,255,255,.15); border-radius: var(--r-full); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; border-radius: var(--r-full); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-primary { background: rgba(99,102,241,.18); color: var(--secondary); border: 1px solid rgba(99,102,241,.3); }
.badge-accent   { background: rgba(249,115,22,.15); color: #fb923c; border: 1px solid rgba(249,115,22,.25); }
.badge-green    { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
.badge-amber    { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 120% 80% at 60% 0%, rgba(99,102,241,.22) 0%, transparent 65%),
              radial-gradient(ellipse 80% 60% at 10% 80%, rgba(79,70,229,.15) 0%, transparent 60%),
              var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: .82rem; color: var(--mid-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--secondary); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--mid); margin: 0 2px; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 span { color: var(--secondary); }
.lead { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 36px; line-height: 1.75; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-stat-item { text-align: left; }
.hero-stat-item strong { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-item span  { font-size: .78rem; color: var(--mid-light); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block; }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; }
.company-card {
  background: linear-gradient(145deg, rgba(99,102,241,.15) 0%, rgba(14,11,50,.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.company-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  pointer-events: none;
}
.company-logo-big {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--glow-sm);
}
.company-card h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.company-card .tagline { font-size: .9rem; color: var(--secondary); margin-bottom: 24px; }
.company-milestones { display: flex; flex-direction: column; gap: 12px; }
.milestone-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: var(--r-md);
}
.milestone-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(99,102,241,.2); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: .9rem; flex-shrink: 0; }
.milestone-text { flex: 1; }
.milestone-text strong { display: block; font-size: .88rem; color: #e2e8f0; font-weight: 600; }
.milestone-text span { font-size: .76rem; color: var(--mid-light); }
.milestone-year { font-family: var(--font-mono); font-size: .78rem; color: var(--secondary); font-weight: 700; }

@media(max-width:960px) { .hero-inner { grid-template-columns: 1fr; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg, rgba(99,102,241,.12) 0%, rgba(79,70,229,.08) 50%, rgba(99,102,241,.12) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.stat-item {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat-num span { color: var(--secondary); }
.stat-lbl { font-size: .78rem; color: var(--mid-light); text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }
@media(max-width:600px) { .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); } }

/* ============================================================
   MISSION / STORY
   ============================================================ */
.mission-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.mission-content h2 { margin-bottom: 20px; }
.mission-content h2 span { color: var(--secondary); }
.mission-content p { margin-bottom: 18px; line-height: 1.8; }
.mission-values { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.value-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.12);
  border-left: 3px solid var(--primary);
  border-radius: var(--r-md);
  transition: background .25s;
}
.value-row:hover { background: rgba(99,102,241,.1); }
.value-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(99,102,241,.2); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.value-body strong { display: block; font-size: .95rem; color: #e2e8f0; font-weight: 700; margin-bottom: 3px; }
.value-body p { font-size: .88rem; color: var(--mid-light); margin: 0; }

/* Mission Visual — Timeline */
.story-timeline { position: relative; padding-left: 28px; }
.story-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 4px rgba(99,102,241,.2);
}
.timeline-year { font-family: var(--font-mono); font-size: .78rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.timeline-title { font-size: .97rem; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.timeline-desc { font-size: .86rem; color: var(--mid-light); line-height: 1.6; }

@media(max-width:960px) { .mission-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-we-do {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(99,102,241,.05) 0%, var(--dark) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 28px;
  background: rgba(99,102,241,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.35); box-shadow: var(--shadow-md); }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--mid-light); line-height: 1.65; margin: 0; }
@media(max-width:960px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(99,102,241,.1) 0%, transparent 70%), var(--dark-2);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.number-card {
  padding: 40px 28px;
  background: rgba(99,102,241,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all .3s var(--ease-out);
}
.number-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.3); box-shadow: var(--shadow-md); }
.number-icon { font-size: 2rem; margin-bottom: 16px; }
.number-val { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.04em; }
.number-val span { color: var(--secondary); }
.number-label { font-size: .82rem; color: var(--mid-light); text-transform: uppercase; letter-spacing: .07em; margin-top: 8px; }
@media(max-width:960px) { .numbers-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.team-card {
  background: rgba(99,102,241,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  padding: 36px 24px 28px;
  transition: all .3s var(--ease-out);
}
.team-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,.3); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 3px solid rgba(99,102,241,.3);
  box-shadow: var(--glow-sm);
}
.team-name { font-size: 1.05rem; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--secondary); font-weight: 600; margin-bottom: 12px; }
.team-bio  { font-size: .85rem; color: var(--mid-light); line-height: 1.65; margin-bottom: 18px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(99,102,241,.15); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: .85rem; transition: all .2s; }
.team-social a:hover { background: var(--primary); color: #fff; }
@media(max-width:1100px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:760px)  { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px)  { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CULTURE
   ============================================================ */
.culture-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.culture-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(10,13,48,.6);
  transition: all .3s var(--ease-out);
  text-align: center;
}
.culture-card:hover { border-color: rgba(99,102,241,.35); transform: translateY(-3px); }
.culture-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.culture-card h3 { font-size: 1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 10px; }
.culture-card p  { font-size: .87rem; color: var(--mid-light); line-height: 1.65; margin: 0; }
@media(max-width:760px) { .culture-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .culture-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.award-card {
  padding: 28px 22px;
  background: rgba(99,102,241,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all .3s var(--ease-out);
}
.award-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-3px); }
.award-icon { font-size: 2rem; margin-bottom: 12px; }
.award-title { font-size: .92rem; font-weight: 700; color: #e2e8f0; margin-bottom: 6px; }
.award-body  { font-size: .82rem; color: var(--mid-light); line-height: 1.5; }
.award-year  { display: inline-block; margin-top: 10px; font-size: .75rem; font-family: var(--font-mono); color: var(--amber); font-weight: 700; background: rgba(245,158,11,.12); padding: 3px 10px; border-radius: var(--r-full); }
@media(max-width:960px) { .awards-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .awards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(99,102,241,.08) 0%, transparent 65%), var(--dark-2);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
  margin-top: 48px;
}
.tech-pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 12px;
  background: rgba(99,102,241,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  transition: all .25s;
}
.tech-pill:hover { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.12); transform: translateY(-2px); }
.tech-pill-icon { font-size: 1.6rem; }
.tech-pill-name { font-size: .78rem; color: var(--mid-light); font-weight: 600; }
@media(max-width:960px) { .tech-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:600px) { .tech-grid { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform .5s var(--ease-out); }
.slide { min-width: 100%; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  padding: 32px 28px;
  background: rgba(99,102,241,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all .3s var(--ease-out);
}
.testi-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars i { color: var(--amber); font-size: .85rem; }
.testi-text { font-size: .92rem; color: #cbd5e1; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; color: #fff; flex-shrink: 0; }
.testi-name { font-size: .9rem; font-weight: 700; color: #e2e8f0; }
.testi-company { font-size: .78rem; color: var(--secondary); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(99,102,241,.15); border: 1px solid var(--border); color: var(--secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.slider-btn:hover { background: var(--primary); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(99,102,241,.3); cursor: pointer; transition: all .25s; }
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(99,102,241,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(99,102,241,.35); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  color: #e2e8f0; font-size: .97rem; font-weight: 600; font-family: inherit;
  transition: color .2s;
}
.faq-q:hover { color: var(--secondary); }
.faq-q-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(99,102,241,.15); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: .75rem; flex-shrink: 0; transition: transform .3s, background .2s; }
.faq-item.open .faq-q-icon { transform: rotate(180deg); background: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 24px 20px; font-size: .92rem; color: var(--mid-light); line-height: 1.75; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(99,102,241,.25) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  text-align: center;
}
.cta-badge { margin-bottom: 24px; }
.cta-section h2 { margin-bottom: 18px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.cta-section h2 span { color: var(--secondary); }
.cta-section > .container > p { max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.cta-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.25); border-radius: var(--r-full); font-size: .84rem; color: #cbd5e1; }
.cta-chip i { color: var(--secondary); }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-contact { margin-top: 28px; font-size: .88rem; color: var(--mid-light); }
.cta-contact a { color: var(--secondary); font-weight: 600; }
.cta-contact a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: .9rem; color: var(--mid-light); line-height: 1.75; margin: 16px 0 24px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-logo .logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.footer-logo .logo-accent { color: var(--secondary); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(99,102,241,.12); display: flex; align-items: center; justify-content: center; color: var(--mid-light); transition: all .2s; font-size: .9rem; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { font-size: .88rem; font-weight: 700; color: #e2e8f0; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--mid-light); transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { padding: 24px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-copy { font-size: .82rem; color: var(--mid); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2); border-radius: var(--r-full); font-size: .74rem; color: var(--mid-light); }
.footer-badge i { color: var(--secondary); }
@media(max-width:960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 4000;
  background: rgba(4,5,15,.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: .88rem; color: var(--mid-light); }
.sticky-cta-text strong { color: #fff; }
.sticky-cta-actions { display: flex; gap: 10px; }
.sticky-cta-actions .btn { padding: 10px 22px; font-size: .88rem; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 3999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px);
  transition: all .3s var(--ease-out); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================================
   AOS ANIMATIONS
   ============================================================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-aos].aos-visible { opacity: 1; transform: none; }
[data-aos][data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos][data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos][data-aos-delay="320"] { transition-delay: 320ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:600px) {
  :root { --section-pad: 64px; }
  .btn-lg { padding: 14px 26px; }
  .cta-btns, .btn-group { flex-direction: column; }
  .sticky-cta { flex-direction: column; text-align: center; }
  h1 { font-size: 1.9rem; }
}
