/* ── UltraSure Agent Site Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate:        #0f172a;
  --slate-mid:    #1e293b;
  --slate-light:  #334155;
  --indigo:       #6366f1;
  --indigo-mid:   #4f46e5;
  --indigo-light: #818cf8;
  --indigo-pale:  #eef2ff;
  --emerald:      #10b981;
  --amber:        #f59e0b;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --text-dark:    #0f172a;
  --text-mid:     #1e293b;
  --text-muted:   #64748b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.agent-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--indigo);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.nav-logo-text span { color: var(--indigo-light); }

.nav-badge {
  font-size: 10px;
  font-weight: 600;
  background: rgba(99,102,241,0.15);
  color: var(--indigo-light);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-nav-ghost {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-ghost:hover { border-color: rgba(255,255,255,0.35); color: white; }

.btn-nav-primary {
  padding: 8px 20px;
  background: var(--indigo);
  border: 1px solid var(--indigo);
  border-radius: 6px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-primary:hover { background: var(--indigo-mid); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 1px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 65%);
  top: -250px; right: -150px;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 64px 80px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo-light);
  letter-spacing: 0.3px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.07;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--indigo-light) 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-hero-primary {
  padding: 15px 32px;
  background: var(--indigo);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  letter-spacing: -0.2px;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--indigo-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.35);
}

.btn-hero-ghost {
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
  background: rgba(255,255,255,0.05);
}

.hero-social-proof { display: flex; align-items: center; gap: 16px; }
.hero-avatars { display: flex; }

.hero-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--slate);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.hero-avatars .hero-avatar:first-child { margin-left: 0; }

.hero-sp-text { font-size: 13.5px; color: rgba(255,255,255,0.45); }
.hero-sp-text strong { color: rgba(255,255,255,0.75); }

/* ── HERO DASHBOARD MOCKUP ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 64px 80px 20px;
  position: relative;
  z-index: 2;
}

.dash-mockup {
  width: 100%; max-width: 460px;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.dash-topbar {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.dash-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

.dash-layout {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 360px;
}

.dash-sidebar {
  background: rgba(0,0,0,0.18);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.sb-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-icon.active { background: rgba(99,102,241,0.2); }

.dash-body { padding: 20px; }

.dash-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-title-text { font-size: 13px; font-weight: 700; color: white; letter-spacing: -0.3px; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(16,185,129,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
}

.dm-val { font-size: 18px; font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 3px; }
.dm-lbl { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 500; }
.dm-chg { font-size: 10px; font-weight: 600; color: var(--emerald); margin-top: 2px; }

.commission-row {
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cr-label { font-size: 11px; font-weight: 600; color: var(--indigo-light); }
.cr-period { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.cr-val { font-size: 16px; font-weight: 800; color: white; letter-spacing: -0.5px; }

.mini-table { width: 100%; border-collapse: collapse; }

.mini-table th {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: left;
  padding: 0 0 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mini-table td {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sp {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

.sp-active { background: rgba(16,185,129,0.12); color: #10b981; }
.sp-due    { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.sp-new    { background: rgba(99,102,241,0.12);  color: var(--indigo-light); }

/* ── STATS BAR ── */
.stats-bar { background: var(--indigo); padding: 0 64px; }

.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }

/* ── SECTIONS ── */
.section { padding: 96px 64px; }
.section-light { background: var(--white); }
.section-gray  { background: var(--gray-50); }
.section-dark  { background: var(--slate); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--indigo);
  border-radius: 1px;
}

.section-dark .section-eyebrow { color: var(--indigo-light); }
.section-dark .section-eyebrow::before { background: var(--indigo-light); }

.section-title {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-dark .section-title { color: white; }

.section-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--indigo-pale); }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--indigo-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.feature-card:hover .feature-icon { background: rgba(99,102,241,0.15); }

.feature-title { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: var(--text-dark); margin-bottom: 10px; }
.feature-desc  { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-pale);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── PLATFORM DEEP DIVE ── */
.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.platform-mockup {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.pm-topbar {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pm-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

.pm-body { display: grid; grid-template-columns: 44px 1fr; }

.pm-nav {
  background: rgba(0,0,0,0.2);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.pm-nav-item { width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.pm-nav-item.active { background: rgba(99,102,241,0.18); }

.pm-main { padding: 16px; }

.pm-title { font-size: 11px; font-weight: 700; color: white; margin-bottom: 12px; letter-spacing: -0.2px; }

.quote-list { display: flex; flex-direction: column; gap: 8px; }

.quote-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qi-left { display: flex; align-items: center; gap: 8px; }

.qi-badge { width: 28px; height: 28px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; }
.qi-name  { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
.qi-type  { font-size: 9px; color: rgba(255,255,255,0.35); }

.qi-right { text-align: right; }
.qi-amount { font-size: 12px; font-weight: 700; color: white; }

.qi-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 2px;
  display: inline-block;
}

/* ── PLATFORM FEATURE LIST ── */
.pf-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pf-row  { display: flex; align-items: flex-start; gap: 14px; }

.pf-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-text h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 3px; letter-spacing: -0.2px; }
.pf-text p  { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.45); margin: 0; }

/* ── HOW IT WORKS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 23px; left: 22%; right: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
  opacity: 0.2;
}

.step-item { text-align: center; padding: 0 20px; }

.step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 20px;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.step-title { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; color: var(--text-dark); }
.step-desc  { font-size: 14.5px; line-height: 1.7; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-text  { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testi-role { font-size: 12.5px; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--slate);
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-band h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.07;
}

.cta-band h2 .highlight {
  background: linear-gradient(135deg, var(--indigo-light) 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-band p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 44px;
}

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-cta-primary {
  padding: 16px 36px;
  background: var(--indigo);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  letter-spacing: -0.3px;
  display: inline-block;
}

.btn-cta-primary:hover {
  background: var(--indigo-mid);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(99,102,241,0.35);
}

.btn-cta-ghost {
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ── FOOTER ── */
footer.agent-footer {
  background: #080d1a;
  padding: 64px 64px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; list-style: none; }

.footer-links a { font-size: 14px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-reg  { font-size: 12px; color: rgba(255,255,255,0.18); }

.footer-client-link {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-client-link:hover { color: rgba(255,255,255,0.65); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }
.d1 { animation-delay: 0.05s; opacity: 0; }
.d2 { animation-delay: 0.15s; opacity: 0; }
.d3 { animation-delay: 0.28s; opacity: 0; }
.d4 { animation-delay: 0.42s; opacity: 0; }
.d5 { animation-delay: 0.58s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav.agent-nav { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 32px 80px; }
  .stats-bar { padding: 0 32px; }
  .section { padding: 72px 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .platform-inner { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 72px 32px; }
  footer.agent-footer { padding: 56px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: column; }
}
