/* ==========================================
   DCGC, LLC — Global Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- Variables ---- */
:root {
  --bg-0: #060611;
  --bg-1: #09091a;
  --bg-2: #0d0d20;
  --bg-3: #121228;
  --surface: rgba(255,255,255,0.028);
  --surface-2: rgba(255,255,255,0.05);

  --border: rgba(130,120,255,0.10);
  --border-active: rgba(130,120,255,0.32);

  --indigo: #6366f1;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --emerald: #10b981;
  --rose: #f43f5e;
  --amber: #f59e0b;

  --grad-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
  --grad-accent:  linear-gradient(135deg, #8b5cf6, #22d3ee);
  --grad-full:    linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #22d3ee 100%);
  --grad-radial:  radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.18) 0%, transparent 70%);

  --text-1: #f8fafc;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --text-4: #475569;

  --nav-h: 70px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 36px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow:    0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --glow:      0 0 40px rgba(99,102,241,0.22);
  --glow-cyan: 0 0 40px rgba(34,211,238,0.18);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-0);
  color: var(--text-2);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-1);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.95rem; }
p  { font-size: 1rem; line-height: 1.8; }

.text-gradient {
  background: var(--grad-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-2 {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Layout ---- */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 28px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 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: 2rem; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.section    { padding: 104px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 68px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,0.07);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--text-3); font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(99,102,241,0.52);
}
.btn-secondary {
  border: 1.5px solid var(--border-active);
  color: var(--text-1);
  background: rgba(99,102,241,0.04);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(99,102,241,0.12);
  border-color: var(--indigo);
  transform: translateY(-2px);
}
.btn-ghost { color: var(--text-2); padding: 13px 20px; }
.btn-ghost:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.btn-lg  { padding: 16px 38px; font-size: 1.05rem; }
.btn-sm  { padding: 8px 20px;  font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(6,6,17,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-1);
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--grad-primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff; letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-3);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,6,17,0.97);
  backdrop-filter: blur(24px);
  padding: 20px 28px 28px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 13px 16px; font-size: 1rem; }
.mobile-menu .btn { margin-top: 14px; text-align: center; justify-content: center; border-radius: var(--radius-sm); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(99,102,241,0.16) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(139,92,246,0.12) 0%, transparent 48%),
    radial-gradient(ellipse at 55% 85%, rgba(34,211,238,0.07) 0%, transparent 44%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.22);
  color: #a5b4fc;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(12px);
}
.hero-dot {
  width: 6px; height: 6px;
  background: var(--indigo); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.04;
  margin-bottom: 26px;
  max-width: 980px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-3);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats   { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stat {
  display: flex; flex-direction: column;
  padding: 0 44px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); padding-left: 44px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--text-1); line-height: 1;
}
.stat-lbl { font-size: 0.83rem; color: var(--text-4); margin-top: 5px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 148px 0 88px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(99,102,241,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 30%, rgba(139,92,246,0.07) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 20px; max-width: 760px; }
.page-hero p  { color: var(--text-3); font-size: 1.1rem; max-width: 580px; }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.32s var(--ease);
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-full);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(-5px);
}
.card:hover::after { opacity: 1; }
.card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.35rem; flex-shrink: 0;
}
.icon-indigo  { background: rgba(99,102,241,0.1);  color: var(--indigo); }
.icon-violet  { background: rgba(139,92,246,0.1);  color: var(--violet); }
.icon-cyan    { background: rgba(34,211,238,0.08); color: var(--cyan); }
.icon-emerald { background: rgba(16,185,129,0.09); color: var(--emerald); }
.icon-rose    { background: rgba(244,63,94,0.09);  color: var(--rose); }
.icon-amber   { background: rgba(245,158,11,0.09); color: var(--amber); }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { color: var(--text-3); font-size: 0.93rem; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-full);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(99,102,241,0.28);
  box-shadow: var(--shadow-lg), var(--glow);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.73rem; color: var(--indigo);
  background: rgba(99,102,241,0.08);
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 22px; display: inline-block;
  letter-spacing: 0.08em;
}
.service-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.service-card h3 { margin-bottom: 12px; }
.service-card > p { color: var(--text-3); margin-bottom: 22px; font-size: 0.94rem; }
.service-features { display: flex; flex-direction: column; gap: 9px; }
.service-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.87rem; color: var(--text-3);
}
.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--indigo); border-radius: 50%; flex-shrink: 0;
}

/* ---- Stats Section ---- */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-box {
  text-align: center; padding: 36px 20px;
  position: relative;
}
.stat-box:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--border);
}
.stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem; font-weight: 700;
  background: var(--grad-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.stat-box p { font-size: 0.88rem; color: var(--text-3); }
.stat-box small { font-size: 0.77rem; color: var(--text-4); display: block; margin-top: 3px; }

/* ---- Feature Highlight (alternating) ---- */
.feature-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 40px;
}
.feature-visual-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.fv-icon { font-size: 5rem; position: relative; z-index: 1; filter: drop-shadow(0 0 24px rgba(99,102,241,0.45)); }
.fv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  position: relative; z-index: 1; width: 100%;
}
.fv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.fv-card .icon { font-size: 1.5rem; margin-bottom: 8px; }
.fv-card p { font-size: 0.78rem; color: var(--text-3); }
.feature-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet); background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.feature-text h2 { margin-bottom: 16px; }
.feature-text > p { color: var(--text-3); margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.fi-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(99,102,241,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo); font-size: 1rem; margin-top: 2px;
}
.fi-text h5 { margin-bottom: 3px; font-size: 0.97rem; }
.fi-text p  { font-size: 0.86rem; color: var(--text-3); }

/* ---- Tech Badges ---- */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 20px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-2);
  transition: all 0.22s var(--ease);
}
.tech-badge:hover {
  border-color: var(--border-active); color: var(--text-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.tech-badge .t-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

/* ---- Industry Grid ---- */
.industry-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: all 0.28s var(--ease);
}
.industry-card:hover {
  border-color: var(--border-active);
  background: var(--bg-3); transform: translateY(-3px);
}
.ind-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.industry-card h4 { font-size: 1rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.84rem; color: var(--text-3); }

/* ---- Value Cards ---- */
.value-card {
  text-align: center; padding: 40px 26px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.3s var(--ease);
}
.value-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
.val-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--text-3); }

/* ---- Team Grid ---- */
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s var(--ease);
}
.team-card:hover { border-color: var(--border-active); transform: translateY(-5px); box-shadow: var(--glow); }
.team-avatar {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem; position: relative; overflow: hidden;
}
.ta-bg-1 { background: linear-gradient(135deg, #1a1a4e, #2d1b69); }
.ta-bg-2 { background: linear-gradient(135deg, #0d2340, #1a3a5c); }
.ta-bg-3 { background: linear-gradient(135deg, #1a1038, #2e1065); }
.ta-bg-4 { background: linear-gradient(135deg, #0d2720, #065f46); }
.ta-bg-5 { background: linear-gradient(135deg, #2d1520, #7f1d1d); }
.ta-bg-6 { background: linear-gradient(135deg, #1c1506, #78350f); }
.team-info { padding: 24px; }
.team-role {
  font-size: 0.74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 6px;
}
.team-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.team-info p  { font-size: 0.84rem; color: var(--text-3); }

/* ---- Process Steps ---- */
.process-grid { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 28px; padding: 36px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.ps-num {
  flex-shrink: 0; width: 48px; height: 48px;
  border-radius: 50%; background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.ps-content h4 { margin-bottom: 8px; }
.ps-content p  { color: var(--text-3); font-size: 0.93rem; }

/* ---- Contact ---- */
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  backdrop-filter: blur(12px);
}
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 18px;
  background: rgba(0,0,0,0.35); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-1);
  font-size: 0.94rem; transition: all 0.22s var(--ease); outline: none;
}
.form-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.14); }
.form-input::placeholder { color: var(--text-4); }
textarea.form-input { min-height: 138px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.28s var(--ease);
}
.contact-info-card:hover { border-color: var(--border-active); }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm); background: rgba(99,102,241,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--indigo);
}
.ci-text h4 { margin-bottom: 5px; font-size: 0.94rem; }
.ci-text p, .ci-text a { font-size: 0.9rem; color: var(--text-3); transition: color 0.2s; }
.ci-text a:hover { color: var(--indigo); }

/* ---- CTA Section ---- */
.cta-section { position: relative; padding: 104px 0; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.12) 0%, transparent 62%);
}
.cta-box {
  position: relative;
  background: linear-gradient(145deg, rgba(99,102,241,0.07), rgba(139,92,246,0.04));
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  padding: 84px 60px;
  text-align: center; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-full);
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--text-3); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
  transition: border-color 0.22s var(--ease);
}
.faq-item.open { border-color: var(--border-active); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; color: var(--text-1);
  font-size: 0.94rem; user-select: none;
  background: var(--surface);
}
.faq-chevron { font-size: 0.75rem; color: var(--text-3); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease); }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-3); font-size: 0.92rem; line-height: 1.78; }

/* ---- Legal Pages ---- */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 28px 100px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-height: calc(100vh - var(--nav-h) - 60px);
  overflow-y: auto;
}
.legal-nav-title {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-4); margin-bottom: 16px; font-weight: 600;
}
.legal-nav a {
  display: block; padding: 8px 12px;
  color: var(--text-3); font-size: 0.84rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.legal-nav a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.legal-nav a.active { color: var(--indigo); background: rgba(99,102,241,0.07); }
.legal-body h1 { margin-bottom: 8px; }
.legal-meta {
  color: var(--text-4); font-size: 0.86rem;
  margin-bottom: 48px; padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-section { margin-bottom: 52px; }
.legal-section h2 {
  font-size: 1.5rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.legal-section h3 { font-size: 1.08rem; margin: 24px 0 10px; }
.legal-section p  { color: var(--text-3); margin-bottom: 14px; font-size: 0.94rem; }
.legal-section ul, .legal-section ol {
  padding-left: 22px; margin-bottom: 14px;
}
.legal-section ul { list-style: disc; }
.legal-section ol { list-style: decimal; }
.legal-section li { color: var(--text-3); font-size: 0.94rem; margin-bottom: 8px; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 76px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 64px;
}
.footer-brand-desc {
  color: var(--text-4); font-size: 0.88rem;
  margin: 16px 0 24px; line-height: 1.72;
  max-width: 310px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-3);
  transition: all 0.22s var(--ease);
}
.social-btn:hover { border-color: var(--border-active); color: var(--text-1); background: rgba(99,102,241,0.09); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-2); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 0.88rem; color: var(--text-4); transition: color 0.2s; }
.footer-link:hover { color: var(--text-2); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.83rem; color: var(--text-4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.83rem; color: var(--text-4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-2); }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.32s; }
.r-d5 { transition-delay: 0.40s; }
.r-d6 { transition-delay: 0.48s; }

/* ---- Misc ---- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}
.badge-indigo  { background: rgba(99,102,241,0.1);  color: var(--indigo); }
.badge-cyan    { background: rgba(34,211,238,0.07); color: var(--cyan); border: 1px solid rgba(34,211,238,0.18); }
.badge-emerald { background: rgba(16,185,129,0.09); color: var(--emerald); }
.badge-violet  { background: rgba(139,92,246,0.09); color: var(--violet); }

.divider { height: 1px; background: var(--border); margin: 60px 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.w-full { width: 100%; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2)::after,
  .stat-box:nth-child(4)::after { display: none; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-nav { position: static; max-height: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; flex-direction: column; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
  .contact-form { padding: 28px; }
  .cta-box { padding: 52px 24px; }
  .section { padding: 64px 0; }
  .legal-wrap { padding: 40px 20px 64px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
