/* Premium Fonts - Classy & Eye-Catching */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap");

:root {
  --bg-primary: #fdfbf7;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --accent-primary: #2c5f7d;
  --accent-secondary: #d4af37;
  --accent-hover: #1e4459;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #a0a0a0;
  --success-color: #2d8659;
  --warning-color: #c7893f;
  --border-light: rgba(44, 95, 125, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP MINI HEADER - PREMIUM DESIGN ===== */
.top-header {
  background: linear-gradient(135deg,
      #1e40af 0%,
      #2563eb 30%,
      #0891b2 70%,
      #06b6d4 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

/* Animated gradient overlay */
.top-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  animation: slideShine 8s linear infinite;
}

@keyframes slideShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Subtle pattern overlay */
.top-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-header-left,
.top-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
}

.top-header-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-header-link:hover::before {
  opacity: 1;
}

.top-header-link:hover {
  color: white;
  transform: translateY(-2px);
}

.top-header-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.top-header-link:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

.top-header-user {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 5px 12px;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(37, 99, 235, 0.15) 100%);
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
  font-size: 0.8rem;
}

.top-header-user svg {
  width: 14px;
  height: 14px;
  opacity: 0.95;
}

.top-header-btn {
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.top-header-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.top-header-btn:hover::before {
  left: 100%;
}

.top-header-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-header-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-color: #2563eb;
  box-shadow:
    0 2px 8px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.top-header-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

  .top-header-left,
  .top-header-right {
    gap: 12px;
  }

  .top-header-link {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .top-header-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: white;
  border-bottom: 1px solid rgba(44, 95, 125, 0.1);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 2rem;
  color: #2563eb;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo h1:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #475569;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.cart-link {
  position: relative;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #475569;
}

.cart-link svg {
  width: 20px;
  height: 20px;
}

.cart-link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

/* ===== HERO SECTION - PREMIUM ENHANCED ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 40%, #e8f0fe 100%);
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Noise texture for depth */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  top: -25%;
  left: -5%;
  background: rgba(59, 130, 246, 0.10);
  animation: heroFloat 20s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  top: 20%;
  right: -12%;
  background: rgba(139, 92, 246, 0.07);
  animation: heroFloat 25s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 450px;
  height: 450px;
  bottom: -15%;
  left: 35%;
  background: rgba(16, 185, 129, 0.06);
  animation: heroFloat 18s ease-in-out infinite 3s;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

.hero>.container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

/* Badge with shimmer */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s ease both;
  position: relative;
  overflow: hidden;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: block;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-badge-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title */
.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2.5px;
  color: #0f172a;
  margin-bottom: 24px;
  font-family: 'Inter', 'Poppins', sans-serif;
  animation: fadeInUp 0.8s ease 0.15s both;
  text-align: left;
}

.hero-gradient-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: textShimmer 6s ease-in-out infinite;
}

.hero-underline {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
  border-radius: 3px;
  z-index: -1;
}

@keyframes textShimmer {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 40px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hide-mobile {
  display: inline;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.25),
    0 1px 3px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::after {
  opacity: 1;
}

.hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.12),
    0 12px 32px rgba(37, 99, 235, 0.35);
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: white;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-btn-ghost svg {
  color: #3b82f6;
}

.hero-btn-ghost:hover {
  color: #0f172a;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Stats Bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 24px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
  text-align: center;
  padding: 0 28px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
  flex-shrink: 0;
}

.hero-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Trusted By Strip */
.hero-trusted {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.8s ease 0.75s both;
}

.hero-trusted-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hero-trusted-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-trusted-item {
  font-size: 0.95rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: default;
}

.hero-trusted-item:hover {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating Lead Preview Card */
.hero-preview-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease 0.5s both;
  margin-top: -40px;
}

.hero-preview-bg-card {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -8px;
  bottom: -8px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 28px;
  z-index: 0;
}

.hero-preview-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.10),
    0 8px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: cardFloat 6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

.hero-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid #f1f5f9;
}

.hero-preview-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-preview-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.08);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-preview-new {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-preview-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.hero-preview-body {
  padding: 28px;
}

.hero-preview-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.hero-preview-company {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 18px;
}

.hero-preview-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.preview-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 5px 12px;
  border-radius: 8px;
}

.preview-tag.tag-more {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.hero-preview-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-preview-details span {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

/* Progress Bar */
.hero-preview-progress {
  margin-top: 4px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-header span {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.progress-pct {
  font-weight: 700 !important;
  color: #10b981 !important;
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  width: 87%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 6px;
  animation: progressGrow 1.5s ease 1s both;
}

@keyframes progressGrow {
  from {
    width: 0%;
  }

  to {
    width: 87%;
  }
}

.hero-preview-footer {
  padding: 20px 28px 24px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.hero-preview-blur {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.blur-line {
  height: 12px;
  background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
  border-radius: 6px;
  filter: blur(4px);
}

.blur-line.short {
  width: 55%;
}

.hero-preview-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-preview-unlock {
  font-size: 0.82rem;
  color: #3b82f6;
  font-weight: 600;
}

.hero-preview-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero-preview-cta:hover {
  transform: translateX(3px);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fadeInUp 0.8s ease 1s both;
}

.hero-scroll-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, #cbd5e1, transparent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* Hero Responsive */
@media (max-width: 1200px) {
  .hero>.container {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 90px 0 70px;
    min-height: auto;
  }

  .hero>.container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 3.5rem;
    letter-spacing: -2px;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trusted {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-preview-wrapper {
    display: none;
  }

  .hero-stats {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2.6rem;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
    width: 100%;
  }

  .hero-stat {
    padding: 0;
  }

  .hero-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  }

  .hero-trusted-logos {
    gap: 12px;
  }

  .hide-mobile {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px 6px 10px;
  }

  .hero-trusted {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== BUTTONS - PREMIUM DESIGN ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.4px;
  text-transform: none;
}

/* Ripple effect */
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 350px;
  height: 350px;
}

/* Shine effect */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 100%;
}

/* Primary Button - Premium Blue Gradient */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  box-shadow:
    0 4px 15px rgba(37, 99, 235, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(37, 99, 235, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

/* Outline Button - Elegant Border */
.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #1e40af;
  border: 2px solid #2563eb;
  box-shadow:
    0 4px 15px rgba(37, 99, 235, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-color: #1e40af;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(37, 99, 235, 0.35),
    0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Large Button Modifier */
.btn-lg {
  padding: 17px 42px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* Green Success Button */
.btn-green {
  background: linear-gradient(135deg, #2d8659 0%, #1e6b48 100%);
  color: white;
  box-shadow:
    0 4px 15px rgba(45, 134, 89, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-green:hover {
  background: linear-gradient(135deg, #1e6b48 0%, #166534 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(45, 134, 89, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  box-shadow:
    0 4px 15px rgba(100, 116, 139, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(100, 116, 139, 0.35),
    0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Loading state */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Button with icon */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: scale(1.15);
}

/* ===== SECTIONS ===== */
.features-section,
.how-it-works-section,
.leads-section,
.reviews-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

/* ===== UNIFIED SECTION HEADER ===== */
.sec-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.sec-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #3b82f6;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 100px;
  margin-bottom: 24px;
}

.sec-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}

.sec-title span {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Light variant (for dark backgrounds like CTA) */
.sec-label-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #60a5fa;
}

.sec-title-light {
  color: #f1f5f9;
}

.sec-title-light span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc-light {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .sec-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .sec-header {
    margin-bottom: 40px;
  }

  .sec-desc {
    font-size: 0.95rem;
  }
}


/* ===== FEATURES - BENTO GRID ===== */
.features-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  position: relative;
}

/* Subtle radial wash for depth */
.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== FEATURES – DARK GLASSMORPHIC ===== */
.feat-section {
  position: relative;
  padding: 120px 0;
  background: #0b1120;
  overflow: hidden;
}

.feat-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.feat-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.feat-glow-1 {
  top: -100px;
  left: -100px;
  background: #3b82f6;
}

.feat-glow-2 {
  bottom: -100px;
  right: -100px;
  background: #8b5cf6;
}

.feat-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.feat-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #60a5fa;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  margin-bottom: 24px;
}

.feat-title {
  font-size: 3rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.feat-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feat-desc {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card Grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Top glow line */
.feat-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

.feat-card:hover .feat-card-glow {
  height: 4px;
}

.feat-card-glow-blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.feat-card-glow-amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.feat-card-glow-purple {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.feat-card-glow-green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.feat-card:hover .feat-card-glow-blue {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.feat-card:hover .feat-card-glow-amber {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.feat-card:hover .feat-card-glow-purple {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.feat-card:hover .feat-card-glow-green {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Icon */
.feat-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.feat-card-icon svg {
  width: 28px;
  height: 28px;
}

.feat-icon-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.feat-icon-blue svg {
  stroke: #60a5fa;
}

.feat-icon-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.feat-icon-amber svg {
  stroke: #fbbf24;
}

.feat-icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.feat-icon-purple svg {
  stroke: #a78bfa;
}

.feat-icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}

.feat-icon-green svg {
  stroke: #34d399;
}

.feat-card:hover .feat-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feat-card:hover .feat-icon-blue {
  background: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.feat-card:hover .feat-icon-blue svg {
  stroke: #fff;
}

.feat-card:hover .feat-icon-amber {
  background: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.feat-card:hover .feat-icon-amber svg {
  stroke: #fff;
}

.feat-card:hover .feat-icon-purple {
  background: #8b5cf6;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.feat-card:hover .feat-icon-purple svg {
  stroke: #fff;
}

.feat-card:hover .feat-icon-green {
  background: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.feat-card:hover .feat-icon-green svg {
  stroke: #fff;
}

/* Typography */
.feat-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.feat-card-text {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.feat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feat-card-link svg {
  transition: transform 0.3s ease;
}

.feat-card:hover .feat-card-link {
  color: #60a5fa;
}

.feat-card:hover .feat-card-link svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feat-section {
    padding: 80px 0;
  }

  .feat-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .feat-header {
    margin-bottom: 48px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .feat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .feat-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .feat-card-title {
    font-size: 1.15rem;
  }

  .feat-card-text {
    font-size: 0.88rem;
  }
}


/* ===== HOW IT WORKS - PREMIUM TIMELINE REDESIGN ===== */
.hiw-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hiw-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Timeline Container */
.hiw-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 64px;
  position: relative;
  padding: 0 12px;
  gap: 20px;
}

/* Horizontal Progress Line */
.hiw-progress-line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: #e2e8f0;
  border-radius: 4px;
  z-index: 0;
  overflow: hidden;
}

.hiw-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f59e0b, #10b981);
  border-radius: 4px;
  animation: hiwProgressGrow 2s ease-out forwards;
  transform-origin: left;
}

@keyframes hiwProgressGrow {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* Individual Step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: hiwStepReveal 0.7s ease-out forwards;
}

.hiw-step-1 {
  animation-delay: 0.2s;
}

.hiw-step-2 {
  animation-delay: 0.45s;
}

.hiw-step-3 {
  animation-delay: 0.7s;
}

.hiw-step-4 {
  animation-delay: 0.95s;
}

@keyframes hiwStepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Node (the numbered circle on the timeline) */
.hiw-step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid #fff;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
  letter-spacing: -0.5px;
  font-family: 'Poppins', sans-serif;
}

.hiw-step-node span {
  position: relative;
  z-index: 2;
}

/* Pulsing ring on node */
.hiw-node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.hiw-step:hover .hiw-node-ring {
  opacity: 1;
  animation: hiwNodePulse 1.5s ease-out infinite;
}

@keyframes hiwNodePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.hiw-step:hover .hiw-step-node {
  transform: scale(1.15);
}

/* Node colors per step */
.hiw-step-1 .hiw-step-node {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hiw-step-2 .hiw-step-node {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.hiw-step-3 .hiw-step-node {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.hiw-step-4 .hiw-step-node {
  background: linear-gradient(135deg, #10b981, #059669);
}

.hiw-step-1 .hiw-node-ring {
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.hiw-step-2 .hiw-node-ring {
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.hiw-step-3 .hiw-node-ring {
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.hiw-step-4 .hiw-node-ring {
  border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Step Card */
.hiw-step-card {
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.hiw-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: height 0.4s ease;
}

.hiw-step-1 .hiw-step-card::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.hiw-step-2 .hiw-step-card::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.hiw-step-3 .hiw-step-card::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.hiw-step-4 .hiw-step-card::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.hiw-step:hover .hiw-step-card {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

.hiw-step:hover .hiw-step-card::before {
  height: 4px;
}

/* Card Icon */
.hiw-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.hiw-step-1 .hiw-card-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.15));
}

.hiw-step-2 .hiw-card-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.15));
}

.hiw-step-3 .hiw-card-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.15));
}

.hiw-step-4 .hiw-card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
}

.hiw-card-icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
}

.hiw-step-1 .hiw-card-icon svg {
  stroke: #3b82f6;
}

.hiw-step-2 .hiw-card-icon svg {
  stroke: #8b5cf6;
}

.hiw-step-3 .hiw-card-icon svg {
  stroke: #f59e0b;
}

.hiw-step-4 .hiw-card-icon svg {
  stroke: #10b981;
}

.hiw-step:hover .hiw-card-icon {
  transform: scale(1.1);
}

.hiw-step:hover .hiw-card-icon svg {
  transform: scale(1.1);
}

/* Card Content */
.hiw-card-content h3 {
  font-size: 1.2rem;
  font-weight: 750;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.3px;
}

.hiw-card-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 !important;
}

.hiw-step-1 .hiw-card-subtitle {
  color: #3b82f6;
}

.hiw-step-2 .hiw-card-subtitle {
  color: #8b5cf6;
}

.hiw-step-3 .hiw-card-subtitle {
  color: #f59e0b;
}

.hiw-step-4 .hiw-card-subtitle {
  color: #10b981;
}

.hiw-card-content p:last-child {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Bottom CTA */
.hiw-cta {
  text-align: center;
  margin-top: 56px;
}

.hiw-cta .btn {
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.hiw-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(37, 99, 235, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

/* HIW Responsive */
@media (max-width: 1024px) {
  .hiw-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 28px;
    padding: 0;
  }

  .hiw-progress-line {
    display: none;
  }

  .hiw-step-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hiw-section {
    padding: 70px 0 60px;
  }

  .hiw-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .hiw-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hiw-step-node {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .hiw-step-card {
    margin-top: 0;
    text-align: left;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .hiw-cta {
    margin-top: 40px;
  }

  .hiw-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== PAGE HEADER - PREMIUM LIGHT ===== */
.pg-header {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  padding: 120px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.pg-header-sold {
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 50%, #f0fdf4 100%);
}

.pg-header-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pg-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pg-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
}

.pg-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.pg-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 600;
}

.pg-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: dotPulse 2s ease-in-out infinite;
}

.pg-badge-sold {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.18);
  color: #059669;
}

.pg-body {
  padding: 0 0 80px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  padding: 0 4px;
  color: #94a3b8;
}

.filter-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: transparent;
}

.filter-search input::placeholder {
  color: #94a3b8;
}

.filter-group select {
  padding: 10px 36px 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #f8fafc;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-group select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.filter-reset:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.04);
}

.filter-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #64748b;
}

.filter-results strong {
  color: #0f172a;
}

/* ===== SOLD CARD STYLES ===== */
.sold-card {
  position: relative;
  opacity: 0.88;
}

.sold-card::before {
  background: linear-gradient(90deg, #64748b, #94a3b8) !important;
  background-size: 100% !important;
}

.sold-card:hover {
  opacity: 1;
}

.sold-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.sold-footer {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9) !important;
}

.sold-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.sold-notice svg {
  color: #94a3b8;
  flex-shrink: 0;
}

/* ===== SOLD TICKER MARQUEE - LIGHT ===== */
.sold-ticker {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f0fdf4, #ecfdf5, #f0fdf4);
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.sold-ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(5, 150, 105, 0.08);
  border-right: 1px solid rgba(5, 150, 105, 0.12);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sold-ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.sold-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.sold-ticker-scroll {
  display: flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.sold-ticker-scroll:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.sold-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-right: 1px solid rgba(5, 150, 105, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-niche {
  color: #1e3a5f;
  font-size: 0.85rem;
  font-weight: 600;
}

.ticker-meta {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 500;
}

.ticker-time {
  color: #94a3b8;
  font-size: 0.75rem;
  font-style: italic;
}

.ticker-sold {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
  .sold-ticker-label {
    padding: 10px 14px;
    font-size: 0.7rem;
  }

  .sold-ticker-item {
    padding: 10px 20px;
    gap: 8px;
  }

  .ticker-niche {
    font-size: 0.8rem;
  }

  .ticker-meta {
    display: none;
  }
}

@media (max-width: 480px) {
  .sold-ticker-label span:not(.sold-ticker-dot) {
    display: none;
  }
}


.leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 0;
}

/* Page Header + Filter Responsive */
@media (max-width: 768px) {
  .pg-header {
    padding: 110px 0 36px;
  }

  .pg-title {
    font-size: 1.6rem;
  }

  .pg-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    min-width: 100%;
  }

  .filter-group select {
    width: 100%;
  }

  .filter-reset {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .leads-grid {
    grid-template-columns: 1fr;
  }
}



.lead-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
  position: relative;
}

/* Animated gradient top border */
.lead-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4, #2d8659, #d4af37);
  background-size: 300% 100%;
  transition: all 0.4s ease;
}

.lead-card:hover::before {
  animation: gradientSlide 2s ease infinite;
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.lead-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.lead-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px -10px rgba(37, 99, 235, 0.15),
    0 10px 20px -5px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Card Header */
.lead-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
  margin-bottom: 20px;
}

.lead-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: "Poppins", sans-serif;
}

.budget-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.lead-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.lead-meta {
  background: rgba(44, 95, 125, 0.05);
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.meta-value {
  font-weight: 600;
  color: var(--text-primary);
}

/* Card Footer */
.lead-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  gap: 12px;
  flex-wrap: nowrap;
}

.price-tag {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  flex-shrink: 1;
  min-width: 0;
}

.price-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #166534;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* ===== LEAD DETAILS ===== */
/* ===== LEAD DETAILS ===== */
.lead-details {
  padding: 0 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-row {
  display: flex;
  gap: 12px;
}

/* Premium Detail Item Styling */
.detail-item {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.detail-item:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.detail-item.full-width {
  width: 100%;
}

/* Icon Containers */
.detail-icon {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Specific colors for icons */
.detail-name .detail-icon {
  background: #e0e7ff;
  color: #4338ca;
}

.detail-phone .detail-icon {
  background: #fee2e2;
  color: #b91c1c;
}

.detail-budget .detail-icon {
  background: #dcfce7;
  color: #15803d;
}

.detail-requirement .detail-icon {
  background: #fef3c7;
  color: #b45309;
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.detail-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", sans-serif;
}

/* Requirement Text - Allow wrap */
.detail-requirement .detail-value {
  white-space: normal;
  line-height: 1.4;
  font-size: 0.9rem;
  color: #334155;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blurred-text {
  font-family: "Courier New", monospace;
  letter-spacing: 1px;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  user-select: none;
}

.blurred-text::before {
  content: "🔒";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  filter: none;
  font-size: 0.85rem;
  opacity: 0.6;
}

.blurred-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(239, 68, 68, 0.08) 0%,
      rgba(239, 68, 68, 0.04) 100%);
  border-radius: 4px;
  z-index: -1;
}

/* ===== REVIEWS SECTION - PREMIUM REDESIGN ===== */
.reviews-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.reviews-header {
  text-align: center;
  margin-bottom: 20px;
}

/* Trust Stats Bar */
.reviews-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 60px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stat-icon {
  font-size: 1.4rem;
}

.trust-stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-stat-info strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  font-family: 'Poppins', sans-serif;
}

.trust-stat-info span {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 16px 0;
}

/* Edge fade masks */
.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.reviews-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f4f6f8 0%, transparent 100%);
}

.reviews-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f4f6f8 0%, transparent 100%);
}

/* Carousel track */
.reviews-carousel {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.reviews-carousel:hover {
  animation-play-state: paused;
}

/* Row 1: scrolls left */
.reviews-row-1 {
  animation: scrollLeft 40s linear infinite;
}

/* Row 2: scrolls right (reverse) */
.reviews-row-2 {
  animation: scrollRight 45s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-380px * 4 - 96px));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-380px * 4 - 96px));
  }

  100% {
    transform: translateX(0);
  }
}

/* Review Card */
.review-card {
  background: #ffffff;
  padding: 28px 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 356px;
  max-width: 356px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: height 0.4s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-card:hover::before {
  height: 4px;
}

/* Accent colors for each card */
.review-accent-blue::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.review-accent-purple::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.review-accent-green::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.review-accent-amber::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.review-accent-teal::before {
  background: linear-gradient(90deg, #14b8a6, #5eead4);
}

.review-accent-rose::before {
  background: linear-gradient(90deg, #f43f5e, #fb7185);
}

.review-accent-indigo::before {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.review-accent-orange::before {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

/* Card top row */
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.review-verified svg {
  color: #059669;
}

/* Stars */
.review-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1rem;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.star.filled {
  color: #fbbf24;
  text-shadow: 0 1px 4px rgba(251, 191, 36, 0.3);
}

/* Review Text */
.review-text {
  color: #334155;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Deal Tag */
.review-deal-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(22, 163, 74, 0.12);
  letter-spacing: 0.2px;
}

/* Reviewer Info */
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* Color-coded avatars */
.avatar-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.avatar-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.avatar-green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.avatar-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.avatar-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
}

.avatar-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 3px 10px rgba(244, 63, 94, 0.3);
}

.avatar-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.avatar-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.3);
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-info strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.reviewer-info span {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Reviews Responsive */
@media (max-width: 768px) {
  .reviews-trust-bar {
    flex-direction: column;
    gap: 14px;
    padding: 20px 28px;
    border-radius: 18px;
  }

  .trust-divider {
    width: 60%;
    height: 1px;
  }

  .trust-stat {
    justify-content: center;
  }

  .trust-stat-info {
    text-align: center;
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
    padding: 24px 22px 20px;
  }

  .reviews-carousel-wrapper::before,
  .reviews-carousel-wrapper::after {
    width: 40px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, #0b1120 0%, #131b2e 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .sec-header {
  margin-bottom: 36px;
}

.cta-section .btn {
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

/* ===== PREMIUM PRICING CARDS ===== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

.pricing-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 10px 30px -5px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.15),
    0 8px 20px -5px rgba(0, 0, 0, 0.08);
}

/* Glow effect behind card */
.pricing-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.5s ease;
}

.pricing-card:hover .pricing-card-glow {
  height: 6px;
  filter: blur(4px);
}

/* Basic card accent */
.pricing-basic .pricing-card-glow {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #7dd3fc);
}

.pricing-basic .pricing-tier-dot {
  background: #0ea5e9;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.pricing-basic:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow:
    0 25px 60px -12px rgba(14, 165, 233, 0.15),
    0 8px 20px -5px rgba(0, 0, 0, 0.06);
}

/* Business card accent */
.pricing-business .pricing-card-glow {
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
}

.pricing-business .pricing-tier-dot {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.pricing-business:hover {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 25px 60px -12px rgba(16, 185, 129, 0.15),
    0 8px 20px -5px rgba(0, 0, 0, 0.06);
}

/* Premium card accent */
.pricing-premium .pricing-card-glow {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #fcd34d);
}

.pricing-premium .pricing-tier-dot {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.pricing-premium:hover {
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow:
    0 25px 60px -12px rgba(245, 158, 11, 0.15),
    0 8px 20px -5px rgba(0, 0, 0, 0.06);
}

/* Featured card (Business) */
.pricing-featured {
  border: 2px solid rgba(16, 185, 129, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  transform: scale(1.04);
  box-shadow:
    0 8px 30px -5px rgba(16, 185, 129, 0.15),
    0 15px 40px -10px rgba(0, 0, 0, 0.08);
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-12px);
}

.pricing-featured .pricing-card-glow {
  height: 5px;
}

/* Popular tag */
.pricing-popular-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
  animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
  }

  50% {
    box-shadow: 0 3px 20px rgba(16, 185, 129, 0.55);
  }
}

/* Tier badge */
.pricing-tier-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.pricing-tier-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Budget range */
.pricing-budget-range {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-budget-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-budget-value {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

/* Divider */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 4px 0;
}

/* Prices section */
.pricing-prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pricing-standard {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-wallet {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  position: relative;
}

.pricing-price-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-price-amount {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.pricing-standard-amount {
  font-size: 2rem;
  color: #334155;
}

.pricing-wallet-amount {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-save-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Pricing CTA button */
.pricing-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 0.95rem;
  text-align: center;
}

/* Footer tip */
.pricing-footer-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 28px;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.04) 0%,
      rgba(16, 185, 129, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.pricing-tip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pricing-footer-tip p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.pricing-tip-highlight {
  color: #059669;
  font-weight: 700;
}

.pricing-footer-tip strong {
  color: #0f172a;
}

.pricing-tip-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #2563eb;
  transition: all 0.3s ease;
}

.pricing-tip-link:hover {
  color: #1d4ed8;
  border-bottom-style: solid;
}

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-featured:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 32px 24px 28px;
  }

  .pricing-footer-tip {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ===== ENHANCED TERMS PAGE ===== */
.legal-container {
  position: relative;
}

.legal-container h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-container h2::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #2563eb 0%, #06b6d4 100%);
  border-radius: 4px;
  flex-shrink: 0;
}

.legal-content .category-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 18px 28px;
  border-radius: 14px;
  margin: 12px 0;
  border-left: 4px solid #2563eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.legal-content .category-box:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  border-left-color: #1d4ed8;
}

.legal-content .category-box:nth-child(2) {
  border-left-color: #10b981;
}

.legal-content .category-box:nth-child(2):hover {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.legal-content .category-box:nth-child(3) {
  border-left-color: #f59e0b;
}

.legal-content .category-box:nth-child(3):hover {
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.1);
}

.legal-content .policy-alert {
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
  border: 1px solid #fed7aa;
  color: #92400e;
  padding: 24px 28px;
  border-radius: 16px;
  margin: 28px 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
  position: relative;
  overflow: hidden;
}

.legal-content .policy-alert::before {
  content: "⚠️";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.4rem;
  opacity: 0.2;
}

/* ===== ENHANCED LOGIN / REGISTER PAGES ===== */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 50%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 50%),
    radial-gradient(ellipse at 80% 50%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.1),
    0 10px 30px -8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4, #10b981, #f59e0b);
  background-size: 300% 100%;
  animation: gradientSlide 4s ease infinite;
}

.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 8px;
}

.auth-card .auth-logo h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 500;
}

.auth-card input[type="text"],
.auth-card input[type="password"],
.auth-card input[type="email"] {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-card input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  background: #ffffff;
}

.auth-card label {
  font-weight: 600;
  color: #334155;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.auth-card .btn {
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
}

.auth-card .auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #64748b;
}

.auth-card .auth-footer a {
  color: #2563eb;
  font-weight: 600;
}

.auth-card .auth-footer a:hover {
  color: #1d4ed8;
}

.auth-message-success {
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  color: #166534;
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.auth-message-error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.auth-terms {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 18px;
  text-align: center;
  line-height: 1.5;
}

.auth-terms a {
  color: #059669;
  font-weight: 600;
}

/* ===== FOOTER - PREMIUM COMPACT ===== */
.site-footer {
  font-family: 'Inter', 'Poppins', sans-serif;
  margin-top: auto;
}

/* --- Main Strip --- */
.footer-main-strip {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 50%, #f1f5f9 100%);
  padding: 14px 0;
  position: relative;
  border-top: none;
}

.footer-main-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b, #10b981);
  background-size: 200% 100%;
  animation: footerGradientSlide 6s ease infinite;
}

@keyframes footerGradientSlide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Brand */
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-brand-link:hover {
  transform: scale(1.03);
}

.footer-brand-emoji {
  font-size: 1.1rem;
}

.footer-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.3px;
}

/* Vertical Divider */
.footer-vr {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
  flex-shrink: 0;
}

/* Nav Links */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1;
}

.footer-nav a {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.footer-nav a:hover {
  color: #1e293b;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.footer-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.footer-social-icon:nth-child(1):hover {
  background: rgba(29, 161, 242, 0.1);
  border-color: rgba(29, 161, 242, 0.25);
  color: #1da1f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.15);
}

.footer-social-icon:nth-child(2):hover {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.25);
  color: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.15);
}

.footer-social-icon:nth-child(3):hover {
  background: rgba(228, 64, 95, 0.1);
  border-color: rgba(228, 64, 95, 0.25);
  color: #e4405f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 64, 95, 0.15);
}

.footer-social-icon:nth-child(4):hover {
  background: rgba(234, 67, 53, 0.1);
  border-color: rgba(234, 67, 53, 0.25);
  color: #ea4335;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.15);
}

/* --- Bottom Strip --- */
.footer-bottom-strip {
  background: #1e293b;
  padding: 8px 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  color: #475569;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Trust Pills */
.footer-trust-pills {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-trust-pills span {
  font-size: 0.65rem;
  color: #94a3b8;
  padding: 2px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Legal Links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: #475569;
  font-size: 0.7rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #94a3b8;
}

/* --- Footer Responsive --- */
@media (max-width: 768px) {
  .footer-main-strip {
    padding: 16px 0;
  }

  .footer-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-vr {
    display: none;
  }

  .footer-nav {
    justify-content: center;
    gap: 12px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-trust-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 8px;
  }

  .footer-nav a {
    font-size: 0.74rem;
  }

  .footer-trust-pills span {
    font-size: 0.6rem;
    padding: 2px 7px;
  }
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* ===== CARDS (for other pages) ===== */
.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 15px;
}

th {
  text-align: left;
  padding: 16px;
  color: var(--accent-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
  background: linear-gradient(135deg,
      rgba(44, 95, 125, 0.03) 0%,
      rgba(44, 95, 125, 0.01) 100%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(44, 95, 125, 0.02);
}

/* ===== FORMS ===== */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 18px;
  background: #fafafa;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* ===== UTILITIES ===== */
.text-green {
  color: var(--success-color);
  font-weight: 600;
}

.text-red {
  color: var(--warning-color);
  font-weight: 600;
}

.text-muted {
  color: var(--text-muted);
}

/* ===== BADGES ===== */
.badge {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: linear-gradient(135deg,
      rgba(45, 134, 89, 0.15) 0%,
      rgba(45, 134, 89, 0.1) 100%);
  color: var(--success-color);
  border: 1px solid rgba(45, 134, 89, 0.2);
}

.badge-sold {
  background: linear-gradient(135deg,
      rgba(199, 137, 63, 0.15) 0%,
      rgba(199, 137, 63, 0.1) 100%);
  color: var(--warning-color);
  border: 1px solid rgba(199, 137, 63, 0.2);
}

/* ===== HAMBURGER MENU ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .features-section,
  .how-it-works-section,
  .reviews-section {
    padding: 80px 0;
  }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {

  /* --- Top Header --- */
  .top-header {
    padding: 6px 0;
    font-size: 0.72rem;
  }

  .top-header-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }

  .top-header-email-text {
    display: none;
  }

  .top-header-left,
  .top-header-right {
    gap: 8px;
  }

  .top-header-btn {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .top-header-user {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  /* --- Main Header + Hamburger --- */
  .main-header {
    padding: 12px 0;
  }

  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  .logo h1 {
    font-size: 1.4rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 998;
    gap: 0;
  }

  .main-nav.nav-open {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-nav .nav-link,
  .main-nav .cart-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .main-nav .nav-link:hover,
  .main-nav .cart-link:hover {
    background: rgba(37, 99, 235, 0.06);
  }

  .main-nav .nav-link::after {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    padding: 60px 0 50px;
  }

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    width: 100%;
  }

  .hero-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  }

  .hide-mobile {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  /* --- General Sections --- */
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 16px;
  }

  .section-title,
  .sec-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }

  .features-section,
  .how-it-works-section,
  .reviews-section {
    padding: 60px 0;
  }

  .sec-header {
    margin-bottom: 36px;
  }

  .sec-desc {
    font-size: 0.92rem;
  }

  /* --- Leads Grid --- */
  .leads-grid {
    grid-template-columns: 1fr;
  }

  /* --- Page Header --- */
  .page-header {
    padding: 50px 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  /* --- Cards & Tables --- */
  .card {
    padding: 20px;
  }

  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 10px 8px;
  }

  /* --- Buttons --- */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* --- Auth Pages --- */
  .auth-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  /* --- Contact --- */
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .contact-form,
  .contact-info {
    padding: 30px !important;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .top-header-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-title {
    font-size: 1.9rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px 5px 8px;
  }

  .hero-btn-primary {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .section-title,
  .sec-title {
    font-size: 1.5rem;
  }

  .features-section,
  .how-it-works-section,
  .reviews-section {
    padding: 48px 0;
  }

  .page-header {
    padding: 36px 0;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 12px;
  }

  .card {
    padding: 16px;
    border-radius: 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .auth-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  /* Make tables scrollable */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== PAGE HEADER - LIGHT ===== */
.page-header {
  background:
    radial-gradient(circle at 10% 20%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(6, 182, 212, 0.06) 0%,
      transparent 25%),
    linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  padding: 80px 0;
  text-align: center;
  color: #1e3a5f;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

/* Abstract Background Shapes */
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(6, 182, 212, 0.06) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
  color: #1e3a5f;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.25rem;
  margin: 0 auto;
  opacity: 1;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: #64748b;
}

/* ===== SOLD LEADS SECTION ===== */
.sold-leads-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sold-lead-card {
  position: relative;
  opacity: 0.85;
  filter: grayscale(20%);
}

.sold-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  z-index: 10;
}

.sold-lead-card .lead-header h3 {
  color: #64748b;
}

.sold-lead-card .detail-value {
  color: #64748b;
}

.sold-lead-card .blurred-text {
  color: #94a3b8;
}

.sold-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-radius: 10px;
  width: 100%;
}

.sold-icon {
  font-size: 1.2rem;
}

.sold-text {
  color: #991b1b;
  font-weight: 600;
  font-size: 0.9rem;
}

.sold-lead-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Keep sold cards slightly muted but still attractive */
.sold-lead-card .price-tag {
  opacity: 0.6;
}

/* ===== PREMIUM ADD TO CART BUTTON ===== */
.lead-footer .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.25),
    0 2px 4px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  /* Top highlight */
  position: relative;
  overflow: hidden;
  min-width: 160px;
  justify-content: center;
}

/* Shine effect */
.lead-footer .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.lead-footer .btn-primary:active::before {
  transition: none;
  /* Instant reset for click feeling */
}

/* Hover State */
.lead-footer .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.35),
    0 4px 8px rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.lead-footer .btn-primary:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

/* Active State */
.lead-footer .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* Focus State */
.lead-footer .btn-primary:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.3),
    0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ===== AUTH PAGES - PREMIUM SPLIT LAYOUT ===== */
.auth-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ---- Left Brand Panel ---- */
/* ---- Left Brand Panel - Light ---- */
.auth-brand-panel {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  border-right: 1px solid rgba(37, 99, 235, 0.1);
}

.auth-brand-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  /* Reduced mask intensity for cleaner look on light bg */
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.auth-brand-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.auth-brand-glow-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -10%;
  background: rgba(59, 130, 246, 0.12);
  animation: heroFloat 20s ease-in-out infinite;
}

.auth-brand-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: -10%;
  background: rgba(139, 92, 246, 0.08);
  animation: heroFloat 25s ease-in-out infinite reverse;
}

.auth-brand-glow-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 185, 129, 0.06);
  animation: heroFloat 18s ease-in-out infinite 3s;
}

.auth-brand-content {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.auth-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 48px;
}

.auth-logo-icon {
  font-size: 1.5rem;
}

.auth-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  color: #1e3a5f;
  /* Fallback */
}

.auth-brand-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.auth-heading-accent {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-brand-tagline {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 36px;
  font-weight: 500;
}

/* Testimonial Card */
/* Testimonial Card */
.auth-testimonial {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.auth-testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.auth-testimonial p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 16px;
  font-style: italic;
  font-weight: 500;
}

.auth-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.auth-testimonial-author strong {
  display: block;
  color: #1e3a5f;
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-testimonial-author span {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
}

/* Stats Showcase (Register) */
.auth-stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.auth-stat-card {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.auth-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.auth-stat-text {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Brand Stats */
.auth-brand-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-brand-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.auth-brand-stat-icon {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Right Form Panel ---- */
.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #ffffff;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 420px;
}

/* Mobile Logo */
.auth-mobile-logo {
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 40px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
}

.auth-form-header {
  margin-bottom: 36px;
}

.auth-form-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.auth-form-header p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

/* Alert Banners */
.auth-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInDown 0.4s ease;
}

.auth-alert svg {
  flex-shrink: 0;
}

.auth-alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.auth-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.auth-input-wrap input {
  width: 100%;
  padding: 16px 48px 16px 48px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input-wrap input::placeholder {
  color: #94a3b8;
}

.auth-input-wrap input:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.auth-input-wrap input:focus~.auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
  color: #3b82f6;
}

.auth-input-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  padding-left: 2px;
}

/* Password Toggle */
.auth-toggle-pw {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.auth-toggle-pw:hover {
  color: #3b82f6;
}

/* Password Strength */
.auth-pw-strength {
  display: none;
  align-items: center;
  gap: 10px;
}

.auth-pw-bar {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.auth-pw-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.auth-pw-label {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Submit Button */
.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.auth-submit-btn:hover::before {
  opacity: 1;
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.auth-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Terms */
.auth-terms {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.auth-terms a {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
}

.auth-terms a:hover {
  text-decoration: underline;
}

/* Footer */
.auth-form-footer {
  margin-top: 32px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.auth-form-footer p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.auth-form-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.auth-form-footer a:hover {
  text-decoration: underline;
}

/* Auth Responsive */
@media (max-width: 1024px) {
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    display: none;
  }

  .auth-form-panel {
    padding: 40px 24px;
    min-height: 100vh;
  }

  .auth-mobile-logo {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .auth-form-header h1 {
    font-size: 1.6rem;
  }

  .auth-input-wrap input {
    padding: 14px 14px 14px 44px;
    font-size: 0.95rem;
  }

  .auth-submit-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ===== DEVELOPER DASHBOARD - LIGHT ===== */
.dash-header {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  padding: 120px 0 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.dash-header-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dash-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dash-greeting {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.dash-greeting strong {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.dash-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dash-header-btn:hover {
  background: #f0f7ff;
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.dash-container {
  padding: 0 0 80px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

/* Alerts */
.dash-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 24px;
  animation: fadeInDown 0.4s ease;
  position: relative;
}

.dash-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.dash-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.dash-alert-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dash-alert strong {
  display: block;
  margin-bottom: 4px;
}

.dash-alert p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.dash-alert-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.dash-alert-close:hover {
  opacity: 1;
}

/* Stats Grid */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dash-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.dash-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
  color: #3b82f6;
}

.dash-stat-icon-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.04));
  color: #8b5cf6;
}

.dash-stat-icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.04));
  color: #f59e0b;
}

.dash-stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.dash-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.dash-stat-green {
  color: #059669;
}

/* Wallet Card */
.dash-wallet-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.dash-wallet-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #0f172a;
}

.dash-wallet-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.dash-wallet-title svg {
  color: #3b82f6;
}

.dash-wallet-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.dash-wallet-input-group {
  margin-bottom: 16px;
}

.dash-wallet-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.dash-wallet-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.dash-wallet-currency {
  position: absolute;
  left: 16px;
  color: #64748b;
  font-weight: 700;
  font-size: 1.1rem;
}

.dash-wallet-input-wrap input {
  width: 100%;
  padding: 14px 16px 14px 36px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.3s ease;
}

.dash-wallet-input-wrap input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.dash-wallet-presets {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dash-preset-btn {
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.dash-preset-btn:hover {
  border-color: #3b82f6;
  color: #2563eb;
  background: rgba(59, 130, 246, 0.04);
}

.dash-add-funds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.dash-add-funds-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.dash-add-funds-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.dash-btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dash-wallet-terms {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 14px 0 0;
  line-height: 1.5;
  text-align: center;
}

.dash-wallet-terms a {
  color: #3b82f6;
  text-decoration: none;
}

.dash-wallet-terms a:hover {
  text-decoration: underline;
}

/* Section Header */
.dash-section {
  margin-bottom: 40px;
}

.dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.dash-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.dash-section-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.dash-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.dash-section-link:hover {
  gap: 10px;
}

/* Empty State */
.dash-empty {
  text-align: center;
  padding: 72px 40px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 24px;
  border: 2px dashed #e2e8f0;
}

.dash-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.dash-empty h3 {
  font-size: 1.3rem;
  color: #475569;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.dash-empty p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0 0 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.dash-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.dash-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

/* Lead Cards */
.dash-leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.dash-lead-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.dash-lead-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.dash-lead-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.dash-lead-niche {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.dash-lead-budget {
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
  color: #2563eb;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.dash-lead-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
}

.dash-lead-contact {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
  border: 1.5px solid rgba(16, 185, 129, 0.18);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}

.dash-lead-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.dash-lead-contact-grid {
  display: grid;
  gap: 14px;
}

.dash-lead-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-contact-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.dash-contact-phone {
  font-size: 1.05rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dash-contact-phone:hover {
  color: #047857;
}

.dash-lead-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.82rem;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-lead-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

.dash-lead-paid {
  color: #059669;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.06);
  padding: 4px 12px;
  border-radius: 8px;
}

/* Dashboard Responsive */
@media (max-width: 1200px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .dash-wallet-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .dash-header {
    padding: 110px 0 40px;
  }

  .dash-greeting {
    font-size: 1.4rem;
  }

  .dash-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dash-stat-card {
    padding: 20px 16px;
  }

  .dash-stat-value {
    font-size: 1.3rem;
  }

  .dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .dash-leads-grid {
    grid-template-columns: 1fr;
  }

  .dash-wallet-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }

  .dash-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dash-lead-top {
    flex-direction: column;
  }
}

/* ===== PREMIUM FOOTER - LIGHT ===== */
.site-footer {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  color: #475569;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-border-gradient {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f472b6, #10b981);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Brand Column */
.footer-brand-col {
  padding-right: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-icon {
  font-size: 1.5rem;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.footer-socials a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Headings */
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #2563eb;
  padding-left: 4px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 2px;
}

.footer-contact a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #2563eb;
}

/* Trust Badges - Row */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 36px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: white;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.badge-item:hover {
  background: #f0f7ff;
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.badge-icon {
  font-size: 1.15rem;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    gap: 12px;
  }

  .badge-item {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}

/* ================================================================
   COMPREHENSIVE RESPONSIVE FIXES
   ================================================================ */

/* --- Wallet Page (inline grid fix) --- */
@media (max-width: 768px) {
  div[style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* --- Admin Dashboard --- */
@media (max-width: 1024px) {
  .admin-grid,
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .admin-grid,
  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns: repeat(3"],
  div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Admin table horizontal scroll */
  .card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .card table {
    min-width: 600px;
  }
}

/* --- Checkout Page --- */
@media (max-width: 768px) {
  .checkout-container,
  div[style*="max-width: 900px"] {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Order summary item rows */
  div[style*="display: flex"][style*="justify-content: space-between"][style*="padding: 15px 0"] {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .payment-option {
    padding: 16px !important;
  }

  .option-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.4rem !important;
  }

  .option-name {
    font-size: 0.95rem !important;
  }

  .btn-pay {
    padding: 16px !important;
    font-size: 1rem !important;
  }
}

/* --- Contact Page --- */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .contact-form,
  .contact-info {
    padding: 24px !important;
  }
}

/* --- Lead Card Detail Rows --- */
@media (max-width: 600px) {
  .detail-row {
    flex-direction: column;
  }

  .detail-item {
    padding: 10px 12px;
  }

  .lead-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 20px 0 20px;
  }

  .lead-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .price-tag {
    align-items: center;
  }

  .lead-footer .btn-primary {
    width: 100%;
    min-width: unset;
  }

  .lead-details {
    padding: 0 16px 16px;
  }
}

/* --- General Overflow Fix --- */
img,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll on all pages */
body,
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* --- Inline style overrides for common grid patterns --- */
@media (max-width: 768px) {
  div[style*="display: grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Fix any inline flex rows that need wrapping */
  div[style*="display: flex"][style*="gap: 20px"],
  div[style*="display: flex"][style*="gap: 24px"],
  div[style*="display: flex"][style*="gap: 28px"],
  div[style*="display: flex"][style*="gap: 40px"] {
    flex-wrap: wrap;
  }
}

/* --- About Page Sections --- */
@media (max-width: 768px) {
  .about-grid,
  .about-features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- Cart Page --- */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .cart-item {
    padding: 16px;
  }
}

/* --- Change Password Page --- */
@media (max-width: 480px) {
  .auth-card,
  .card {
    margin-left: 8px;
    margin-right: 8px;
  }
}