/* =========================================================
   CareerNimbus — Global Stylesheet
   Theme: Elevation, Cloud, Trust
   ========================================================= */

:root {
  --navy-900: #07173a;
  --navy-800: #0a2540;
  --navy-700: #122a55;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --sky-400: #38bdf8;
  --cyan-400: #22d3ee;
  --violet-500: #8b5cf6;
  --gold-500: #f59e0b;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  --success:   #10b981;

  --gradient-hero: linear-gradient(135deg, #07173a 0%, #122a55 45%, #1e3a8a 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-soft: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.12);
  --shadow-glow: 0 20px 50px rgba(59,130,246,.35);

  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--violet-500); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: var(--gradient-soft); }
.section-dark { background: var(--navy-900); color: var(--slate-200); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(59,130,246,.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-dark .eyebrow {
  color: var(--sky-400);
  background: rgba(56,189,248,.12);
}

.section-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-header p { color: var(--slate-500); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--slate-200);
}
.btn-secondary:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation / Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--navy-900); }
.brand-mark { width: 36px; height: 36px; }
.brand-name span { color: var(--blue-600); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links a.active {
  color: var(--navy-900);
  font-weight: 600;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-accent);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--navy-900);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav-links a.active::after { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--slate-200);
  padding: 120px 0 140px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  top: -120px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -160px; left: -120px;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero h1 .accent {
  background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.18rem;
  color: rgba(226,232,240,.9);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px;
  font-size: .85rem;
  color: rgba(226,232,240,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 14px;
  align-items: center;
  color: rgba(226,232,240,.85);
  font-weight: 600;
}

.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sky-400);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-tile {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 18px;
}
.stat-tile .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-tile .lbl {
  font-size: .85rem;
  color: rgba(226,232,240,.75);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 80px 0 100px; }
}

/* ---------- Page hero (lighter, for inner pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  color: var(--slate-200);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 80% -10%, rgba(59,130,246,.45), transparent 60%),
    radial-gradient(600px 280px at 0% 110%, rgba(139,92,246,.4), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(226,232,240,.85); font-size: 1.15rem; max-width: 680px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--sky-400); background: rgba(56,189,248,.16); }

/* ---------- Generic Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .cards-grid, .cards-grid.two, .cards-grid.four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-grid, .cards-grid.two, .cards-grid.four { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,.4);
  box-shadow: var(--shadow-lg);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--gradient-accent);
  color: var(--white);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); margin: 0; }
.card-list { margin-top: 14px; display: grid; gap: 8px; }
.card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--slate-600);
}
.card-list li::before {
  content: "";
  flex: 0 0 8px; height: 8px; margin-top: 8px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ---------- Value props / "Why us" stripes ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: all .25s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-500); }
.why-card .icon {
  flex: 0 0 52px; height: 52px;
  border-radius: 12px;
  background: rgba(59,130,246,.10);
  color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-card .icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { color: var(--slate-500); margin: 0; font-size: .96rem; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-500); }
.step .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 10px;
}
.step h4 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--slate-500); margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Stats banner ---------- */
.stats-banner {
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 90% -10%, rgba(56,189,248,.4), transparent 60%),
    radial-gradient(400px 200px at 0% 110%, rgba(139,92,246,.4), transparent 60%);
  pointer-events: none;
}
.stats-banner .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  text-align: center;
}
.stats-banner .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stats-banner .lbl {
  color: rgba(226,232,240,.8);
  font-size: .95rem;
  margin-top: 6px;
}
@media (max-width: 720px) { .stats-banner .stats-grid { grid-template-columns: repeat(2, 1fr); } .stats-banner { padding: 36px; } }

/* ---------- Industries grid ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  transition: all .25s ease;
}
.industry:hover { transform: translateY(-3px); border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.industry .icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(59,130,246,.10);
  color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.industry .icon svg { width: 22px; height: 22px; }
.industry h4 { font-size: 1rem; margin: 0 0 4px; }
.industry p { font-size: .82rem; color: var(--slate-500); margin: 0; }
@media (max-width: 980px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(59,130,246,.12);
  line-height: 1;
}
.testimonial p {
  color: var(--slate-700);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.testimonial .author {
  display: flex; align-items: center; gap: 14px;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.author-name { font-weight: 600; color: var(--navy-800); font-size: .95rem; }
.author-role { font-size: .85rem; color: var(--slate-500); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 250px at 100% -20%, rgba(56,189,248,.5), transparent 60%),
    radial-gradient(400px 200px at -10% 120%, rgba(139,92,246,.5), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin: 0 0 10px; }
.cta-banner p { color: rgba(226,232,240,.85); margin: 0; max-width: 540px; }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px; }
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split img, .split .visual { width: 100%; border-radius: var(--radius-lg); }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
}

/* Decorative visual block */
.visual {
  background: var(--gradient-accent);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.visual::before, .visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .8;
}
.visual::before { width: 280px; height: 280px; background: rgba(255,255,255,.35); top: -80px; right: -80px; }
.visual::after { width: 200px; height: 200px; background: rgba(255,255,255,.25); bottom: -60px; left: -60px; }
.visual svg { position: relative; z-index: 2; width: 60%; height: auto; color: rgba(255,255,255,.9); }

/* ---------- Feature stripes ---------- */
.feature-list { display: grid; gap: 18px; }
.feature-list .item {
  display: flex; gap: 18px; align-items: flex-start;
}
.feature-list .check {
  flex: 0 0 36px; height: 36px;
  border-radius: 10px;
  background: rgba(16,185,129,.12);
  color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-list .check svg { width: 18px; height: 18px; }
.feature-list h4 { margin: 0 0 4px; font-size: 1.05rem; }
.feature-list p { margin: 0; color: var(--slate-500); font-size: .95rem; }

/* ---------- Engagement model pricing-like cards ---------- */
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
}
.tier:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-500); transform: translateY(-4px); }
.tier.featured {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  position: relative;
}
.tier.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 32px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier h3 { margin-bottom: 6px; }
.tier .tier-sub { color: var(--slate-500); margin-bottom: 18px; font-size: .95rem; }
.tier ul { display: grid; gap: 10px; margin-bottom: 22px; }
.tier ul li {
  display: flex; gap: 10px;
  font-size: .94rem;
  color: var(--slate-700);
}
.tier ul li::before {
  content: "✓";
  flex: 0 0 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .8rem;
}

/* ---------- Insights / Blog cards ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .posts-grid { grid-template-columns: 1fr; } }
.post {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post .thumb {
  height: 180px;
  background: var(--gradient-accent);
  position: relative;
  overflow: hidden;
}
.post .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 200px at 100% 0%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(200px 200px at 0% 100%, rgba(255,255,255,.25), transparent 60%);
}
.post .thumb.alt-1 { background: linear-gradient(135deg,#0ea5e9,#6366f1); }
.post .thumb.alt-2 { background: linear-gradient(135deg,#f97316,#ec4899); }
.post .body { padding: 22px; }
.post .tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 8px;
  display: inline-block;
}
.post h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post p { color: var(--slate-500); font-size: .92rem; margin: 0 0 14px; }
.post .meta { font-size: .82rem; color: var(--slate-400); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  font: inherit;
  color: var(--slate-900);
  background: var(--slate-50);
  transition: all .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(16,185,129,.10);
  color: var(--success);
  border-radius: 10px;
  font-weight: 600;
  margin-top: 12px;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-300);
  padding: 72px 0 24px;
  margin-top: 80px;
}
.site-footer a { color: var(--slate-300); }
.site-footer a:hover { color: var(--sky-400); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: var(--slate-400); font-size: .95rem; max-width: 320px; }
.footer-col h5 {
  color: var(--white);
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .94rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: .85rem;
  color: var(--slate-400);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.socials a:hover { background: var(--blue-600); color: var(--white); }
.socials svg { width: 18px; height: 18px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Helpers / animations ---------- */
.lead { font-size: 1.1rem; color: var(--slate-600); }
.muted { color: var(--slate-500); }
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.divider {
  height: 1px;
  background: var(--slate-200);
  margin: 36px 0;
  border: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].in {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection { background: rgba(59,130,246,.25); color: var(--navy-900); }

/* Scrollbar (modern browsers) */
* { scrollbar-color: var(--slate-300) transparent; scrollbar-width: thin; }
