/* =========================
   ROOT / RESET
========================= */
:root {
  --bg-dark: #0b1437;
  --bg-darker: #070d2a;
  --bg-card: #131c4d;
  --bg-card-2: #1a2560;
  --primary: #6c5ce7;
  --primary-2: #7c6cff;
  --primary-dark: #5b4bd1;
  --accent: #8b7dff;
  --text: #ffffff;
  --text-muted: #b8bcd9;
  --text-soft: #8a90b8;
  --border: rgba(255, 255, 255, 0.08);
  --green: #22c55e;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(108, 92, 231, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   HEADER
========================= */
.header {
  padding: 22px 0;
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo-icon {
  color: var(--primary-2);
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.nav a:hover {
  color: #fff;
}

.nav a.active {
  color: #fff;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-2);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.login-link:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at top right, rgba(108, 92, 231, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(108, 92, 231, 0.08), transparent 50%),
    var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-text h1 .accent {
  color: var(--primary-2);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 480px;
}

.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2560 0%, #0b1437 100%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(1.05);
}

/* Stat Cards floating over the image */
.stat-card {
  position: absolute;
  background: rgba(20, 28, 75, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 150px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-card .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.stat-card .stat-delta {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.stat-card .stat-sub {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 2px;
}

.stat-1 { top: 30px; left: 0; }
.stat-2 { top: 200px; left: 20px; }
.stat-3 { bottom: 30px; left: 40px; }

/* =========================
   FEATURE BAR
========================= */
.feature-bar-wrap {
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.feature-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 30px 60px rgba(108, 92, 231, 0.35);
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature i {
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.feature p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   SECTION HEADER (shared)
========================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-2);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 580px;
  margin: 18px auto 0;
}

/* =========================
   LEAD FLOW (4 STEPS)
========================= */
.flow {
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.08), transparent 60%),
    var(--bg-dark);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.flow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.5);
  box-shadow: 0 20px 50px rgba(108, 92, 231, 0.2);
}

.flow-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flow-card:hover .flow-img img {
  transform: scale(1.08);
}

.flow-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 20, 55, 0.85) 100%);
}

.flow-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.5);
}

.flow-content {
  padding: 24px 22px 26px;
}

.flow-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.flow-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.flow-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================
   VERTICALS (IMAGE CARDS)
========================= */
.verticals {
  padding: 100px 0 90px;
  background: var(--bg-darker);
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.vertical {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}

.vertical:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.vertical-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.vertical-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vertical:hover .vertical-img img {
  transform: scale(1.07);
}

.vertical-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 55, 0) 50%, rgba(11, 20, 55, 0.3) 100%);
}

.vertical-meta {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vertical-meta h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.vertical-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-2);
  background: rgba(108, 92, 231, 0.15);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* =========================
   STATS SECTION
========================= */
.stats {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.95) 0%, rgba(91, 75, 209, 0.95) 100%),
    url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80') center/cover;
  background-blend-mode: multiply;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   BOTTOM CTA
========================= */
.bottom-cta-wrap {
  padding: 0 0 80px;
}

.bottom-cta {
  background: linear-gradient(135deg, #131c4d 0%, #1a2560 100%);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bottom-cta h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bottom-cta p {
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-2);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.socials a:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-visual {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .nav { display: none; }

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

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

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

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .hero-text h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .feature-bar { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat-num { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .bottom-cta { flex-direction: column; text-align: center; }
  .nav-actions .login-link { display: none; }
  .stat-1 { top: 10px; left: -10px; }
  .stat-2 { top: 180px; left: 0; }
  .stat-3 { bottom: 10px; left: 10px; }
}

/* =========================
   INTERNAL PAGE HERO
========================= */
.page-hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse at top right, rgba(108, 92, 231, 0.18), transparent 60%),
    var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero h1 .accent { color: var(--primary-2); }

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.breadcrumb a { color: var(--primary-2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 10px; color: var(--text-soft); }

/* =========================
   CONTENT SECTIONS
========================= */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--bg-darker); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.content-text .eyebrow { margin-bottom: 12px; }

.content-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.content-text ul {
  list-style: none;
  margin: 18px 0;
}

.content-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  font-size: 14.5px;
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: rgba(108, 92, 231, 0.2);
  color: var(--primary-2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BENEFIT CARDS
========================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(108, 92, 231, 0.4);
  transform: translateY(-4px);
}

.benefit-card .benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   FORM STYLES
========================= */
.form-section {
  padding: 70px 0 90px;
  background: var(--bg-dark);
}

.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.form-wrapper h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-wrapper > p.form-intro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row.full { grid-column: 1 / -1; }

.form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.form-row label .req { color: #ef4444; margin-left: 2px; }

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(108, 92, 231, 0.05);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b8bcd9' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-row .helper {
  font-size: 11.5px;
  color: var(--text-soft);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  margin-top: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.consent {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent input { margin-top: 2px; accent-color: var(--primary); }

.consent a { color: var(--primary-2); text-decoration: underline; }

.form-submit {
  margin-top: 28px;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(108, 92, 231, 0.5);
}

.form-divider {
  margin: 24px 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-2);
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-divider:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* =========================
   CONTACT INFO CARDS
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(108, 92, 231, 0.18);
  color: var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.contact-card a { color: var(--primary-2); }
.contact-card a:hover { text-decoration: underline; }

/* =========================
   ABOUT - STATS
========================= */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
}

.about-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-2);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 6px;
}

.about-stat .lbl { font-size: 13px; color: var(--text-muted); }

/* =========================
   EXPANDED FOOTER WITH VERTICALS
========================= */
.footer-mega {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-mega .footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 14px 0 18px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-mega h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.3px;
}

.footer-mega a {
  display: block;
  color: var(--text-muted);
  font-size: 12.5px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-mega a:hover { color: var(--primary-2); }

.footer-verticals-row {
  background: var(--bg-darker);
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-verticals-row h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-2);
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: center;
}

.verticals-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.verticals-cloud a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}

.verticals-cloud a:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(108, 92, 231, 0.15);
}

/* =========================
   SUCCESS / THANK YOU
========================= */
.success-msg {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

/* =========================
   RESPONSIVE EXTENSIONS
========================= */
@media (max-width: 968px) {
  .page-hero h1 { font-size: 36px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-mega { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .page-hero h1 { font-size: 28px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer-mega { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* =========================
   FLOATING SUPPORT WIDGET
========================= */
.support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}

.sw-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(0,0,0,0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
  position: relative;
}

.sw-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.sw-whatsapp { background: #25d366; }
.sw-whatsapp:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }

.sw-chat { background: #14b8a6; }
.sw-chat:hover { box-shadow: 0 12px 30px rgba(20, 184, 166, 0.5); }

.sw-alert { background: #f97316; }
.sw-alert:hover { box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5); }

/* Subtle pulse on the alert button to draw attention */
.sw-alert::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #f97316;
  opacity: 0.7;
  animation: sw-pulse 2.5s ease-out infinite;
}

@keyframes sw-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}



/* =========================
   AI SALES ADVISOR CHATBOT
========================= */

/* Update sw-call to replace sw-alert (phone instead of bug) */
.sw-call { background: #f97316; }
.sw-call:hover { box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5); }

/* Pulse animation for call button to grab attention */
.sw-call::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #f97316;
  opacity: 0.7;
  animation: sw-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

/* Chatbot modal */
.chatbot-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 24px 100px 24px;
  pointer-events: none;
}

.chatbot-modal.open {
  display: flex;
  pointer-events: auto;
}

.chatbot-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.chatbot-window {
  position: relative;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 580px;
  max-height: calc(100vh - 140px);
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  animation: chatbot-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

@keyframes chatbot-slide {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.chat-header {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #16a34a;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.chat-title {
  flex: 1;
  color: #fff;
  line-height: 1.2;
}

.chat-title strong {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.chat-title small {
  font-size: 11.5px;
  opacity: 0.9;
}

.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  padding: 0;
}

.chat-close:hover { background: rgba(255, 255, 255, 0.32); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #0f172a;
}

.chat-body::-webkit-scrollbar { width: 5px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }

.msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 88%;
  word-wrap: break-word;
  animation: msg-in 0.25s ease-out;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-bot {
  background: #1e293b;
  color: #e2e8f0;
  border-top-left-radius: 4px;
  align-self: flex-start;
}

.msg-bot strong { color: #4ade80; }

.msg-user {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  border-top-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.msg.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 14px;
}

.msg.typing span {
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}

.msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.msg.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.chat-options button {
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.18s;
  line-height: 1.4;
}

.chat-options button:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
  color: #fff;
  transform: translateX(2px);
}

.chat-options button strong { color: #4ade80; font-weight: 700; }

.chat-options.disabled { display: none; }

.chat-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.chat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
  text-align: center;
}

.chat-cta-primary {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff !important;
}
.chat-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.chat-cta-secondary {
  background: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0 !important;
}
.chat-cta-secondary:hover { background: #334155; border-color: #475569; }

.chat-cta-ghost {
  background: transparent;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80 !important;
}
.chat-cta-ghost:hover { background: rgba(34, 197, 94, 0.12); }

.chat-foot {
  padding: 9px 16px;
  border-top: 1px solid #1e293b;
  background: #0a1024;
  text-align: center;
  flex-shrink: 0;
}

.chat-foot .restart {
  font-size: 11.5px;
  color: #64748b;
  text-decoration: none;
}

.chat-foot .restart:hover { color: #94a3b8; }

@media (max-width: 560px) {
  .chatbot-modal { padding: 0; }
  .chatbot-window {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
  }
}

/* =========================
   TEASER POP-UP
   (Auto-shows after 8s or on exit intent — sends users into the chatbot flow)
========================= */
.leadcall-teaser {
  position: fixed;
  bottom: 24px;
  right: 100px;
  width: 280px;
  background: linear-gradient(145deg, #0f172a 0%, #020617 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 18px;
  padding: 18px 18px 16px;
  z-index: 9997;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(249, 115, 22, 0.08);
  color: #fff;
  text-align: center;
  display: none;
}

.leadcall-teaser.open {
  display: block;
  animation: teaser-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes teaser-slide-in {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.leadcall-teaser.closing {
  animation: teaser-slide-out 0.28s ease-in forwards;
}

@keyframes teaser-slide-out {
  to { transform: translateY(10px) scale(0.95); opacity: 0; }
}

.teaser-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #64748b;
  font-size: 22px;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.15s;
}

.teaser-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.teaser-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15), 0 8px 20px rgba(249, 115, 22, 0.25);
  position: relative;
}

.teaser-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teaser-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0f172a;
}

.leadcall-teaser h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: -0.2px;
}

.leadcall-teaser > p {
  font-size: 12.5px;
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.5;
}

.teaser-btn {
  width: 100%;
  margin-top: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.teaser-primary {
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.teaser-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.5);
}

.teaser-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #334155;
}

.teaser-secondary:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.teaser-note {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .leadcall-teaser {
    bottom: 220px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 320px;
    margin-left: auto;
    padding: 16px;
  }
}

