*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #09090b;
  --bg-card:  #18181b;
  --bg-card2: #111113;
  --border:   rgba(63,63,70,0.6);
  --border-h: rgba(63,63,70,0.9);
  --text:     #f4f4f5;
  --muted:    #71717a;
  --faint:    #3f3f46;
  --blue:     #3b82f6;
  --blue-dim: #1d4ed8;
  --purple:   #a855f7;
  --green:    #10b981;
  --amber:    #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRID BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(63,63,70,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,63,70,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ── */
.mono  { font-family: 'Consolas', 'Courier New', monospace; }
.upper { text-transform: uppercase; letter-spacing: 0.1em; }

.grad-text {
  background: linear-gradient(135deg, var(--blue) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), #6366f1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; color: #fff; }
.nav-logo-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-name span { color: var(--blue); }
.nav-badge {
  font-size: 9px;
  font-family: monospace;
  color: var(--muted);
  border: 1px solid var(--faint);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #2563eb; }

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center top, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue);
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.06);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-h);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: #15803d; transform: translateY(-1px); }

.btn-email {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid var(--border-h);
  transition: all 0.2s;
}
.btn-email:hover { border-color: var(--blue); color: var(--blue); }

/* ── HERO TERMINAL MOCKUP ── */
.hero-terminal {
  margin: 60px auto 0;
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.06);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(24,24,27,0.8);
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red   { background: #ef4444; }
.terminal-dot.amber { background: #f59e0b; }
.terminal-dot.green { background: #22c55e; }
.terminal-title {
  margin: 0 auto;
  font-size: 11px;
  font-family: monospace;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terminal-body {
  padding: 28px 32px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .terminal-body { grid-template-columns: 1fr; }
}
.t-module {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: rgba(9,9,11,0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.t-module.blue   { border-color: rgba(59,130,246,0.3); }
.t-module.blue:hover  { border-color: rgba(59,130,246,0.6); box-shadow: 0 0 24px rgba(59,130,246,0.08); }
.t-module.purple { border-color: rgba(168,85,247,0.3); }
.t-module.purple:hover{ border-color: rgba(168,85,247,0.6); box-shadow: 0 0 24px rgba(168,85,247,0.08); }
.t-module.green  { border-color: rgba(16,185,129,0.3); }
.t-module.green:hover { border-color: rgba(16,185,129,0.6); box-shadow: 0 0 24px rgba(16,185,129,0.08); }

.t-num {
  font-size: 9px; font-family: monospace;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.t-name {
  font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.t-module.blue   .t-name { color: #60a5fa; }
.t-module.purple .t-name { color: #c084fc; }
.t-module.green  .t-name { color: #34d399; }
.t-desc { font-size: 11px; color: var(--muted); line-height: 1.6; }
.t-footer {
  margin-top: 12px;
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-family: monospace;
  color: var(--faint);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── SECTION TITLES ── */
.section-label {
  font-size: 10px; font-family: monospace;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-sub {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ── SPACING ── */
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
hr.dim {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--bg-card2);
  text-align: center;
}
.stat-num {
  font-size: 48px; font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ── SOCIAL PROOF ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: var(--bg-card2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; color: var(--amber); font-size: 14px; }
.testimonial-text  { font-size: 14px; color: #a1a1aa; line-height: 1.7; flex: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-role { font-size: 11px; color: var(--muted); }

/* ── HOW IT WORKS ── */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 860px) { .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 500px)  { .flow-steps { grid-template-columns: 1fr; } }

.flow-step { padding: 0 20px; position: relative; }
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px; right: -20px;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--faint), transparent);
}
@media (max-width: 860px) { .flow-step:not(:last-child)::after { display: none; } }

.flow-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; font-family: monospace;
  color: var(--blue);
  background: rgba(59,130,246,0.06);
  margin-bottom: 16px;
}
.flow-title { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.flow-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── ROLES ── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .roles-grid { grid-template-columns: 1fr; } }

.role-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card2);
  transition: all 0.3s;
}
.role-card:hover { transform: translateY(-4px); }
.role-card.blue:hover   { border-color: rgba(59,130,246,0.5);  box-shadow: 0 16px 48px rgba(59,130,246,0.1); }
.role-card.purple:hover { border-color: rgba(168,85,247,0.5);  box-shadow: 0 16px 48px rgba(168,85,247,0.1); }
.role-card.green:hover  { border-color: rgba(16,185,129,0.5);  box-shadow: 0 16px 48px rgba(16,185,129,0.1); }

.role-header { padding: 28px 28px 0; }
.role-icon {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.role-icon svg { width: 26px; height: 26px; }
.role-card.blue   .role-icon { background: rgba(59,130,246,0.1);  border: 1px solid rgba(59,130,246,0.25);  color: #60a5fa; }
.role-card.purple .role-icon { background: rgba(168,85,247,0.1);  border: 1px solid rgba(168,85,247,0.25);  color: #c084fc; }
.role-card.green  .role-icon { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.25);  color: #34d399; }

.role-tag { font-size: 9px; font-family: monospace; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
.role-card.blue   .role-tag { color: #60a5fa; }
.role-card.purple .role-tag { color: #c084fc; }
.role-card.green  .role-tag { color: #34d399; }

.role-title { font-size: 24px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.role-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; padding-bottom: 24px; }

.role-features {
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.role-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #a1a1aa; }
.role-feature-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.role-card.blue   .role-feature-dot { background: var(--blue); }
.role-card.purple .role-feature-dot { background: var(--purple); }
.role-card.green  .role-feature-dot { background: var(--green); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 860px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background: var(--bg-card2);
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.feat-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.feat-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── KANBAN DEMO ── */
.kanban-demo {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow-x: auto;
  background: var(--bg-card2);
}
.kanban-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(18,18,20,0.8);
  min-width: 800px;
}
.kanban-title-bar { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.kanban-sync { font-size: 10px; font-family: monospace; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.sync-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 1.5s infinite; }

.kanban-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  min-width: 800px;
  min-height: 280px;
}
.k-col { border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.k-col:last-child { border-right: none; }
.k-col-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 9px; font-family: monospace;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  display: flex; align-items: center; justify-content: space-between;
  border-left: 2px solid transparent;
}
.k-col.amber  .k-col-head { border-left-color: #f59e0b; color: #fcd34d; }
.k-col.sky    .k-col-head { border-left-color: #38bdf8; color: #7dd3fc; }
.k-col.violet .k-col-head { border-left-color: #a78bfa; color: #c4b5fd; }
.k-col.emerald .k-col-head { border-left-color: #34d399; color: #6ee7b7; }
.k-col.red    .k-col-head { border-left-color: #f87171; color: #fca5a5; }
.k-count { font-size: 11px; font-weight: 900; }
.k-body  { padding: 10px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.k-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  background: rgba(9,9,11,0.4);
  font-size: 11px;
}
.k-card-plate  { font-family: monospace; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.k-card-model  { color: var(--muted); font-size: 10px; margin-top: 3px; text-transform: uppercase; }
.k-card-client { color: #71717a; font-size: 10px; margin-top: 6px; }

.k-badge {
  display: inline-block;
  padding: 2px 6px; border-radius: 4px;
  font-size: 9px; font-family: monospace; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 5px;
}
.k-badge.amber   { background: rgba(245,158,11,0.12);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.25); }
.k-badge.sky     { background: rgba(56,189,248,0.12);   color: #7dd3fc; border: 1px solid rgba(56,189,248,0.25); }
.k-badge.violet  { background: rgba(167,139,250,0.12);  color: #c4b5fd; border: 1px solid rgba(167,139,250,0.25); }
.k-badge.emerald { background: rgba(52,211,153,0.12);   color: #6ee7b7; border: 1px solid rgba(52,211,153,0.25); }
.k-badge.red     { background: rgba(248,113,113,0.12);  color: #fca5a5; border: 1px solid rgba(248,113,113,0.25); }

.k-approve-btn {
  width: 100%; margin-top: 8px;
  padding: 5px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 4px;
  color: #34d399;
  font-size: 9px; font-family: monospace;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  pointer-events: none; cursor: default;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ── SECURITY BANNER ── */
.security-banner {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 40px;
  background: rgba(18,18,20,0.6);
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.security-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.security-icon svg { width: 28px; height: 28px; }
.security-text { flex: 1; min-width: 240px; }
.security-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.security-text p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.security-badges  { display: flex; flex-wrap: wrap; gap: 10px; }
.sec-badge {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px; font-family: monospace;
  font-weight: 700; text-transform: uppercase;
  color: var(--muted); letter-spacing: 0.1em;
}

/* ── WHATSAPP SECTION ── */
.wa-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 720px) { .wa-section { grid-template-columns: 1fr; gap: 32px; } }

.wa-demo {
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(16,185,129,0.04);
  font-size: 12px;
}
.wa-label {
  font-size: 9px; font-family: monospace;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.wa-bubble {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px; padding: 10px 12px;
  font-size: 12px; color: #d1d5db; line-height: 1.6;
}
.wa-bubble strong { color: var(--text); }
.wa-note {
  margin-top: 10px;
  font-size: 10px; color: var(--muted);
  font-family: monospace; padding: 0 4px;
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item-text p  { font-size: 13px; color: var(--muted); }
.contact-item-text a  { color: var(--blue); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.contact-item-text a:hover { color: #93c5fd; }

.contact-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: var(--bg-card2);
}
.contact-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.contact-card p  { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 96px 0;
  position: relative;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(32px, 5vw, 52px); }
.cta-section .section-sub   { margin: 16px auto 40px; max-width: 500px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-brand span { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--muted); font-family: monospace; }
.footer-enc  { font-size: 10px; color: var(--faint); font-family: monospace; text-transform: uppercase; letter-spacing: 0.12em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js .anim         { opacity: 0; }
.js .anim.visible { animation: fadeUp 0.55s ease forwards; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.12s; }
.anim-d3 { animation-delay: 0.19s; }
.anim-d4 { animation-delay: 0.26s; }
.anim-d5 { animation-delay: 0.33s; }
