/* ============================================
   Ziplofy Demo Booking Page - Premium SaaS
   Primary: #2A6AFF (Electric Blue)
   Accent: #4C3CF7 (Deep Indigo)
   ============================================ */

:root {
  --demo-primary: #2A6AFF;
  --demo-accent: #4C3CF7;
  --demo-primary-rgb: 42, 106, 255;
  --demo-accent-rgb: 76, 60, 247;
  --demo-text: #0f172a;
  --demo-text-muted: #475569;
  --demo-bg: #ffffff;
  --demo-bg-alt: #f8fafc;
  --demo-border: rgba(15, 23, 42, 0.08);
  --demo-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --demo-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Header CTA */
.demo-cta-btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--demo-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.demo-cta-btn:hover {
  background: #1d4ed8;
}

/* -------------------- 1) HERO (Premium - Stripe/Linear/Vercel) -------------------- */
.demo-hero {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.demo-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 75% 40%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #fafbfc 0%, #f8fafc 50%, #f1f5f9 100%);
}

.demo-hero-glow {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, rgba(99, 102, 241, 0.04) 35%, transparent 65%);
  pointer-events: none;
}

.demo-hero-mesh {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 72% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.demo-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* Fade-in entrance animation */
@keyframes demo-hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.demo-hero-left {
  animation: demo-hero-fade-in 0.9s ease-out 0.1s both;
}

.demo-hero-right {
  animation: demo-hero-fade-in 0.9s ease-out 0.2s both;
}

.demo-hero-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.demo-hero-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 28px;
}

.demo-hero-highlight {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-hero-sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 48px;
  max-width: 480px;
  letter-spacing: -0.01em;
}

.demo-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.demo-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", inherit;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.demo-hero-btn-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #fff;
  border: none;
  box-shadow:
    0 4px 24px rgba(79, 70, 229, 0.4),
    0 2px 8px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.demo-hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(79, 70, 229, 0.45),
    0 8px 24px rgba(37, 99, 235, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.demo-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.demo-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.18);
}

.demo-hero-trust {
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.demo-hero-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.demo-hero-divider {
  color: #94a3b8;
}

/* Right: 3D Mockup with Floating Glass Cards */
.demo-hero-mockup-wrap {
  position: relative;
  perspective: 1400px;
}

.demo-hero-glow-mockup {
  position: absolute;
  inset: -60px -40px -80px;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(59, 130, 246, 0.12) 0%, rgba(99, 102, 241, 0.06) 40%, transparent 70%);
  pointer-events: none;
}

.demo-hero-mockup {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow:
    0 32px 80px rgba(15, 23, 42, 0.14),
    0 12px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  transform: rotateY(-4deg) rotateX(4deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
}

.demo-hero-mockup-wrap:hover .demo-hero-mockup {
  transform: rotateY(0deg) rotateX(0deg);
}

.demo-hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Glass Cards */
.demo-hero-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  animation: demo-hero-float 5s ease-in-out infinite;
}

.demo-hero-card-1 {
  top: -8%;
  right: -4%;
  animation-delay: 0s;
}

.demo-hero-card-2 {
  bottom: 12%;
  left: -6%;
  animation-delay: -1.6s;
}

.demo-hero-card-3 {
  bottom: -4%;
  right: 4%;
  animation-delay: -3.2s;
}

@keyframes demo-hero-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-10px) translateX(2px); }
  66% { transform: translateY(-4px) translateX(-1px); }
}

.demo-hero-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.demo-hero-card-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.demo-hero-card-1 .demo-hero-card-value {
  color: #059669;
}

.demo-hero-card-chart {
  display: block;
  width: 48px;
  height: 24px;
  margin-top: 6px;
  background: linear-gradient(90deg, #4f46e5 0%, #2563eb 50%, #06b6d4 100%);
  border-radius: 4px;
  opacity: 0.8;
}

/* Legacy demo-btn (used elsewhere) */
.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}

.demo-btn-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #fff;
}

.demo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.demo-btn-outline {
  background: transparent;
  color: #4f46e5;
  border-color: #4f46e5;
}

.demo-btn-outline:hover {
  background: rgba(79, 70, 229, 0.06);
}

.demo-btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

/* -------------------- 2) WHAT YOU'LL DISCOVER (Premium SaaS) -------------------- */
.demo-discover {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-discover .container {
  max-width: 1430px;
  margin-left: auto;
  margin-right: auto;
}

.demo-discover-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-discover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

/* Soft radial blur accents in corners */
.demo-discover-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 107, 255, 0.06) 0%, rgba(79, 70, 229, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

.demo-discover-mesh {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(91, 107, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

.demo-discover-mesh::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 65%);
}

/* Subtle dotted grid pattern */
.demo-discover-noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(79, 70, 229, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  background-position: 0 0;
  pointer-events: none;
}

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

.demo-discover-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5B6BFF;
  margin-bottom: 20px;
}

.demo-discover-title {
  font-size: clamp(2.25rem, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #111827 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-discover-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.demo-discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.demo-discover-card {
  position: relative;
  background: #FFFFFF;
  padding: 36px;
  border-radius: 20px;
  border: 1px solid #EEF2FF;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.demo-discover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12);
  border-color: #C7D2FE;
}

.demo-discover-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
  transition: transform 0.3s ease;
}

.demo-discover-card:hover .demo-discover-icon {
  transform: scale(1.05);
}

.demo-discover-icon-glow {
  display: none;
}

.demo-discover-icon svg {
  width: 24px;
  height: 24px;
  color: #4F46E5;
  position: relative;
  z-index: 1;
}

.demo-discover-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.35;
}

.demo-discover-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 12px 0 20px;
}

.demo-discover-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4F46E5;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.demo-discover-link span {
  transition: transform 0.3s ease;
}

.demo-discover-link:hover span,
.demo-discover-card:hover .demo-discover-link span {
  transform: translateX(4px);
}

.demo-discover-link:hover {
  color: #4338ca;
}

/* Stagger reveal */
.demo-discover-card.demo-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.demo-discover-card.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-discover-card.demo-reveal-visible:hover {
  transform: translateY(-8px);
}

.demo-discover-card:nth-child(1).demo-reveal-visible { transition-delay: 0.05s; }
.demo-discover-card:nth-child(2).demo-reveal-visible { transition-delay: 0.1s; }
.demo-discover-card:nth-child(3).demo-reveal-visible { transition-delay: 0.15s; }
.demo-discover-card:nth-child(4).demo-reveal-visible { transition-delay: 0.2s; }
.demo-discover-card:nth-child(5).demo-reveal-visible { transition-delay: 0.25s; }
.demo-discover-card:nth-child(6).demo-reveal-visible { transition-delay: 0.3s; }

/* Legacy - demo-section-title used elsewhere */
.demo-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--demo-text);
  margin-bottom: 56px;
}

/* -------------------- 3) DEMO BOOKING FORM (Premium SaaS) -------------------- */
.demo-form-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-form-section .container {
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;
}

.demo-form-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-form-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.demo-form-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 500px;
  height: 500px;
  transform: translate(20%, -50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.02) 40%, transparent 65%);
  pointer-events: none;
}

.demo-form-mesh {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: 400px;
  background: radial-gradient(ellipse at 0% 100%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.demo-form-shape {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.demo-form-noise {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.demo-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.demo-form-left {
  padding-top: 8px;
}

.demo-form-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6366F1;
  margin-bottom: 24px;
}

.demo-form-title {
  font-size: clamp(2.25rem, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #111827 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-form-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 40px;
  max-width: 520px;
}

.demo-form-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.demo-form-benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
}

.demo-form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  color: #4F46E5;
  flex-shrink: 0;
}

.demo-form-check svg {
  width: 16px;
  height: 16px;
}

.demo-form-trust {
  margin-top: 8px;
}

.demo-form-trust-line {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 16px;
}

.demo-form-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #9CA3AF;
  opacity: 0.6;
  filter: grayscale(1);
}

.demo-form-logos span {
  transition: opacity 0.25s ease;
}

.demo-form-logos span:hover {
  opacity: 1;
}

/* Form card */
.demo-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #EEF2FF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(79, 70, 229, 0.1);
}

.demo-form-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.04), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-form-card:hover .demo-form-card-glow {
  opacity: 1;
}

/* Time slots */
.demo-form-time-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E7EB;
}

.demo-form-time-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
}

.demo-form-time-icon {
  width: 20px;
  height: 20px;
  color: #6366F1;
}

.demo-form-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-time-slot {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #4B5563;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.demo-time-slot:hover {
  border-color: #6366F1;
  background: #EEF2FF;
  color: #4F46E5;
}

.demo-time-slot.demo-time-selected {
  background: #4F46E5;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
  transform: scale(1.02);
}

/* Form fields */
.demo-form .demo-form-group {
  margin-bottom: 24px;
}

.demo-form .demo-form-group:not(:first-of-type) {
  margin-top: 0;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid #E5E7EB;
}

.demo-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.demo-optional {
  font-weight: 400;
  color: #9CA3AF;
}

.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  background: #FFFFFF;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.demo-form-group textarea {
  height: 120px;
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.demo-form-group:has(textarea) {
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid #E5E7EB;
}

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.demo-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* Submit button */
.demo-form-submit {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.demo-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.4);
}

.demo-form-footer {
  margin-top: 20px;
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
}

/* Scroll reveal */
.demo-form-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.demo-form-reveal.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-form-right.demo-form-reveal.demo-reveal-visible {
  transition-delay: 0.1s;
}

/* Legacy - demo-btn-submit if used elsewhere */
.demo-btn-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

/* -------------------- 4) HOW IT WORKS (Premium) -------------------- */
.demo-how {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-how-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-how-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.demo-how-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 65%);
}

.demo-how-mesh {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at 100% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}

.demo-how-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.demo-how-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.demo-how-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  margin-bottom: 16px;
}

.demo-how-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
}

.demo-how-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 24px;
}

.demo-how-divider {
  width: 60px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  border-radius: 2px;
}

.demo-how-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1370px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-how-step {
  flex: 1;
  min-width: 0;
  position: relative;
}

.demo-how-step-inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 36px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.demo-how-step:hover .demo-how-step-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(79, 70, 229, 0.25);
}

.demo-how-step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(79, 70, 229, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-how-step-icon svg {
  width: 22px;
  height: 22px;
  color: #4f46e5;
}

.demo-how-step-num {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.35);
}

.demo-how-step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.demo-how-step-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.demo-how-connector {
  flex: 0 0 24px;
  min-width: 24px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.2), rgba(37, 99, 235, 0.4));
  margin: 0 -4px;
  position: relative;
  z-index: 0;
}

/* Stagger reveal */
.demo-how-step.demo-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.demo-how-step.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-how-step.demo-reveal-visible:hover .demo-how-step-inner {
  transform: translateY(-6px);
}

.demo-how-step:nth-child(1).demo-reveal-visible { transition-delay: 0.05s; }
.demo-how-step:nth-child(3).demo-reveal-visible { transition-delay: 0.15s; }
.demo-how-step:nth-child(5).demo-reveal-visible { transition-delay: 0.25s; }
.demo-how-step:nth-child(7).demo-reveal-visible { transition-delay: 0.35s; }

/* -------------------- 5) SOCIAL PROOF (Premium Enterprise) -------------------- */
.demo-proof {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-proof-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-proof-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #F8FAFC 0%, #F1F5F9 35%, #EEF2FF 60%, #F8FAFC 100%);
}

.demo-proof-mesh {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.demo-proof-mesh-tl {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.demo-proof-mesh-br {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
}

.demo-proof-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
}

.demo-proof-noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.demo-proof-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.demo-proof-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4F46E5;
  margin-bottom: 20px;
}

.demo-proof-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0F172A;
  margin-bottom: 16px;
}

.demo-proof-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #64748B;
  max-width: 560px;
  margin: 0 auto 32px;
}

.demo-proof-divider {
  width: 80px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
  border-radius: 2px;
}

.demo-proof-logos-wrap {
  position: relative;
  margin-bottom: 80px;
  z-index: 1;
}

.demo-proof-logos-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F8FAFC 0%, transparent 12%, transparent 88%, #F8FAFC 100%);
  pointer-events: none;
}

.demo-proof-logos {
  overflow: hidden;
}

.demo-proof-logo-track {
  display: flex;
  gap: 64px;
  animation: demoProofMarquee 35s linear infinite;
  white-space: nowrap;
}

.demo-proof-logo-track span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.demo-proof-logo-track span:hover {
  opacity: 1;
  filter: grayscale(0);
}

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

.demo-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.demo-proof-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(24px);
}

.demo-proof-card.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-proof-card:nth-child(1).demo-reveal-visible { transition-delay: 0.1s; }
.demo-proof-card:nth-child(2).demo-reveal-visible { transition-delay: 0.2s; }
.demo-proof-card:nth-child(3).demo-reveal-visible { transition-delay: 0.3s; }

.demo-proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}

.demo-proof-card-featured {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.75);
}

.demo-proof-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.demo-proof-stars {
  color: #F59E0B;
  font-size: 1.0625rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.demo-proof-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #0F172A;
  margin-bottom: 28px;
}

.demo-proof-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.demo-proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #4F46E5);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-proof-meta strong {
  display: block;
  font-size: 1rem;
  color: #0F172A;
  margin-bottom: 2px;
}

.demo-proof-meta span {
  font-size: 0.875rem;
  color: #64748B;
}

.demo-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
}

.demo-proof-stats.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.demo-proof-stat {
  text-align: center;
}

.demo-proof-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.demo-proof-stat-label {
  font-size: 0.875rem;
  color: #64748B;
}

.demo-proof-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(148, 163, 184, 0.3);
}

/* -------------------- 6) ENTERPRISE CTA -------------------- */
.demo-ent-cta {
  padding: 80px 0;
  background: #e2e8f0;
}

.demo-ent-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.demo-ent-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--demo-text);
  margin-bottom: 12px;
}

.demo-ent-cta-text {
  font-size: 1.0625rem;
  color: var(--demo-text-muted);
  margin-bottom: 28px;
}

/* -------------------- 7) FAQ (Premium Enterprise) -------------------- */
.demo-faq {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-faq-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #F8FAFC 0%, #F1F5F9 35%, #EEF2FF 60%, #F8FAFC 100%);
}

.demo-faq-mesh {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.demo-faq-mesh-tl {
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.demo-faq-mesh-br {
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
}

.demo-faq-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
}

.demo-faq-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  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)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.demo-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1470px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-faq-left {
  position: sticky;
  top: 120px;
}

.demo-faq-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4F46E5;
  margin-bottom: 20px;
}

.demo-faq-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0F172A;
  margin-bottom: 16px;
}

.demo-faq-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #64748B;
  margin-bottom: 28px;
}

.demo-faq-cta {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2563EB;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.demo-faq-cta:hover {
  color: #4F46E5;
  opacity: 0.9;
}

.demo-faq-right {
  position: relative;
}

.demo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.demo-faq-item.demo-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-faq-item:nth-child(1).demo-reveal-visible { transition-delay: 0.05s; }
.demo-faq-item:nth-child(2).demo-reveal-visible { transition-delay: 0.1s; }
.demo-faq-item:nth-child(3).demo-reveal-visible { transition-delay: 0.15s; }
.demo-faq-item:nth-child(4).demo-reveal-visible { transition-delay: 0.2s; }
.demo-faq-item:nth-child(5).demo-reveal-visible { transition-delay: 0.25s; }

.demo-faq-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.demo-faq-item[data-open] {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(37, 99, 235, 0.08);
  position: relative;
}

.demo-faq-item[data-open]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563EB, #4F46E5);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.demo-faq-item[data-open] .demo-faq-question {
  color: #2563EB;
}

.demo-faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F172A;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s ease, background 0.25s ease;
}

.demo-faq-question:hover {
  color: #2563EB;
}

.demo-faq-question-text {
  flex: 1;
}

.demo-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-faq-icon::before,
.demo-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #64748B;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-faq-question:hover .demo-faq-icon::before,
.demo-faq-question:hover .demo-faq-icon::after,
.demo-faq-item[data-open] .demo-faq-icon::before,
.demo-faq-item[data-open] .demo-faq-icon::after {
  background: #2563EB;
}

.demo-faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.demo-faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.demo-faq-item[data-open] .demo-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.demo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-faq-answer p {
  padding: 0 28px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748B;
}

/* -------------------- 8) FINAL CTA -------------------- */
.demo-final-cta {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.demo-final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--demo-primary-rgb), 0.08) 0%, rgba(var(--demo-accent-rgb), 0.1) 100%);
}

.demo-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.demo-final-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--demo-text);
  margin-bottom: 16px;
}

.demo-final-cta-sub {
  font-size: 1.25rem;
  color: var(--demo-text-muted);
  margin-bottom: 40px;
}

.demo-final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------- 9) FOOTER -------------------- */
.demo-footer {
  padding: 80px 0 48px;
  background: #0f172a;
  color: #94a3b8;
}

.demo-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.demo-footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.demo-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-footer-links li {
  margin-bottom: 12px;
}

.demo-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.demo-footer-links a:hover {
  color: #fff;
}

.demo-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 24px;
}

.demo-newsletter-form {
  display: flex;
  gap: 8px;
}

.demo-newsletter-input {
  padding: 10px 16px;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  min-width: 220px;
  font-family: inherit;
}

.demo-newsletter-input::placeholder {
  color: #64748b;
}

.demo-newsletter-input:focus {
  outline: none;
  border-color: var(--demo-primary);
}

.demo-newsletter-btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--demo-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.demo-newsletter-btn:hover {
  background: #1d4ed8;
}

.demo-footer-social {
  display: flex;
  gap: 16px;
}

.demo-footer-social-icon {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.demo-footer-social-icon:hover {
  color: #fff;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .demo-hero-inner,
  .demo-form-inner {
    grid-template-columns: 1fr;
  }

  .demo-hero-inner {
    gap: 64px;
  }

  .demo-hero-card {
    display: none;
  }

  .demo-hero-mockup {
    transform: none;
  }

  .demo-form-inner {
    gap: 56px;
  }

  .demo-form-right {
    order: -1;
  }

  .demo-faq-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .demo-faq-left {
    position: static;
    text-align: center;
  }

  .demo-faq-sub {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-faq-cta {
    display: inline-block;
  }

  .demo-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .demo-how-step {
    width: 100%;
    max-width: 360px;
  }

  .demo-how-connector {
    width: 2px;
    height: 32px;
    min-width: 2px;
    flex: none;
    margin: 0;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.2), rgba(37, 99, 235, 0.4));
  }

  .demo-how-header {
    margin-bottom: 48px;
  }

  .demo-how-step-inner {
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .demo-how-step-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-how-step-num {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-how-step-title,
  .demo-how-step-desc {
    text-align: center;
  }

  .demo-proof-cards {
    grid-template-columns: 1fr;
  }

  .demo-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .demo-hero-btn {
    width: 100%;
  }

  .demo-hero-left {
    order: 1;
  }

  .demo-hero-right {
    order: 2;
  }

  .demo-hero-card {
    display: none;
  }

  .demo-discover,
  .demo-form-section,
  .demo-how,
  .demo-proof {
    padding: 40px 0;
  }

  .demo-proof-header {
    margin-bottom: 48px;
  }

  .demo-proof-logos-wrap {
    margin-bottom: 56px;
  }

  .demo-proof-cards {
    gap: 24px;
    margin-bottom: 56px;
  }

  .demo-proof-card-featured {
    padding: 36px 28px;
  }

  .demo-proof-stats {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .demo-proof-stat-divider {
    width: 60px;
    height: 1px;
  }

  .demo-faq {
    padding: 60px 0;
  }

  .demo-faq-inner {
    gap: 48px;
  }

  .demo-faq-question {
    padding: 20px 24px;
  }

  .demo-faq-answer p {
    padding: 0 24px 20px;
  }

  .demo-ent-cta,
  .demo-final-cta,
  .demo-discover,
  .demo-form-section,
  .demo-how {
    padding: 40px 0;
  }

  .demo-discover-header {
    margin-bottom: 48px;
  }

  .demo-discover-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .demo-discover-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .demo-discover-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-discover-card h3,
  .demo-discover-card p {
    text-align: center;
  }

  .demo-discover-link {
    justify-content: center;
  }

  .demo-form-card {
    padding: 24px 24px;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }

  .demo-btn-submit {
    width: 100%;
  }

  .demo-final-cta {
    padding: 80px 0;
  }

  .demo-final-cta-btns {
    flex-direction: column;
  }

  .demo-final-cta-btns .demo-btn {
    width: 100%;
  }

  .demo-footer-grid {
    grid-template-columns: 1fr;
  }

  .demo-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-newsletter-form {
    flex-direction: column;
  }

  .demo-newsletter-input {
    min-width: 0;
  }

  .demo-cal-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}
