/* ============================================
   DriveMindAI — Design System v2
   Colors: Red #2563EB | Black #09090f | White #FFFFFF
   ============================================ */

:root {
  --red: #2563EB;
  --red-dark: #B5152A;
  --red-light: #4ade80;
  --black: #09090f;
  --black-2: #0e0e16;
  --black-3: #141420;
  --black-4: #1c1c2a;
  --gray-dark: #3a3a4f;
  --gray: #6b6b80;
  --gray-light: #a8aabe;
  --gray-border: rgba(255,255,255,0.1);
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-60: rgba(255,255,255,0.6);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-red: 0 4px 32px rgba(224,30,55,0.4);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; color: var(--white); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--white); }
h3 { font-size: 1.3rem; font-weight: 600; color: var(--white); }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--white); }
p { color: var(--gray-light); line-height: 1.7; }

.text-red { color: var(--red); }
.text-center { text-align: center; }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 140px 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: #9aa5b8; max-width: 580px; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(224,30,55,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); background: rgba(224,30,55,0.06); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- Cards ---- */
.card {
  background: var(--black-3);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--red); }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-red { background: rgba(224,30,55,0.18); color: var(--red-light); border: 1px solid rgba(224,30,55,0.35); }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(9,9,15,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo span { color: var(--white); }
.logo span em { color: var(--red); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #8892a4;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(224,30,55,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(224,30,55,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(9,9,15,0.98) 42%, rgba(9,9,15,0.72) 100%),
    linear-gradient(to bottom, rgba(9,9,15,0.5) 0%, rgba(9,9,15,0.15) 40%, rgba(9,9,15,0.88) 100%),
    rgba(9,9,15,0.35);
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(224,30,55,0.14);
  border: 1px solid rgba(224,30,55,0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.hero-eyebrow::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { margin-bottom: 24px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #16a34a 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.18rem;
  color: #a8b2c4;
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: #6b7280; margin-top: 5px; }

/* Hero visual / Chat Mockup */
.hero-visual { position: relative; }
.chat-mockup {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(224,30,55,0.12);
}
.chat-header {
  background: var(--black-4);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header-info .name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.chat-header-info .status { font-size: 0.75rem; color: #22c55e; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.msg { display: flex; gap: 10px; max-width: 90%; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.87rem;
  line-height: 1.55;
}
.msg.ai .msg-bubble { background: var(--black-4); color: var(--white-90); border-radius: 4px 12px 12px 12px; }
.msg.user .msg-bubble { background: var(--red); color: var(--white); border-radius: 12px 4px 12px 12px; }
.msg-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--black-4); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 4px; }
.msg.user .msg-icon { background: var(--red-dark); }
.typing { display: flex; gap: 4px; padding: 12px 16px; background: var(--black-4); border-radius: 4px 12px 12px 12px; width: fit-content; }
.typing span { width: 6px; height: 6px; background: #555; border-radius: 50%; animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { transform: scale(1); opacity: 0.4; } 40% { transform: scale(1.3); opacity: 1; } }

.floating-badge {
  position: absolute;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  font-size: 0.82rem;
}
.floating-badge .badge-icon { font-size: 1.2rem; }
.floating-badge .badge-text strong { display: block; color: var(--white); font-size: 0.85rem; }
.floating-badge .badge-text span { color: #6b7280; font-size: 0.78rem; }
.badge-1 { top: -20px; right: -20px; }
.badge-2 { bottom: -20px; left: -20px; }

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
  background: #0b0b12;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
}
.social-proof-label {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #3d4455;
  margin-bottom: 20px;
}
.social-proof-logos {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  align-items: center;
}
.social-proof-logos span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2a2d3a;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}
.social-proof-logos span:hover { color: #4b5563; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, #130912 0%, #1a0c16 50%, #130912 100%);
  border-top: 1px solid rgba(224,30,55,0.3);
  border-bottom: 1px solid rgba(224,30,55,0.15);
  padding: 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.6), transparent);
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 52px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.stats-bar-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(224,30,55,0.4);
}
.stats-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8892a4;
}
.stats-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
  margin: 16px 0;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  background: #0c0c14;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.5), transparent);
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: #131320;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  border-color: rgba(224,30,55,0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 32px rgba(224,30,55,0.08);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(224,30,55,0.2) 0%, rgba(224,30,55,0.08) 100%);
  border: 1px solid rgba(224,30,55,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(224,30,55,0.15);
}
.why-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.92rem;
  color: #8e97ac;
  line-height: 1.75;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: #09090f;
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.5), transparent);
}
.features-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.features-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.features-image-col {
  position: sticky;
  top: 100px;
}
.features-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.features-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.features-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-list .feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
}
.feature-card {
  background: #131320;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(224,30,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 28px rgba(224,30,55,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(224,30,55,0.2) 0%, rgba(224,30,55,0.08) 100%);
  border: 1px solid rgba(224,30,55,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(224,30,55,0.14);
  flex-shrink: 0;
}
.features-list .feature-icon {
  width: 48px; height: 48px;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.feature-text { flex: 1; }
.feature-card h3 { margin-bottom: 10px; color: var(--white); font-size: 1.1rem; }
.feature-text h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: 0.92rem; line-height: 1.75; color: #8e97ac; }
.feature-text p { font-size: 0.88rem; margin-bottom: 12px; color: #8e97ac; }
.feature-bullets {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: #8892a4;
}
.feature-bullets li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.feature-text .feature-bullets { padding-top: 12px; margin-top: 8px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  background: #0e0e1a;
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.4), transparent);
}
.how-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  background: #131320;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 32px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step:hover {
  border-color: rgba(224,30,55,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.6), 0 0 28px rgba(224,30,55,0.1);
}
.step:hover::after { opacity: 1; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224,30,55,0.22) 0%, rgba(224,30,55,0.08) 100%);
  border: 2px solid rgba(224,30,55,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 auto 28px;
  box-shadow: 0 0 24px rgba(224,30,55,0.25);
}
.step h3 { margin-bottom: 14px; color: var(--white); font-size: 1.15rem; }
.step p { font-size: 0.92rem; color: #8e97ac; line-height: 1.75; }
.step-connector { display: none; }
.how-cta { text-align: center; margin-top: 64px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  background: #0a0a12;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.5), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #131320;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.pricing-card.featured {
  background: linear-gradient(145deg, #1e0e16 0%, #180b12 100%);
  border-color: rgba(224,30,55,0.55);
  box-shadow: 0 0 0 1px rgba(224,30,55,0.18), 0 24px 64px rgba(224,30,55,0.18);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(224,30,55,0.35), 0 32px 80px rgba(224,30,55,0.22);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(224,30,55,0.5);
}
.pricing-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #5c6070; margin-bottom: 16px; }
.pricing-card.featured .pricing-name { color: rgba(224,30,55,0.85); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-dollar { font-size: 1.5rem; font-weight: 700; color: var(--white); align-self: flex-start; margin-top: 8px; }
.price-num { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-period { font-size: 0.9rem; color: #5c6070; }
.pricing-desc { font-size: 0.88rem; color: #8e97ac; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #c8d0de;
}
.pricing-features li.disabled { color: #3a3d4a; }
.check { color: #22c55e; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.cross { color: #2e3040; flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: #0c0c14;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,30,55,0.4), transparent);
}
.testimonials-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: grayscale(30%) brightness(0.3);
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,20,0.97) 0%,
    rgba(12,12,20,0.90) 50%,
    rgba(12,12,20,0.97) 100%
  );
  z-index: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: #141422;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-size: 6rem;
  color: rgba(224,30,55,0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(224,30,55,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.6), 0 0 28px rgba(224,30,55,0.08);
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-text { font-size: 0.93rem; color: #c0c8d8; margin-bottom: 24px; font-style: italic; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,30,55,0.35);
}
.author-name { font-weight: 600; font-size: 0.92rem; color: var(--white); }
.author-role { font-size: 0.78rem; color: #5c6070; margin-top: 2px; }

/* Section header z-index for testimonials */
.testimonials-section .section-header,
.testimonials-section .section-header * { position: relative; z-index: 2; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #130a12 0%, #1e0e18 50%, #130a12 100%);
  border-top: 1px solid rgba(224,30,55,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(224,30,55,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 18px; color: var(--white); }
.cta-inner p { margin-bottom: 40px; font-size: 1.08rem; color: #8e97ac; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060609;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 24px 36px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand p { font-size: 0.87rem; color: #5c6070; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #4a4d5a; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: #6b7080; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #3a3d4a;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(224,30,55,0.14) 0%, transparent 60%),
    var(--black);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 32px; }
.auth-title { font-size: 1.6rem; font-weight: 700; text-align: center; margin-bottom: 8px; color: var(--white); }
.auth-sub { text-align: center; font-size: 0.9rem; color: var(--gray-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white-90); margin-bottom: 8px; }
.form-input {
  width: 100%;
  background: var(--black-4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--red); }
.form-input::placeholder { color: #4a4d5a; }
.form-input.error { border-color: var(--red); }
.form-error {
  background: rgba(224,30,55,0.1);
  border: 1px solid rgba(224,30,55,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.87rem;
  color: #ff6b6b;
  margin-bottom: 20px;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.87rem;
  color: #22c55e;
  margin-bottom: 20px;
  display: none;
}
.form-success.show { display: block; }
.auth-divider { text-align: center; font-size: 0.85rem; color: var(--gray); margin: 24px 0; }
.auth-switch { text-align: center; font-size: 0.87rem; color: var(--gray-light); margin-top: 24px; }
.auth-switch a { color: var(--red); font-weight: 600; }
.forgot-link { font-size: 0.82rem; color: var(--gray-light); float: right; margin-top: -4px; }
.forgot-link:hover { color: var(--red); }

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: var(--black);
}
.sidebar {
  width: 260px;
  background: #0d0d16;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 50;
  overflow-y: auto;
}
.sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-nav { padding: 20px 12px; flex: 1; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7080;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
}
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.nav-item.active { background: rgba(224,30,55,0.14); color: var(--white); }
.nav-item .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.nav-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 12px 8px;
}
.sidebar-footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.user-info { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius); }
.user-avatar {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.user-meta .name { font-size: 0.87rem; font-weight: 600; color: var(--white); }
.user-meta .role { font-size: 0.75rem; color: var(--gray); }
.dashboard-main { margin-left: 260px; flex: 1; display: flex; flex-direction: column; }
.dashboard-header {
  background: #0d0d16;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.dashboard-header h1 { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.panel { display: none; padding: 32px; }
.panel.active { display: block; }
.chat-panel { display: none; flex-direction: column; height: calc(100vh - 69px); padding: 0; }
.chat-panel.active { display: flex; }
.chat-messages { flex: 1; overflow-y: auto; padding: 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.chat-message { display: flex; gap: 12px; max-width: 780px; }
.chat-message.user { align-self: flex-end; flex-direction: row-reverse; max-width: 680px; }
.chat-msg-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.chat-message.ai .chat-msg-avatar { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.chat-message.user .chat-msg-avatar { background: #2a2d3a; }
.chat-msg-name { font-size: 0.75rem; color: var(--gray); margin-bottom: 6px; font-weight: 600; }
.chat-message.user .chat-msg-name { text-align: right; }
.chat-msg-bubble { padding: 14px 18px; border-radius: 4px 14px 14px 14px; font-size: 0.9rem; line-height: 1.65; max-width: 100%; }
.chat-message.ai .chat-msg-bubble { background: var(--black-4); color: var(--white); }
.chat-message.user .chat-msg-bubble { background: var(--red); color: var(--white); border-radius: 14px 4px 14px 14px; }
.chat-msg-bubble strong { color: var(--white); }
.chat-msg-bubble ul, .chat-msg-bubble ol { padding-left: 18px; }
.chat-msg-bubble li { margin-bottom: 4px; }
.chat-msg-bubble code { background: rgba(255,255,255,0.1); padding: 1px 6px; border-radius: 4px; font-size: 0.85em; font-family: monospace; }
.chat-input-area { padding: 20px 32px; background: #0d0d16; border-top: 1px solid rgba(255,255,255,0.08); }
.chat-input-row { display: flex; gap: 12px; align-items: flex-end; max-width: 900px; margin: 0 auto; }
.chat-textarea { flex: 1; background: var(--black-4); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 12px; color: var(--white); font-family: var(--font); font-size: 0.93rem; padding: 14px 18px; resize: none; min-height: 52px; max-height: 160px; transition: border-color var(--transition); outline: none; line-height: 1.5; }
.chat-textarea:focus { border-color: var(--red); }
.chat-textarea::placeholder { color: #4a4d5a; }
.chat-send-btn { width: 48px; height: 48px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); flex-shrink: 0; }
.chat-send-btn:hover { background: var(--red-dark); }
.chat-send-btn svg { width: 20px; height: 20px; fill: white; }
.chat-quick-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; max-width: 900px; margin: 0 auto 12px; }
.quick-btn { padding: 6px 14px; background: var(--black-4); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-size: 0.78rem; color: #8892a4; transition: all var(--transition); font-family: var(--font); cursor: pointer; }
.quick-btn:hover { border-color: var(--red); color: var(--red); }

/* Dashboard stats/calc */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--black-4); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; }
.stat-card-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.stat-card-value { font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-card-sub { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }
.calc-form { background: var(--black-4); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px; }
.calc-form h3 { margin-bottom: 20px; color: var(--white); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.calc-result { background: #1c1c2a; border-radius: var(--radius); padding: 20px; margin-top: 16px; display: none; }
.calc-result.show { display: block; }
.calc-result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.9rem; color: var(--white); }
.calc-result-row:last-child { border: none; font-weight: 700; color: var(--red); font-size: 1.05rem; }
.scripts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.script-card { background: var(--black-4); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; }
.script-card h4 { margin-bottom: 4px; color: var(--white); }
.script-card .script-type { font-size: 0.78rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.script-text { font-size: 0.85rem; color: #8e97ac; line-height: 1.7; background: #1c1c2a; border-radius: var(--radius); padding: 14px; border-left: 3px solid var(--red); font-style: italic; }
.copy-btn { margin-top: 12px; font-size: 0.78rem; padding: 6px 14px; background: #1c1c2a; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #8e97ac; transition: all var(--transition); font-family: var(--font); }
.copy-btn:hover { border-color: var(--red); color: var(--red); }
.sub-banner { background: linear-gradient(90deg, rgba(224,30,55,0.16), rgba(224,30,55,0.05)); border: 1px solid rgba(224,30,55,0.3); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.sub-banner p { font-size: 0.87rem; color: var(--white-90); margin: 0; }
.sub-banner p strong { color: var(--red); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #0d0d16;
  padding: 32px 24px;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); color: var(--white-90); font-size: 1.1rem; }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-image-col { position: static; }
  .features-image-wrap img { height: 360px; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-item { padding: 28px 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-card { flex-direction: column; padding: 28px; }
  .stats-bar-inner { flex-direction: column; }
  .stats-bar-divider { width: 100%; height: 1px; margin: 0; }
  .stats-bar-item { padding: 24px; width: 100%; flex-direction: row; justify-content: center; gap: 16px; align-items: center; }
  .features-list .feature-card { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 100px 0; }
  .dashboard-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
  .panel { padding: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .scripts-grid { grid-template-columns: 1fr; }
  .chat-messages { padding: 20px; }
  .chat-input-area { padding: 16px 20px; }
  .auth-card { padding: 36px 24px; }
  .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── Closers Assist Green Accents ── */
.logo-icon rect { fill: #16a34a !important; }
.logo em, footer .logo em { color: #4ade80 !important; }
h1 .highlight, h1 span.highlight { color: #4ade80 !important; }
.feature-badge, [class*="core-tools"], .tools-badge {
  color: #4ade80 !important;
  background: rgba(22,163,74,0.2) !important;
  border-color: rgba(22,163,74,0.4) !important;
}

/* ── CLOSERS ASSIST DESIGN FIXES ── */
.hero-badge { background: rgba(34,197,94,0.12) !important; border: 1px solid rgba(34,197,94,0.35) !important; color: #4ade80 !important; }
.hero-badge .badge-dot, .hero-badge span:first-child { background: #22c55e !important; box-shadow: 0 0 6px rgba(34,197,94,0.6) !important; }
.step-number, .step-num, .step-circle { background: linear-gradient(135deg, #1d4ed8, #2563EB) !important; color: #fff !important; border: 2px solid rgba(37,99,235,0.4) !important; box-shadow: 0 0 20px rgba(37,99,235,0.3) !important; }
.why-icon { background: rgba(37,99,235,0.12) !important; border: 1px solid rgba(37,99,235,0.2) !important; border-radius: 12px !important; }
.feature-icon { background: rgba(37,99,235,0.12) !important; border: 1px solid rgba(37,99,235,0.2) !important; }
.chat-avatar { background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important; }
.text-red { background: linear-gradient(135deg, #16a34a 0%, #4ade80 100%) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.most-popular, .popular-badge { background: rgba(37,99,235,0.15) !important; border-color: rgba(37,99,235,0.5) !important; color: #93c5fd !important; }
.pricing-card.featured, .pricing-card.popular { border-color: rgba(37,99,235,0.5) !important; box-shadow: 0 0 30px rgba(37,99,235,0.15) !important; }
.btn-outline { border: 1px solid rgba(255,255,255,0.25) !important; color: #e2e8f0 !important; }
.btn-outline:hover { border-color: rgba(37,99,235,0.6) !important; color: #93c5fd !important; background: rgba(37,99,235,0.08) !important; }
.features-image-badge { background: rgba(15,20,30,0.75) !important; border: 1px solid rgba(34,197,94,0.5) !important; backdrop-filter: blur(6px) !important; padding: 6px 14px !important; border-radius: 6px !important; }
.features-image-badge span { color: #4ade80 !important; -webkit-text-fill-color: #4ade80 !important; font-weight: 700 !important; letter-spacing: 0.1em !important; }
.badge-red { background: rgba(37,99,235,0.15) !important; color: #93c5fd !important; border-color: rgba(37,99,235,0.35) !important; }
.card:hover { border-color: rgba(37,99,235,0.4) !important; }
.msg.user .bubble { background: #2563EB !important; }

/* ── Promo section fix ── */
.promo-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(34,197,94,0.2); border-radius: 16px; padding: 2.5rem 2rem; max-width: 560px; margin: 0 auto; text-align: center; }
.promo-row { display: flex; gap: 10px; margin-top: 1.25rem; }
.promo-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #e2e8f0; font-size: 15px; outline: none; }
.promo-btn { padding: 12px 22px; background: linear-gradient(135deg,#16a34a,#15803d); border: none; border-radius: 10px; color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; }
.promo-message.success { color: #86efac; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); padding: 8px 12px; border-radius: 8px; margin-top: 10px; }
.promo-message.error { color: #fca5a5; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); padding: 8px 12px; border-radius: 8px; margin-top: 10px; }

/* ── Review cards fix ── */
.testimonial-card, .review-card { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 14px; padding: 1.5rem; }

/* ── Footer fix ── */
footer, .footer { display: block !important; visibility: visible !important; opacity: 1 !important; }

.promo-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(34,197,94,0.2); border-radius: 16px; padding: 2.5rem 2rem; max-width: 560px; margin: 0 auto; text-align: center; }
.promo-row { display: flex; gap: 10px; margin-top: 1.25rem; }
.promo-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #e2e8f0; font-size: 15px; outline: none; }
.promo-btn { padding: 12px 22px; background: linear-gradient(135deg,#16a34a,#15803d); border: none; border-radius: 10px; color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; }
.promo-message.success { color: #86efac; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); padding: 8px 12px; border-radius: 8px; margin-top: 10px; }
.promo-message.error { color: #fca5a5; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); padding: 8px 12px; border-radius: 8px; margin-top: 10px; }
.testimonial-card, .review-card { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 14px; padding: 1.5rem; }
footer, .footer, .site-footer { display: block !important; visibility: visible !important; opacity: 1 !important; }
