/* ═══════════════════════════════════════════════════════════════════════════
   Metamystic — style.css
   Dark tech theme matching brand identity
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #080D1A;
  --bg-card:    #0F1829;
  --bg-mid:     #0D1526;
  --bg-dark:    #050A14;
  --border:     #1E3A5F;
  --cyan:       #00CFFF;
  --cyan-dim:   rgba(0, 207, 255, 0.12);
  --cyan-glow:  rgba(0, 207, 255, 0.25);
  --purple:     #7B2FBE;
  --purple-lt:  #A78BFA;
  --purple-dim: rgba(123, 47, 190, 0.15);
  --green:      #34D399;
  --green-dim:  rgba(52, 211, 153, 0.12);
  --red:        #FF4D6D;
  --red-dim:    rgba(255, 77, 109, 0.12);
  --white:      #FFFFFF;
  --offwhite:   #E2E8F0;
  --muted:      #94A3B8;
  --dim:        #475569;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--offwhite);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── REVEAL ANIMATION ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 13, 26, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 13, 26, 0.95);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.nav-cta {
  color: var(--cyan);
  border: 1px solid rgba(0, 207, 255, 0.35);
  margin-left: 8px;
}
.nav-links a.nav-cta:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--font);
}
.lang-toggle:hover { border-color: var(--cyan); color: var(--cyan); }
.lang-toggle .active { color: var(--cyan); }
.lang-divider { opacity: 0.4; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-menu.open { display: flex; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-cyan {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: rgba(0, 207, 255, 0.09);
}
.glow-purple {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: rgba(123, 47, 190, 0.1);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 120px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 207, 255, 0.35);
  background: rgba(0, 207, 255, 0.07);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0, 207, 255, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-primary:hover {
  background: #33D9FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 207, 255, 0.35);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--offwhite);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--muted); }
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 207, 255, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── PAIN POINT CARDS ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 109, 0.4);
}

.card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.card-icon-wrap.red {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(255, 77, 109, 0.25);
}

.pain-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FF8FA3;
  background: rgba(255, 77, 109, 0.15);
  border: 1px solid rgba(255, 77, 109, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SOLUTIONS ─────────────────────────────────────────────────────────── */
.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.solution-row:last-of-type { border-bottom: none; }
.solution-row.reverse { direction: rtl; }
.solution-row.reverse > * { direction: ltr; }

.solution-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  opacity: 0.9;
}
.solution-num.cyan { color: var(--cyan); }
.solution-num.purple { color: var(--purple-lt); }
.solution-num.green { color: var(--green); }

.solution-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.solution-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.solution-text > p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--offwhite);
}
.feature-list li i {
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list.purple-checks li i { color: var(--purple-lt); }
.feature-list.green-checks li i { color: var(--green); }

/* Compare table */
.solution-visual {
  position: relative;
}

.compare-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.red-label { color: #FF8FA3; }
.green-label { color: var(--green); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.compare-before, .compare-after {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  text-align: center;
}
.compare-before {
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.25);
  color: #FF8FA3;
}
.compare-after {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--green);
}
.compare-arrow { color: var(--cyan); font-size: 0.9rem; text-align: center; }

.solution-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.cyan-stat {
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 207, 255, 0.25);
  color: var(--cyan);
}
.cyan-stat i { font-size: 1.1rem; }

/* Intel grid */
.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition);
}
.intel-card:hover { border-color: var(--purple-lt); }
.intel-card i {
  font-size: 1.6rem;
  color: var(--purple-lt);
  margin-bottom: 12px;
  display: block;
}
.intel-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.intel-card p { font-size: 0.82rem; color: var(--muted); }

/* App mockup */
.app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-phone {
  width: 220px;
  background: #0A1425;
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(52, 211, 153, 0.08);
}
.phone-notch {
  width: 60px; height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  padding: 14px 12px 8px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--white);
}
.app-logo { font-weight: 700; font-size: 0.85rem; }
.app-header i { color: var(--muted); }
.app-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.app-video-card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  position: relative;
}
.app-thumb {
  width: 52px; height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1E3A5F, #0D1526);
  flex-shrink: 0;
}
.app-thumb-2 { background: linear-gradient(135deg, #2D1B69, #0D1526); }
.app-meta { flex: 1; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
.app-title-bar { height: 6px; border-radius: 3px; background: var(--border); }
.app-sub-bar { height: 5px; border-radius: 3px; background: rgba(30,58,95,0.6); width: 75%; }
.app-sub-bar.short { width: 50%; }
.app-badge {
  position: absolute;
  top: 2px; right: 0;
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--green);
  font-size: 0.45rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}
.app-post {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 10px 0 4px;
}
.app-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  flex-shrink: 0;
}
.app-post-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
.app-line { height: 5px; border-radius: 3px; background: var(--border); }
.app-line.short { width: 60%; }
.app-nav-bar {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 1.1rem;
}
.app-nav-bar i:first-child { color: var(--green); }

/* ── TIMELINE ──────────────────────────────────────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.timeline-track {
  position: absolute;
  top: 36px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.step-bubble {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.cyan-bubble   { background: var(--cyan);     box-shadow: 0 0 16px rgba(0,207,255,0.3); }
.purple-bubble { background: var(--purple-lt); box-shadow: 0 0 16px rgba(167,139,250,0.3); }
.green-bubble  { background: var(--green);     box-shadow: 0 0 16px rgba(52,211,153,0.3); }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  width: 100%;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover { transform: translateY(-3px); border-color: var(--cyan); }
.step-week {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── ABOUT ─────────────────────────────────────────────────────────────── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-tag { margin-bottom: 20px; }
.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 0.97rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text strong { color: var(--cyan); font-weight: 700; }

.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.about-card:hover { border-color: var(--cyan); }
.about-card > i {
  font-size: 1.8rem;
  color: var(--cyan);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.about-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-card p { font-size: 0.85rem; color: var(--muted); }

/* ── CONTACT ───────────────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--offwhite);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.78rem;
  color: var(--dim);
  text-align: center;
  margin-top: -4px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }

.contact-direct h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity var(--transition);
}
.contact-email:hover { opacity: 0.8; }
.contact-email i { font-size: 1.1rem; }

.value-props { display: flex; flex-direction: column; gap: 16px; }
.vp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.vp-item > i {
  font-size: 1.4rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.vp-item > div { display: flex; flex-direction: column; gap: 2px; }
.vp-item strong { font-size: 0.9rem; color: var(--white); font-weight: 700; }
.vp-item span { font-size: 0.8rem; color: var(--muted); }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand p { font-size: 0.82rem; color: var(--dim); }
.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: var(--dim); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .solution-row,
  .solution-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .timeline-track { display: none; }

  .about-wrap { grid-template-columns: 1fr; gap: 48px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .intel-grid { grid-template-columns: 1fr; }
}
