/* ============================================================
   VoiceFlow — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:        #5b5cf0;
  --primary-dark:   #4f46e5;
  --accent:         #7c3aed;
  --gradient:       linear-gradient(135deg, #5b5cf0, #7c3aed);
  --gradient-soft:  linear-gradient(135deg, #f7f7ff, #eef2ff);

  --bg:             #f4f7ff;
  --bg-white:       #ffffff;
  --bg-dark:        #0b1020;
  --bg-footer:      #111827;

  --text-dark:      #111827;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;
  --text-white:     #ffffff;

  --border:         #edf0ff;
  --border-light:   #dbe4ff;

  --radius-sm:      10px;
  --radius-md:      20px;
  --radius-lg:      30px;
  --radius-xl:      40px;

  --shadow-sm:      0 2px 12px rgba(91,92,240,0.08);
  --shadow-md:      0 8px 30px rgba(91,92,240,0.12);
  --shadow-lg:      0 20px 60px rgba(91,92,240,0.15);

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:     72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ============================================================
   NAVBAR
   ============================================================ */
.vf-navbar {
  background: var(--bg-dark) !important;
  padding: 0;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.vf-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.vf-brand {
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-brand i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.vf-nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.vf-nav-link:hover,
.vf-nav-link.active {
  color: #fff !important;
  background: rgba(91,92,240,0.15);
}

.vf-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.vf-cta-btn {
  background: var(--gradient);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 20px !important;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(91,92,240,0.4);
}

.vf-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,92,240,0.5);
  color: #fff !important;
}

/* ============================================================
   HERO SECTION — Premium Dark Design
   ============================================================ */
.vf-hero {
  padding: 110px 0 90px;
  background: #080c1a;
  overflow: hidden;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Dot-grid background */
.vf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(91,92,240,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Glow orb — left */
.vf-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,92,240,0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}

/* Glow orb — right */
.hero-glow-right {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite reverse;
}

/* Horizontal light beam */
.hero-beam {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,92,240,0.3), rgba(124,58,237,0.2), transparent);
  transform: translateY(-50%);
  pointer-events: none;
  animation: beamSlide 4s ease-in-out infinite;
}

/* ---- Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(91,92,240,0.12);
  color: #a5b4fc;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(91,92,240,0.3);
  letter-spacing: 0.3px;
  animation: fadeSlideUp 0.5s ease both;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818cf8;
  animation: dotBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ---- Title ---- */
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.07;
  color: #ffffff;
  letter-spacing: -2px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}

.hero-title .line2 {
  color: rgba(255,255,255,0.55);
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

/* ---- Desc ---- */
.hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 500px;
  margin-top: 22px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}

/* ---- Actions ---- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5b5cf0, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(91,92,240,0.4), 0 8px 30px rgba(91,92,240,0.4);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(91,92,240,0.5), 0 16px 40px rgba(91,92,240,0.5);
  color: #fff;
}

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

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Trust bar ---- */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  animation: fadeSlideUp 0.9s ease 0.4s both;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item:last-child  { padding-right: 0; border-right: none; }

.hero-trust-item i {
  color: #818cf8;
  font-size: 0.75rem;
}

/* ---- Right: Image + Floating Card ---- */
.hero-visual {
  position: relative;
  animation: floatCard 6s ease-in-out infinite; /* whole column floats */
}

/* Main AI GIF image */
.hero-img-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  max-height: 380px;
  object-fit: cover;
}

/* Floating stats card — overlaps bottom of image */
.hero-glass-card {
  background: rgba(10,12,26,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.hero-card-bottom {
  /* override animation so card + image float in sync */
  animation: none;
}

/* Card header row */
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5b5cf0, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(91,92,240,0.5);
  flex-shrink: 0;
}

.hero-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-card-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.hero-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  margin-left: auto;
  animation: dotBlink 1s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
}

/* Waveform canvas area */
.hero-waveform {
  margin: 0 0 22px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
  padding: 16px 0 8px;
}

#heroWaveCanvas {
  width: 100%;
  height: 70px;
  display: block;
}

/* Transcript preview lines */
.hero-transcript {
  margin-bottom: 22px;
}

.transcript-line {
  height: 9px;
  border-radius: 6px;
  margin-bottom: 9px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.transcript-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmerLine 2.5s ease-in-out infinite;
}

.transcript-line.w100 { width: 100%; }
.transcript-line.w85  { width: 85%; }
.transcript-line.w70  { width: 70%; }
.transcript-line.w92  { width: 92%; }
.transcript-line.w55  { width: 55%; }
.transcript-line.active {
  background: linear-gradient(90deg, rgba(91,92,240,0.5), rgba(124,58,237,0.35));
  animation: typingLine 1.8s ease-in-out infinite;
}

/* Card stats row */
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}

.hero-stat-pill .stat-n {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero-stat-pill .stat-l {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 500;
}

/* Floating mini badge */
.hero-float-badge {
  position: absolute;
  top: -18px;
  right: -16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
  animation: floatBadge 3s ease-in-out infinite;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeSlideUp 1s ease 0.8s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLineAnim 1.5s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-vf-primary {
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(91,92,240,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-vf-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91,92,240,0.45);
  color: #fff;
}

.btn-vf-outline {
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-vf-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.vf-section { padding: 90px 0; }
.vf-section-white { background: var(--bg-white); }
.vf-section-grey { background: var(--bg); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 14px auto 0;
}

/* ============================================================
   RECORDER SECTION
   ============================================================ */
.recorder-section { padding: 80px 0; }

.record-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.record-box textarea {
  resize: none;
  border-radius: var(--radius-md) !important;
  padding: 20px !important;
  min-height: 240px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--border-light) !important;
  transition: var(--transition);
  background: #fafbff;
}

.record-box textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(91,92,240,0.1) !important;
}

.record-box .form-select {
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--border-light) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.record-box .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(91,92,240,0.1) !important;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--bg-white);
  border: none !important;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(91,92,240,0.1); color: var(--primary); }
.feature-icon.yellow { background: rgba(251,191,36,0.1); color: #f59e0b; }
.feature-icon.green  { background: rgba(16,185,129,0.1); color: #10b981; }
.feature-icon.red    { background: rgba(239,68,68,0.1);  color: #ef4444; }
.feature-icon.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.feature-icon.pink   { background: rgba(236,72,153,0.1); color: #ec4899; }

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   USE CASE CARDS
   ============================================================ */
.use-case-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.use-case-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.use-case-body { padding: 24px; }
.use-case-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.use-case-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pricing-plan { font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.pricing-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin: 14px 0 4px;
  letter-spacing: -2px;
}
.pricing-price span { font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--primary); font-size: 0.85rem; }
.pricing-features li .fa-xmark { color: #d1d5db; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.vf-accordion .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.vf-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  padding: 20px 24px;
  box-shadow: none !important;
}

.vf-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(91,92,240,0.04);
}

.vf-accordion .accordion-button::after {
  filter: invert(30%) sepia(100%) saturate(500%) hue-rotate(220deg);
}

.vf-accordion .accordion-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 16px 24px 24px;
  background: #fafbff;
}

/* ============================================================
   LANGUAGE GRID
   ============================================================ */
.lang-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}

.lang-card:hover {
  background: rgba(91,92,240,0.06);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.lang-card .lang-flag { font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 50px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(91,92,240,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h6 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.95rem; color: var(--text-dark); margin: 0; font-weight: 500; }

.vf-form-group { margin-bottom: 20px; }
.vf-form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; display: block; }

.vf-form-group input,
.vf-form-group textarea,
.vf-form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fafbff;
  transition: var(--transition);
  outline: none;
}

.vf-form-group input:focus,
.vf-form-group textarea:focus,
.vf-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,92,240,0.1);
  background: #fff;
}

.vf-form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,92,240,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 560px;
  margin: 16px auto 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--gradient);
  padding: 40px 0;
}

.stat-item { text-align: center; color: #fff; }
.stat-value { font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; }
.stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; font-weight: 500; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-toc {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}

.privacy-toc h6 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 16px; }
.privacy-toc ul { list-style: none; padding: 0; }
.privacy-toc ul li a {
  display: block;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.privacy-toc ul li:last-child a { border-bottom: none; }
.privacy-toc ul li a:hover { color: var(--primary); padding-left: 6px; }

.privacy-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 40px 0 14px;
  padding-top: 10px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vf-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-brand {
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links li a:hover { color: #fff; padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-left: 20px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   STATUS BADGE
   ============================================================ */
#status {
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatAvatar {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.85; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero-specific keyframes */
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.7; }
}

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

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0.3deg); }
  50%       { transform: translateY(-12px) rotate(-0.3deg); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

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

@keyframes typingLine {
  0%, 100% { opacity: 0.5; width: 55%; }
  50%       { opacity: 1;   width: 80%; }
}

@keyframes beamSlide {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes scrollLineAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.recording { animation: pulse 0.9s infinite; }

/* ============================================================
   ALERTS & TOASTS
   ============================================================ */
.vf-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-alert-success { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.25); }
.vf-alert-error   { background: rgba(239,68,68,0.1);  color: #991b1b; border: 1px solid rgba(239,68,68,0.25);  }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .vf-hero { padding: 80px 0 60px; min-height: auto; }
  .hero-visual { margin-top: 50px; }
  .record-box { padding: 24px; }
  .contact-wrapper { padding: 32px 24px; }
  .hero-trust { width: 100%; }
  .hero-trust-item { padding: 0 14px; }
}

@media (max-width: 768px) {
  .vf-section { padding: 60px 0; }
  .page-hero { padding: 60px 0 50px; }
  .privacy-toc { position: static; margin-bottom: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; }
  .hero-trust-item:last-child { border-bottom: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.4rem; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .btn-vf-primary, .btn-vf-outline { width: 100%; justify-content: center; }
  .hero-glass-card { padding: 22px; }
  .hero-float-badge { display: none; }
}
