@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-dark: #1E40AF;
  --primary-light: #3B82F6;
  --accent: #0EA5E9;
  --accent-light: #38BDF8;
  --success: #10B981;
  --success-light: #34D399;
  --purple: #8B5CF6;
  --dark: #0F172A;
  --dark-mid: #1E293B;
  --dark-card: rgba(30,41,59,0.7);
  --text: #0F172A;
  --text-body: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-dark: rgba(148,163,184,0.12);
  --bg: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.06);
  --shadow-primary: 0 8px 32px rgba(37,99,235,0.32);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,.font-display { font-family: 'Outfit', sans-serif; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}
.navbar.scrolled .logo-text { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.navbar.scrolled .nav-link { color: var(--text-muted); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link:hover { color: var(--text); background: var(--bg-secondary); }
.nav-link.active { color: var(--primary-light); }
.navbar.scrolled .nav-link.active { color: var(--primary); }
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 0.75rem;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-mobile-toggle span { background: var(--text); }
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
  .btn-nav { margin-left: 0; text-align: center; }
  .nav-mobile-toggle { display: flex; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,99,235,0.25);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-success {
  background: var(--success);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.btn-success:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.4); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: 12px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148,163,184,0.13) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 900px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, rgba(14,165,233,0.08) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.28);
  color: #93C5FD;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--success-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, var(--success-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.125rem;
  color: rgba(148,163,184,0.95);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  margin-left: -6px;
}
.hero-proof-avatar:first-child { margin-left: 0; }

/* ---- MOCK DASHBOARD ---- */
.hero-visual { position: relative; }
.mock-dashboard {
  background: rgba(30,41,59,0.6);
  border: 1px solid rgba(148,163,184,0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(-8px); }
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148,163,184,0.1);
}
.mock-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
.mock-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; }
.mock-role { font-size: 0.75rem; color: var(--text-light); }
.mock-badge {
  margin-left: auto;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success-light);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}
.mock-section-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.75rem; }
.mock-skill { margin-bottom: 0.625rem; }
.mock-skill-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.3rem; }
.mock-skill-name { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.mock-skill-pct { font-size: 0.7rem; color: var(--text-light); font-family: 'Outfit', sans-serif; font-weight: 700; }
.mock-bar { height: 5px; background: rgba(148,163,184,0.12); border-radius: 99px; overflow: hidden; }
.mock-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--primary-light), var(--accent)); }
.mock-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148,163,184,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-matches { font-size: 0.8rem; color: var(--text-light); }
.mock-matches strong { color: var(--accent-light); font-family: 'Outfit', sans-serif; }
.mock-btn {
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  cursor: default;
}
.mock-floating-card {
  position: absolute;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.mock-floating-card.top-right {
  top: -20px; right: -24px;
  animation: float-card 7s ease-in-out infinite reverse;
}
.mock-floating-card.bottom-left {
  bottom: -20px; left: -24px;
  animation: float-card 8s ease-in-out infinite;
}
.mock-float-label { font-size: 0.7rem; color: var(--text-light); margin-bottom: 0.25rem; }
.mock-float-value { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff; }
.mock-float-sub { font-size: 0.7rem; color: var(--success-light); }

/* ---- SECTIONS ---- */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.section-lg { padding: 7rem 1.5rem; }
.section-dark { background: var(--dark); }
.section-mid { background: var(--dark-mid); }
.section-light { background: var(--bg-secondary); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 860px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.625rem;
}
.section-dark .section-label,
.section-mid .section-label { color: var(--accent-light); }

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-dark .section-title,
.section-mid .section-title { color: #fff; }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}
.section-dark .section-subtitle,
.section-mid .section-subtitle { color: var(--text-light); }
.section-header { margin-bottom: 3.5rem; }

/* ---- CARDS ---- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,0.18); }
.card-dark {
  background: rgba(30,41,59,0.5);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
}
.card-dark:hover { border-color: rgba(59,130,246,0.25); transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
}
.icon-blue { background: rgba(37,99,235,0.1); }
.icon-cyan { background: rgba(14,165,233,0.1); }
.icon-green { background: rgba(16,185,129,0.1); }
.icon-purple { background: rgba(139,92,246,0.1); }
.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card-dark h3 { color: #fff; }
.card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }
.card-dark p { color: var(--text-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-4,.grid-3,.grid-2 { grid-template-columns: 1fr; }
}

/* ---- SPLIT LAYOUT ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---- FEATURE LIST ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
}
.section-dark .feature-list li,
.section-mid .feature-list li { color: rgba(148,163,184,0.9); }
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--success); stroke-width: 2.5; fill: none; }

/* ---- STATS SECTION ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.stat-item {
  background: rgba(30,41,59,0.5);
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:last-child { border-bottom: none; }
}
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
}
.stat-value .accent { color: var(--accent-light); }
.stat-label { font-size: 0.9375rem; color: var(--text-light); margin-top: 0.5rem; font-weight: 500; }
.stat-sublabel { font-size: 0.8125rem; color: var(--text-light); opacity: 0.6; margin-top: 0.25rem; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.25rem; position: relative; padding-bottom: 2rem; }
.step:last-child { padding-bottom: 0; }
.step-indicator { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.step-connector { flex: 1; width: 2px; background: linear-gradient(to bottom, rgba(37,99,235,0.4), transparent); margin-top: 8px; }
.step:last-child .step-connector { display: none; }
.step-body { padding-top: 0.5rem; }
.step-body h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.25rem; }
.section-dark .step-body h4,
.section-mid .step-body h4 { color: #fff; }
.step-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.section-dark .step-body p,
.section-mid .step-body p { color: var(--text-light); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0369A1 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; }

/* ---- PRICING ---- */
.pricing-highlight {
  background: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(14,165,233,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-highlight::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.price-display {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.05em;
}
.section-dark .price-display { color: #fff; }
.price-label { font-size: 1.5rem; color: var(--text-muted); }
.section-dark .price-label { color: var(--text-light); }
.price-period { font-size: 1.125rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ---- TAG / PILL ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(16,185,129,0.1);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.tag-blue { background: rgba(37,99,235,0.1); color: var(--primary-light); border-color: rgba(59,130,246,0.22); }
.tag-cyan { background: rgba(14,165,233,0.1); color: var(--accent); border-color: rgba(14,165,233,0.22); }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: var(--dark);
  padding: 9rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(148,163,184,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-hero p { font-size: 1.125rem; color: var(--text-light); max-width: 560px; line-height: 1.75; margin-bottom: 2rem; }
.page-hero .gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 4.5rem 1.5rem 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand-desc { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; margin-bottom: 0.75rem; line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; }
.social-links { display: flex; gap: 0.625rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(148,163,184,0.08);
  color: var(--text-light);
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.55s; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--border); }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.mb-0 { margin-bottom: 0; }
