/* ─── HOMEPAGE VARIABLES ─── */
:root {
  --brand-100: #ede9fe;
  --brand-400: #a78bfa;
  --brand-600: #7c3aed;
  --brand-800: #5b21b6;
  --brand-900: #4c1d95;
  --brand-950: #3d3567;
  --accent-500: #ec4899;
  --accent-600: #e91e8c;
  --accent-700: #be185d;
  --slate-50: #f8fafc;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
}

/* ─── HERO ─── */
.hp-hero {
  background: var(--brand-950);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(91,33,182,0.35) 0%, rgba(124,58,237,0.4) 50%, rgba(91,33,182,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hp-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hp-hero .hp-tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent-600);
  text-transform: uppercase;
  margin-top: 1rem;
}
.hp-hero .hp-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}
.hp-hero-cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--accent-600), var(--accent-500));
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.hp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,0.35); }
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
  cursor: pointer;
}
.hp-btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ─── PROOF BAR ─── */
.hp-proof-bar {
  background: var(--slate-50);
  border-bottom: 1px solid #e2e8f0;
  padding: 3rem 2rem;
}
.hp-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.hp-proof-stat { text-align: center; }
.hp-proof-stat .hp-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--brand-600);
  line-height: 1;
}
.hp-proof-stat .hp-label {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-top: 0.4rem;
}
.hp-proof-stat .hp-label strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-950);
  font-size: 0.85rem;
}
.hp-proof-divider {
  width: 1px;
  height: 56px;
  background: #e2e8f0;
}

/* ─── SHARED SECTION LABELS ─── */
.hp-section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.hp-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--brand-950);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ─── VIDEO DEMO ─── */
.hp-video-demo {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}
.hp-video-demo-inner { max-width: 900px; margin: 0 auto; }
.hp-video-frame {
  max-width: 800px;
  margin: 2.5rem auto 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(167,139,250,0.2);
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--brand-950);
}
.hp-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── INTEGRATIONS ─── */
.hp-integrations {
  padding: 4rem 2rem;
  background: var(--brand-100);
  border-bottom: 1px solid #e2e8f0;
}
.hp-integrations-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hp-integrations-subtitle {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.hp-integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.hp-integration-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.hp-integration-logo:hover { opacity: 1; }
.hp-integration-logo .hp-logo-icon {
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-integration-logo .hp-logo-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hp-integration-logo .hp-logo-icon svg { width: 36px; height: 36px; }
.hp-integration-logo .hp-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate-700);
  letter-spacing: -0.01em;
}
.hp-integration-logo .hp-logo-name span {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-top: 0.1rem;
}

/* ─── TESTIMONIALS ─── */
.hp-testimonials {
  padding: 5rem 2rem;
  background: #fff;
  overflow: hidden;
}
.hp-testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hp-testimonial-carousel {
  position: relative;
  margin-top: 2.5rem;
  min-height: 260px;
}
.hp-testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  background: var(--slate-50);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hp-testimonial-card.active { opacity: 1; }
.hp-testimonial-quote {
  font-size: 1.15rem;
  color: var(--slate-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hp-testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5em;
  color: var(--brand-400);
  margin-right: 0.15rem;
}
.hp-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hp-testimonial-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-testimonial-logo svg { width: 24px; height: 24px; color: var(--brand-600); }
.hp-testimonial-info { text-align: left; }
.hp-testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-950);
}
.hp-testimonial-role { font-size: 0.85rem; color: var(--slate-600); }
.hp-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.hp-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.hp-testimonial-dot.active { background: var(--brand-600); }

/* ─── HOW IT WORKS ─── */
.hp-how {
  padding: 5rem 2rem;
  background: var(--brand-100);
}
.hp-how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}
.hp-step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--brand-400);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hp-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-950);
  margin-bottom: 0.5rem;
}
.hp-step-body {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ─── VALUE PROPS ─── */
.hp-value {
  padding: 5rem 2rem;
  background: var(--slate-50);
}
.hp-value-inner { max-width: 1100px; margin: 0 auto; }
.hp-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.hp-value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.25rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(61,53,103,0.08);
}
.hp-vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hp-vc-icon.purple { background: var(--brand-100); color: var(--brand-600); }
.hp-vc-icon.pink { background: #fce7f3; color: var(--accent-600); }
.hp-vc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-950);
  margin-bottom: 0.6rem;
}
.hp-vc-body { font-size: 0.95rem; color: var(--slate-600); line-height: 1.65; }

/* ─── COMPARISON ─── */
.hp-compare {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom right, var(--brand-950), var(--brand-900));
}
.hp-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hp-compare-inner .hp-section-label { color: var(--accent-500); }
.hp-compare-inner .hp-section-title { color: #fff; }
.hp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}
.hp-compare-col { padding: 2.5rem; }
.hp-compare-col.old {
  background: rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hp-compare-col.new { background: rgba(255,255,255,0.1); }
.hp-compare-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hp-compare-col.old h3 { color: rgba(255,255,255,0.5); }
.hp-compare-col.new h3 { color: var(--accent-500); }
.hp-compare-col ul { list-style: none; text-align: left; }
.hp-compare-col ul li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hp-compare-col.old ul li { color: rgba(255,255,255,0.45); }
.hp-compare-col.new ul li { color: rgba(255,255,255,0.9); }
.hp-icon-x { flex-shrink: 0; margin-top: 2px; }
.hp-icon-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-500);
  font-weight: 900;
  font-size: 1.4rem;
}

/* ─── OBJECTIONS / FAQ ─── */
.hp-objections {
  padding: 5rem 2rem;
  background: var(--slate-50);
}
.hp-objections-inner { max-width: 800px; margin: 0 auto; }
.hp-objection {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}
.hp-objection-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-950);
  margin-bottom: 0.5rem;
}
.hp-objection-a { font-size: 0.95rem; color: var(--slate-600); line-height: 1.65; }

/* ─── CTA ─── */
.hp-cta {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}
.hp-cta-inner { max-width: 700px; margin: 0 auto; }
.hp-cta-body {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hp-cta-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--slate-600);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hp-value-grid,
  .hp-compare-grid,
  .hp-steps {
    grid-template-columns: 1fr;
  }
  .hp-proof-inner { gap: 1.5rem; }
  .hp-proof-divider { display: none; }
  .hp-hero { padding: 8rem 1.5rem 4rem; }
  .hp-integration-logos { gap: 1.5rem; }
}
