/* ============================================
   PROPELAI — PREMIUM REAL ESTATE AI WEBSITE
   Design: Luxury Dark · Gold Accents · Futuristic
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   ============================================ */

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

:root {
  /* Core Palette */
  --bg-void:        #060610;
  --bg-deep:        #0A0A18;
  --bg-surface:     #0F0F20;
  --bg-elevated:    #141428;
  --bg-card:        #111124;

  /* Gold System */
  --gold-bright:    #E8C55A;
  --gold-mid:       #C9A84C;
  --gold-muted:     #A8893C;
  --gold-dim:       #6B5828;
  --gold-glow:      rgba(201, 168, 76, 0.15);
  --gold-glow-lg:   rgba(201, 168, 76, 0.08);

  /* Text */
  --text-primary:   #F0EAD6;
  --text-secondary: #A09880;
  --text-muted:     #5A5448;
  --text-gold:      #C9A84C;

  /* Borders */
  --border-subtle:  rgba(201, 168, 76, 0.12);
  --border-mid:     rgba(201, 168, 76, 0.25);
  --border-bright:  rgba(201, 168, 76, 0.5);

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #E8C55A 0%, #C9A84C 50%, #A8893C 100%);
  --grad-gold-text: linear-gradient(135deg, #F0D070 0%, #C9A84C 40%, #E8C55A 100%);
  --grad-surface:   linear-gradient(180deg, #0F0F20 0%, #060610 100%);
  --grad-card:      linear-gradient(135deg, rgba(20,20,40,0.9) 0%, rgba(10,10,24,0.95) 100%);

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CANVAS BACKGROUND ── */
#grid-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}
body:hover .cursor-follower { opacity: 1; }
.cursor.hovering { width: 14px; height: 14px; background: var(--gold-bright); }
.cursor-follower.hovering { width: 48px; height: 48px; border-color: var(--gold-mid); }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-mid); }

/* ── SELECTION ── */
::selection { background: var(--gold-dim); color: var(--text-primary); }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: var(--grad-gold);
  color: #0A0A18;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3), 0 4px 12px rgba(0,0,0,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.5), 0 8px 24px rgba(0,0,0,0.5);
}
.btn-gold:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-mid);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--gold-mid);
  color: var(--gold-bright);
  background: var(--gold-glow);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-md);
}
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold-mid);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-float {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(6, 6, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--grad-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0A0A18;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(6, 6, 16, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-primary); }
.mobile-cta {
  margin-top: 1rem;
  border-bottom: none !important;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem clamp(1.25rem, 5vw, 2.5rem) 6rem;
  overflow: hidden;
  z-index: 1;
}

/* Hero radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-void), transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(201,168,76,0); }
}

.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.br-desktop { display: block; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--text-secondary); }
.trust-divider { color: var(--text-muted); opacity: 0.4; }

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  background: rgba(14, 14, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.05);
  z-index: 2;
  animation: float-card 6s ease-in-out infinite;
}
.card-1 { left: 3%; top: 30%; animation-delay: 0s; }
.card-2 { right: 3%; top: 38%; animation-delay: 2s; }
.card-3 { right: 5%; bottom: 22%; animation-delay: 4s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.float-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}
.float-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
}
.float-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(201,168,76,0.03) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  position: relative;
}
.stat-number {
  display: inline;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  display: inline;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
  justify-self: center;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.problem-card {
  padding: 2rem;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.problem-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.problem-card h3 {
  font-size: 1.1875rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.problem-stat {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-mid);
  letter-spacing: 0.04em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.02) 50%, transparent 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2rem;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.06);
}
.service-card:hover::after { opacity: 1; }

.service-featured {
  border-color: var(--border-mid);
  background: linear-gradient(135deg, rgba(20,18,10,0.95) 0%, rgba(14,12,6,0.98) 100%);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.service-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.service-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--grad-gold);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0A0A18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(201,168,76,0.14);
  border-color: var(--border-mid);
}

.service-card h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8375rem;
  color: var(--text-secondary);
}
.check {
  color: var(--gold-mid);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.service-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s;
  margin-top: auto;
}
.service-cta:hover {
  color: var(--gold-bright);
  gap: 0.5rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.steps-line {
  position: absolute;
  left: 2.5rem;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-mid) 10%, var(--border-mid) 90%, transparent);
}
.step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  position: relative;
}
.step:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-mid);
  background: var(--bg-void);
  width: 5rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
  position: relative;
  z-index: 1;
}
.step-content {
  flex: 1;
}
.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}
.step-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  font-weight: 700;
}
.step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.step-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-mid);
  letter-spacing: 0.04em;
}

/* ============================================
   RESULTS / CASE STUDIES
   ============================================ */
.results {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.02) 50%, transparent 100%);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.case-card {
  padding: 2rem;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.35s;
}
.case-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.case-card:hover::before { opacity: 1; }
.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.case-company {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}
.case-type {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  white-space: nowrap;
}
.case-metric-big {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.case-metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.case-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 1.25rem;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.case-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.case-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.case-stat-key {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.case-quote {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.75rem;
  padding-left: 0.875rem;
  border-left: 2px solid var(--border-mid);
}
.case-author {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  background: var(--grad-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.calc-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.calc-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 0.875rem;
}
.calc-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.calc-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(201,168,76,0.4);
  transition: box-shadow 0.2s;
}
.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(201,168,76,0.6);
}
.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-gold);
  cursor: pointer;
  border: none;
}
.slider-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.calc-result-card {
  padding: 2.5rem;
  background: rgba(6,6,16,0.8);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.calc-result-current {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.calc-result-potential {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.calc-result-diff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
}
.diff-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.diff-val {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.calc-disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  padding: 2rem;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.testi-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.testi-featured {
  border-color: var(--border-mid);
  background: linear-gradient(135deg, rgba(20,18,10,0.95) 0%, rgba(14,12,6,0.98) 100%);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), 0 20px 60px rgba(0,0,0,0.4);
}
.testi-stars {
  color: var(--gold-mid);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0A0A18;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.02) 50%, transparent 100%);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-mid); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-bright); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold-mid);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.contact-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--grad-card);
  border: 1px solid var(--border-mid);
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.contact-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.contact-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.g-icon {
  color: var(--gold-mid);
  font-size: 0.75rem;
}

/* Form */
.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.25s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: var(--bg-deep);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-mid);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6,6,16,0.8) 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  color: var(--gold-mid);
  border-color: var(--border-mid);
  background: var(--gold-glow);
}
.footer-links-group h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links-group a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text-secondary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-badge {
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-float-card { display: none; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-wrapper { padding: 2.5rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .br-desktop { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .steps-line { display: none; }
  .step { flex-direction: column; gap: 0.75rem; }
  .step-number { width: auto; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-guarantees { flex-direction: column; align-items: center; }
}