/* ====================================================
   FUNDIKIGANJANI — PREMIUM REDESIGN 2026
   Aesthetic: Industrial Luxury — Dark + Amber + Gold
   Features: Micro-animations, Popup buttons, Glass morphism,
             3D transforms, Scroll reveals, Particle-ready
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --bg:        #050505;
  --surface:   #0c0c0c;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --surface-4: #242424;
  --border:    rgba(255,255,255,0.05);
  --border-h:  rgba(255,255,255,0.12);
  --border-glow: rgba(245,166,35,0.15);

  --red:       #E63946;
  --red-dim:   rgba(230,57,70,0.08);
  --red-glow:  rgba(230,57,70,0.3);

  --amber:     #F5A623;
  --amber-light: #FFC857;
  --amber-dim: rgba(245,166,35,0.08);
  --amber-glow:rgba(245,166,35,0.25);

  --gold:      #D4AF37;
  --gold-dim:  rgba(212,175,55,0.1);
  --gold-glow: rgba(212,175,55,0.2);

  --green:     #22C55E;
  --green-dim: rgba(34,197,94,0.08);
  --blue:      #60A5FA;
  --blue-dim:  rgba(96,165,250,0.08);

  --text:      #F0EBE5;
  --text-2:    #A09890;
  --text-3:    #6B6560;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow:    0 4px 24px rgba(0,0,0,0.6);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.7);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.8);
  --shadow-glow: 0 0 40px rgba(245,166,35,0.1);
  --shadow-gold: 0 0 60px rgba(212,175,55,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--surface-4); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ── INPUTS ──────────────────────────────────────── */
input, select, textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
  margin-bottom: 14px;
  position: relative;
}
input::placeholder, select::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-dim), 0 0 20px rgba(245,166,35,0.1);
  background: var(--surface-3);
  transform: translateY(-1px);
}
select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A09890' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ── BUTTONS — POPUP & 3D ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-bounce);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.96) translateY(1px); }

/* Primary — Amber Gold Popup */
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #000;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px var(--amber-glow), 0 0 60px rgba(245,166,35,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Red — Danger Popup */
.btn-red {
  background: linear-gradient(135deg, var(--red), #c92a37);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px var(--red-glow), 0 0 40px rgba(230,57,70,0.15);
}

/* Outline — Glass Popup */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--amber-glow);
}

/* Ghost — Subtle Popup */
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-3);
  border-color: var(--border-h);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Glow Button — Special CTA */
.btn-glow {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #000;
  position: relative;
  z-index: 1;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--amber), var(--gold), var(--amber));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition);
}
.btn-glow:hover::after { opacity: 0.6; }
.btn-glow:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
}

.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-xl { padding: 18px 44px; font-size: 17px; border-radius: var(--radius-lg); letter-spacing: 0.02em; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ── BADGES ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.badge-pending  { background: rgba(245,166,35,0.12); color: var(--amber); border: 1px solid rgba(245,166,35,0.25); }
.badge-progress { background: rgba(96,165,250,0.1); color: var(--blue); border: 1px solid rgba(96,165,250,0.2); }
.badge-done     { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.badge-new      { background: var(--red-dim); color: var(--red); border: 1px solid var(--red-glow); }

/* ── GLASS / CARDS — 3D Float ────────────────────── */
.glass {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.04);
}
.card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(245,166,35,0.05), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── MODAL — Dramatic Entrance ───────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.modal.open { display: flex; opacity: 1; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 520px;
  padding: 36px;
  position: relative;
  transform: scale(0.85) translateY(40px);
  opacity: 0;
  transition: all var(--transition-bounce);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 60px rgba(245,166,35,0.05);
}
.modal.open .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text-2);
  transition: all var(--transition-bounce);
}
.modal-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: rotate(90deg) scale(1.1);
}

/* ── DIVIDERS / SEPARATORS ───────────────────────── */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
  margin: 28px 0;
  position: relative;
}
.sep::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber-glow);
}

/* ── ONLINE DOT — Premium Pulse ──────────────────── */
.dot-online {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34,197,94,0.6);
  animation: pulse-dot 2.5s ease-in-out infinite;
  position: relative;
}
.dot-online::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity:1; box-shadow: 0 0 10px rgba(34,197,94,0.6); }
  50% { opacity:0.8; box-shadow: 0 0 18px rgba(34,197,94,0.9); }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ── FLOATING PARTICLES BG ───────────────────────── */
.particles-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle 15s infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
  25% { transform: translateY(-40px) translateX(20px); opacity: 0.3; }
  50% { transform: translateY(-20px) translateX(-15px); opacity: 0.15; }
  75% { transform: translateY(-60px) translateX(10px); opacity: 0.25; }
}

/* ═══════════════════════════════════════════════════
   NAVIGATION — Glass + Scroll Animation
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(5,5,5,0.9);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  height: 64px;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform var(--transition);
}
.nav-brand:hover { transform: scale(1.02); }
.nav-brand .icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red), #c92a37);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: all var(--transition-bounce);
}
.nav-brand:hover .icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 6px 24px var(--red-glow);
}
.nav-brand span { color: var(--amber); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; color: var(--text-2); font-weight: 500;
  transition: all var(--transition);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 2px;
  transition: width var(--transition-bounce);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--amber); }
.nav-links a.active::after { width: 100%; }

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

/* ═══════════════════════════════════════════════════
   HERO — Cinematic + Parallax Ready
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(245,166,35,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 15% 75%, rgba(230,57,70,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212,175,55,0.03) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-left {}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: var(--red-dim);
  border: 1px solid var(--red-glow);
  border-radius: 99px;
  font-size: 12px; font-weight: 600; color: var(--red);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s ease both;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--amber-dim), transparent);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 17px; color: var(--text-2); line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--border-h), transparent);
}
.stat-item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--amber);
  transition: all var(--transition);
}
.stat-item:hover strong {
  transform: scale(1.1);
  text-shadow: 0 0 20px var(--amber-glow);
}
.stat-item span { font-size: 13px; color: var(--text-2); }

/* HERO SEARCH CARD — Glass 3D */
.hero-right {
  animation: fadeSlideUp 0.8s 0.25s ease both;
  perspective: 1000px;
}
.search-card {
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,166,35,0.04);
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
}
.search-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 32px 100px rgba(0,0,0,0.7), 0 0 80px rgba(245,166,35,0.06);
  border-color: rgba(245,166,35,0.15);
}
.search-card h3 {
  font-size: 20px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.search-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.trust-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px;
}
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px; color: var(--text-2);
  transition: all var(--transition);
}
.trust-pill:hover {
  background: var(--amber-dim);
  border-color: rgba(245,166,35,0.2);
  transform: translateX(4px);
}
.trust-pill .ico { font-size: 18px; }

/* ═══════════════════════════════════════════════════
   SECTION COMMONS — Scroll Reveal Ready
═══════════════════════════════════════════════════ */
.section {
  padding: 100px 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-full { padding: 100px 0; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px;
}
.section-head h2 { font-size: 36px; }
.section-head a {
  font-size: 14px; color: var(--amber); opacity: 0.8;
  display: flex; align-items: center; gap: 6px;
  transition: all var(--transition);
}
.section-head a:hover { opacity: 1; gap: 10px; }
.section-head a::after {
  content: '→';
  transition: transform var(--transition);
}
.section-head a:hover::after { transform: translateX(4px); }

.label {
  font-size: 11px; letter-spacing: 0.15em; font-weight: 700;
  color: var(--text-3); text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.label::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   SERVICE PILLS — Hover Pop
═══════════════════════════════════════════════════ */
.services-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.svc-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-bounce);
  min-width: 100px; text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-pill:hover {
  border-color: var(--amber);
  background: var(--amber-dim);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px rgba(245,166,35,0.08);
}
.svc-pill:hover::before { opacity: 1; }
.svc-pill:hover .ico {
  transform: scale(1.2) rotate(-5deg);
}
.svc-pill .ico { font-size: 32px; transition: all var(--transition-bounce); }
.svc-pill p { font-size: 12px; font-weight: 600; color: var(--text-2); transition: color var(--transition); }
.svc-pill:hover p { color: var(--amber); }

/* ═══════════════════════════════════════════════════
   FUNDI CARDS — 3D Tilt + Glow
═══════════════════════════════════════════════════ */
.fundis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.fundi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  position: relative;
}
.fundi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(245,166,35,0.03));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1; pointer-events: none;
}
.fundi-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.06);
}
.fundi-card:hover::before { opacity: 1; }

.fundi-img {
  height: 200px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.fundi-card:hover .fundi-img {
  transform: scale(1.05);
}
.fundi-img img { width:100%; height:100%; object-fit:cover; transition: transform var(--transition-slow); }
.fundi-card:hover .fundi-img img { transform: scale(1.1); }

.fundi-available {
  position: absolute; top: 14px; right: 14px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border-radius: 99px; font-size: 11px; color: var(--green); font-weight: 600;
  border: 1px solid rgba(34,197,94,0.2);
  animation: fadeIn 0.4s ease;
}

.fundi-body { padding: 22px; position: relative; z-index: 2; }
.fundi-name {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.fundi-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.fundi-meta span { font-size: 13px; color: var(--text-2); transition: color var(--transition); }
.fundi-card:hover .fundi-meta span { color: var(--text); }
.fundi-rating { color: var(--amber); font-size: 14px; font-weight: 600; }

.fundi-actions { display: flex; gap: 10px; }
.fundi-actions .btn { flex: 1; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — Connected Steps
═══════════════════════════════════════════════════ */
.steps-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.steps-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1240px; margin: 48px auto 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber));
  opacity: 0.15;
  border-radius: 2px;
}
.step-card {
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(245,166,35,0.02);
  border-radius: var(--radius-lg);
}
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -14px; top: 55px;
  transform: translateY(-50%);
  color: var(--amber); font-size: 24px;
  z-index: 1;
  opacity: 0.6;
  animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px; font-weight: 800;
  color: var(--surface-4);
  line-height: 1; margin-bottom: 20px;
  transition: all var(--transition);
  position: relative;
}
.step-card:hover .step-num {
  color: var(--amber);
  text-shadow: 0 0 30px var(--amber-glow);
}
.step-card h3 { font-size: 22px; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   REVIEWS — Elegant Cards
═══════════════════════════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--surface-3);
  line-height: 1;
  opacity: 0.5;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.review-card:hover::before {
  color: var(--amber-dim);
  transform: translateY(-5px);
}
.review-stars { font-size: 15px; color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-4));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.review-card:hover .review-avatar {
  border-color: var(--amber);
  box-shadow: 0 0 16px var(--amber-glow);
}
.review-author strong { font-size: 15px; font-weight: 600; }
.review-author span { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════════════
   CTA BANNER — Dramatic
═══════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--surface), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(245,166,35,0.03) 0%, transparent 70%);
  animation: rotate-glow 20s linear infinite;
}
@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-banner:hover {
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 0 80px rgba(245,166,35,0.06);
}
.cta-banner .label { justify-content: center; }
.cta-banner .label::before { display: none; }
.cta-banner h2 { font-size: 40px; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: var(--text-2); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   FOOTER — Premium
═══════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 40px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.2;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px;
  max-width: 1240px; margin: 0 auto;
  padding-bottom: 56px;
}
.footer-brand {}
.footer-brand .brand-name {
  font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 15px; color: var(--text-2); line-height: 1.8; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  transition: all var(--transition-bounce);
}
.social-btn:hover {
  border-color: var(--amber);
  background: var(--amber-dim);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(245,166,35,0.15);
}

.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 15px; color: var(--text-2);
  margin-bottom: 12px; transition: all var(--transition);
  position: relative;
  padding-left: 0;
}
.footer-col a:hover {
  color: var(--amber);
  padding-left: 8px;
}
.footer-col a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all var(--transition);
  color: var(--amber);
}
.footer-col a:hover::before {
  left: -4px;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-3);
}

/* ═══════════════════════════════════════════════════
   DASHBOARD LAYOUT — Sidebar + Main
═══════════════════════════════════════════════════ */
.dash-layout {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 0;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}

.sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
}
.sidebar-brand {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
}
.sidebar-brand span { color: var(--amber); }
.sidebar-tagline { font-size: 11px; color: var(--text-3); margin-top: 4px; }

.sidebar-section { padding: 20px 14px 10px; }
.sidebar-section-label {
  font-size: 10px; letter-spacing: 0.12em; font-weight: 700;
  text-transform: uppercase; color: var(--text-3);
  padding: 0 10px; margin-bottom: 6px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition-bounce);
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
}
.sidebar-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--amber);
  border-radius: 0 3px 3px 0;
  transition: height var(--transition-bounce);
}
.sidebar-item:hover {
  background: var(--surface-2);
  color: var(--text);
  transform: translateX(4px);
}
.sidebar-item:hover::before { height: 50%; }
.sidebar-item.active {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.15);
}
.sidebar-item.active::before { height: 70%; }
.sidebar-item .s-icon { font-size: 18px; width: 22px; text-align: center; transition: transform var(--transition); }
.sidebar-item:hover .s-icon { transform: scale(1.2); }
.sidebar-item .s-badge {
  margin-left: auto;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--red), #c92a37);
  color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 99px;
  box-shadow: 0 2px 8px var(--red-glow);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 2px 8px var(--red-glow); }
  50% { box-shadow: 0 2px 16px var(--red-glow); }
}

.sidebar-footer { padding: 20px; margin-top: auto; border-top: 1px solid var(--border); }

.dash-main {
  padding: 36px 44px;
  background: var(--bg);
  overflow-y: auto;
  min-height: 100vh;
}

/* Dash topbar */
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.dash-topbar-left h2 { font-size: 26px; margin-bottom: 6px; }
.dash-topbar-left p { font-size: 14px; color: var(--text-2); }
.dash-topbar-right { display: flex; align-items: center; gap: 16px; }

.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #c92a37);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: all var(--transition-bounce);
  cursor: pointer;
}
.avatar:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px var(--red-glow);
}

/* Stats — Premium Cards */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.stat-card:hover::before { opacity: 1; }
.stat-card .s-label { font-size: 12px; color: var(--text-3); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.stat-card .s-value {
  font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
  line-height: 1;
  transition: all var(--transition);
}
.stat-card:hover .s-value {
  transform: scale(1.05);
}
.stat-card .s-sub { font-size: 13px; color: var(--text-3); margin-top: 8px; }
.stat-card.amber { border-color: rgba(245,166,35,0.15); background: linear-gradient(135deg, var(--surface), var(--amber-dim)); }
.stat-card.green { border-color: rgba(34,197,94,0.15); background: linear-gradient(135deg, var(--surface), var(--green-dim)); }
.stat-card.blue  { border-color: rgba(96,165,250,0.15); background: linear-gradient(135deg, var(--surface), var(--blue-dim)); }

/* Table */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.table-wrap:hover {
  border-color: var(--border-h);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.table-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.table-head h3 { font-size: 17px; }

table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left;
  padding: 14px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
tbody td {
  padding: 16px 18px;
  font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  transition: all var(--transition);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr {
  transition: all var(--transition);
}
tbody tr:hover td {
  background: var(--surface-2);
  color: var(--text);
}
tbody tr:hover {
  transform: scale(1.005);
}

/* Job card — Animated Border */
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 14px;
  transition: all var(--transition-bounce);
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.job-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(245,166,35,0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.job-card:hover {
  border-color: var(--border-h);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.job-card:hover::after { opacity: 1; }
.job-card.pending  { border-left-color: var(--amber); }
.job-card.progress { border-left-color: var(--blue); }
.job-card.done     { border-left-color: var(--green); }

.job-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.job-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.job-desc  { font-size: 14px; color: var(--text-2); }
.job-footer { display: flex; gap: 10px; margin-top: 16px; }

/* Tabs — Animated */
.tabs {
  display: flex; gap: 6px;
  background: var(--surface-2);
  padding: 5px; border-radius: var(--radius);
  margin-bottom: 24px; width: fit-content;
}
.tab {
  padding: 10px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--transition-bounce); color: var(--text-2);
  position: relative;
  overflow: hidden;
}
.tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.tab.active {
  background: var(--surface-3);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.tab.active::before { opacity: 1; }
.tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.03); }

/* ═══════════════════════════════════════════════════
   AUTH PAGES — Cinematic
═══════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(245,166,35,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 70%, rgba(230,57,70,0.06) 0%, transparent 50%),
    var(--bg);
  position: relative;
}
.auth-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.auth-box {
  width: 100%; max-width: 440px;
  position: relative; z-index: 1;
  animation: fadeSlideUp 0.8s ease both;
}
.auth-logo {
  text-align: center; margin-bottom: 36px;
}
.auth-logo .logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), #c92a37);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
  box-shadow: 0 8px 32px var(--red-glow);
  transition: all var(--transition-bounce);
  animation: logo-float 3s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.auth-logo:hover .logo-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 40px var(--red-glow);
}
.auth-logo h1 {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.03em;
}
.auth-logo h1 span { color: var(--amber); }
.auth-logo p { font-size: 13px; color: var(--text-3); margin-top: 6px; }

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
  transition: all var(--transition);
}
.auth-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 20px 64px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.03);
}
.auth-card h2 { font-size: 24px; margin-bottom: 8px; }
.auth-card .sub { font-size: 15px; color: var(--text-2); margin-bottom: 28px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-3); margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   SERVICES / MAP PAGE
═══════════════════════════════════════════════════ */
.services-page {
  display: grid; grid-template-columns: 400px 1fr;
  height: 100vh; overflow: hidden;
}
.services-panel {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.services-panel-head {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.services-panel-body { overflow-y: auto; flex: 1; padding: 20px; }
#map { flex: 1; }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity:0; transform: translateY(-20px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform: scale(0.9); }
  to { opacity:1; transform: scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in { animation: fadeSlideUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }
.scale-in { animation: scaleIn 0.5s ease both; }
.loading { animation: spin 0.8s linear infinite; }

/* Shimmer loading effect */
.shimmer {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ═══════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════ */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.text-amber { color: var(--amber); }
.text-red   { color: var(--red); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-2); }
.text-xs    { font-size: 12px; }
.text-sm    { font-size: 13px; }
.text-lg    { font-size: 18px; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* Tooltip */
.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .section { padding: 60px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step-card::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 60px 20px 0; }
  .dash-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-main { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-page { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 28px; }
}
