@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/* ============================================================
   PRAVAAH HOME — Light Purple Enterprise Design System
   ============================================================ */

/* ---------- Design Tokens ---------------------------------- */
:root {
  /* Primary Purple */
  --p-purple-50:   #faf5ff;
  --p-purple-100:  #ede9fe;
  --p-purple-200:  #ddd6fe;
  --p-purple-500:  #8b5cf6;
  --p-purple-600:  #7c3aed;
  --p-purple-700:  #6d28d9;
  --p-purple-900:  #4c1d95;

  /* Neutral */
  --p-slate-50:  #f8fafc;
  --p-slate-100: #f1f5f9;
  --p-slate-200: #e2e8f0;
  --p-slate-600: #475569;
  --p-slate-700: #334155;
  --p-slate-900: #0f172a;

  /* Other accents */
  --p-pink:   #e91e8c;
  --p-blue:   #2563eb;
  --p-teal:   #0891b2;
  --p-amber:  #d97706;
  --p-orange: #ea580c;
  --p-green:  #16a34a;

  /* Bootstrap override */
  --bs-primary:      var(--p-purple-600);
  --bs-primary-rgb:  124, 58, 237;
  --bs-font-sans-serif: "Instrument Sans", "Calibri", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --section-pad: 92px;
  --radius-lg:   1.25rem;
  --radius-xl:   1.75rem;
  --shadow-sm:   0 2px 12px rgba(15, 23, 42, .07);
  --shadow-md:   0 8px 32px rgba(15, 23, 42, .1);
  --shadow-lg:   0 20px 56px rgba(15, 23, 42, .12);
  --shadow-purple: 0 8px 30px rgba(124, 58, 237, .18);
}

/* ---------- Reset / Base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  /* Very very light purple page background */
  background-color: #faf5ff !important;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #1e1a2e !important;
  line-height: 1.65 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Heading Style ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--p-slate-900);
  background: linear-gradient(135deg, #0f172a 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ---------- Background Patterns ---------------------------- */
.grid-bg {
  background-color: #faf5ff;
  background-image:
    linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.grid-bg-white {
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(124,58,237,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ---------- Section Spacing -------------------------------- */
.section    { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-sm { padding-top: 60px; padding-bottom: 60px; }

/* ---------- Animations ------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes purplePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(124,58,237,.0); }
}

.animate-fade-in-up { animation: fadeInUp .8s ease-out both; }
.animate-float      { animation: float 4s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse 2.5s ease-in-out infinite; }

/* ---------- Navbar ----------------------------------------- */
.navbar {
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 1px 0 rgba(124,58,237,.1), 0 2px 16px rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(124,58,237,.08);
}
.nav-link {
  font-weight: 500 !important;
  font-size: .9375rem !important;
  color: #374151 !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--p-purple-600) !important; }
.navbar-brand:hover ._navbar-logo { transform: scale(1.04); }
._navbar-logo { transition: transform .25s; }

/* ---------- HERO ------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 80px;

  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(124,58,237,.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 75%, rgba(124,58,237,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 10%, rgba(139,92,246,.05) 0%, transparent 50%),
    linear-gradient(rgba(124,58,237,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.025) 1px, transparent 1px);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-section h1 {
  background: linear-gradient(135deg, #0f172a 0%, #6d28d9 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero-subtitle {
  color: #475569;
  font-size: 1.08rem;
  font-weight: 400;
  max-width: 540px;
  line-height: 1.7;
}

/* Hero badges */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-badge-green  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.hero-badge-purple { background: #ede9fe; color: #6d28d9; border: 1px solid #ddd6fe; }
.hero-badge-pink   { background: #fdf2f8; color: #be185d; border: 1px solid #f9a8d4; }
.hero-badge-blue   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.hero-badge-teal   { background: #f0fdfa; color: #0f766e; border: 1px solid #99f6e4; }

/* Hero CTA buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff !important;
  border-radius: 999px;
  padding: .8rem 2.1rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: var(--shadow-purple);
  transition: all .25s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(124,58,237,.35); }

.btn-hero-secondary {
  border: 2px solid #d1d5db;
  border-radius: 999px;
  padding: .76rem 2rem;
  font-weight: 600;
  color: #374151 !important;
  background: #ffffff;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.btn-hero-secondary:hover { border-color: #7c3aed; color: #6d28d9 !important; background: #faf5ff; transform: translateY(-3px); }

/* Hero stats */
.hero-stats { color: #64748b; font-size: .88rem; }
.hero-stats strong { color: #0f172a; }
.hero-stats-divider { width: 1px; background: #d1d5db; }

/* Hero image wrapper */
._hero-illustration-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,23,42,.12), 0 0 0 1px rgba(124,58,237,.12);
}
._hero-workflow-illustration {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

/* ---------- Trust Strip ------------------------------------ */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid #ede9fe;
  border-bottom: 1px solid #ede9fe;
  padding: 28px 0;
}
.trust-strip-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
}
.trust-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto .5rem;
  transition: transform .25s;
}
.trust-icon-wrap:hover { transform: scale(1.1) translateY(-3px); }
.trust-label { font-size: .75rem; font-weight: 600; color: #64748b; }

/* ---------- Section Headings ------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-green  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.eyebrow-purple { background: #ede9fe; color: #6d28d9; border: 1px solid #ddd6fe; }
.eyebrow-pink   { background: #fdf2f8; color: #be185d; border: 1px solid #fbcfe8; }
.eyebrow-blue   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.eyebrow-teal   { background: #f0fdfa; color: #0f766e; border: 1px solid #99f6e4; }
.eyebrow-amber  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 560px;
  font-weight: 400;
  line-height: 1.7;
}
.section-subtitle.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Primary Button (Bootstrap override) ------------ */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border: none;
  border-radius: 999px;
  padding: .7rem 1.8rem;
  font-weight: 700;
  font-size: .9375rem;
  color: #fff !important;
  box-shadow: var(--shadow-purple);
  transition: all .25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124,58,237,.35);
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: .65rem 1.75rem;
  font-weight: 600;
  color: #fff !important;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.65);
  transform: translateY(-2px);
}

/* ---------- Module Cards ----------------------------------- */
.home-modules-video-card {
  background: #0f172a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  border: 1px solid rgba(124,58,237,.15);
}
.home-modules-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.home-modules-video-wrap .home-modules-video,
.home-modules-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Module cards */
.module-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.module-card-purple::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.module-card-pink::before   { background: linear-gradient(90deg, #e91e8c, #f43f5e); }
.module-card-blue::before   { background: linear-gradient(90deg, #2563eb, #06b6d4); }
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124,58,237,.2);
}
.module-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #fff;
  margin-bottom: 1.25rem;
}
.mi-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.mi-pink   { background: linear-gradient(135deg, #e91e8c, #f43f5e); }
.mi-blue   { background: linear-gradient(135deg, #2563eb, #06b6d4); }

/* ---------- Feature Icon Blocks ---------------------------- */
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.fi-green  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.fi-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.fi-pink   { background: linear-gradient(135deg, #e91e8c, #f43f5e); }
.fi-blue   { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.fi-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.fi-amber  { background: linear-gradient(135deg, #d97706, #fbbf24); }
.fi-orange { background: linear-gradient(135deg, #ea580c, #fb923c); }

.feature-title       { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.feature-title-small { font-size: .9375rem; font-weight: 700; }
.feature-description { font-size: .88rem; color: #6b7280; line-height: 1.65; }

/* ---------- Highlight / Info Box --------------------------- */
.info-box {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  border-left: 4px solid #7c3aed;
  border-radius: .875rem;
  padding: 1.25rem 1.5rem;
}
.info-title       { font-size: 1rem; font-weight: 700; }
.info-description { font-size: .88rem; color: #374151; }

/* ---------- How it Works Steps ----------------------------- */
.step-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; color: #fff;
  margin: 0 auto 1.5rem;
  position: relative;
}
.step-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  opacity: .2;
}
.sc-green  { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 12px 36px rgba(22,163,74,.32); }
.sc-green::after  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.sc-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 12px 36px rgba(124,58,237,.32); animation: purplePulse 2.5s ease infinite; }
.sc-purple::after { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.sc-blue   { background: linear-gradient(135deg, #2563eb, #06b6d4); box-shadow: 0 12px 36px rgba(37,99,235,.32); }
.sc-blue::after   { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.sc-pink   { background: linear-gradient(135deg, #e91e8c, #f43f5e); box-shadow: 0 12px 36px rgba(233,30,140,.32); }

.step-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #7c3aed;
  font-size: .75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* ---------- Industry Cards --------------------------------- */
.industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.25); }
.industry-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2.1rem; color: #fff;
}
.industry-title       { font-size: .9375rem; font-weight: 700; margin-bottom: .5rem; }
.industry-description { font-size: .82rem; color: #6b7280; }

/* ---------- Stats Bar — Purple ----------------------------- */
.stats-bar {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 50%, #4c1d95 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.section-title-white {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #ddd6fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: .75rem;
}
.section-subtitle-white { color: rgba(255,255,255,.78); font-size: 1.05rem; }

.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #ddd6fe 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; }

/* ---------- Benefit Cards ---------------------------------- */
.benefit-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all .28s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.2); }
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff;
  margin-bottom: 1.5rem;
}
.benefit-title       { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.benefit-description { font-size: .88rem; color: #6b7280; line-height: 1.65; }

/* ---------- Advantage Rows --------------------------------- */
.advantage-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all .28s;
}
.advantage-row:hover { background: #fff; box-shadow: var(--shadow-sm); border-color: rgba(124,58,237,.2); }
.advantage-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; color: #fff;
  flex-shrink: 0;
}
.advantage-title       { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.advantage-description { font-size: .86rem; color: #6b7280; }

/* ---------- Security Cards --------------------------------- */
.security-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all .28s;
}
.security-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.25); }

.security-badge-row {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  border: 1px solid rgba(124,58,237,.15);
}
.security-badge-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; color: #374151;
}

/* ---------- Survey Section --------------------------------- */
.home-survey-section { position: relative; }
.home-survey-image-wrap { position: relative; }
.home-survey-illustration { max-width: 100%; filter: drop-shadow(0 12px 40px rgba(124,58,237,.15)); }
.home-survey-benefit-item {
  display: flex;
  align-items: center;
  padding: .6rem 0;
  font-size: .93rem;
  border-bottom: 1px solid #e2e8f0;
  color: #374151;
}
.home-survey-benefit-item:last-child { border-bottom: none; }

/* ---------- CTA Section — Purple --------------------------- */
.cta-section {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 50%, #4c1d95 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 55% at 10% 50%, rgba(255,255,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 50%, rgba(255,255,255,.05) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #ddd6fe 70%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.2;
}
.cta-subtitle    { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.cta-description { color: rgba(255,255,255,.65); font-size: .93rem; }

.cta-section .btn-hero-secondary {
  border: 2px solid rgba(255,255,255,.45);
  color: #fff !important;
  background: rgba(255,255,255,.1);
}
.cta-section .btn-hero-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
}

.cta-section .btn-hero-primary {
  background: #ffffff;
  color: #6d28d9 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.cta-section .btn-hero-primary:hover {
  background: #faf5ff;
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}

/* ---------- Sustainability --------------------------------- */
.sustainability-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .85rem 1.25rem;
  background: #fff;
  border-radius: .875rem;
  border: 1px solid #ddd6fe;
  margin-bottom: .75rem;
  transition: all .25s;
}
.sustainability-item:hover { border-color: rgba(124,58,237,.4); box-shadow: 0 4px 16px rgba(124,58,237,.1); }
.sustainability-item i { font-size: 1.4rem; color: #7c3aed; }
.sustainability-item span { font-weight: 600; color: #0f172a; font-size: .93rem; }

/* ---------- Footer ----------------------------------------- */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #0a1628 100%) !important;
}
.footer-link-hover { transition: all .25s ease; }
.footer-link-hover:hover { color: #c4b5fd !important; padding-left: 5px; }

/* ---------- Demo Modal ------------------------------------- */
.demo-request-form .form-control,
.demo-request-form .form-select {
  border-radius: .625rem;
  border: 1.5px solid #e2e8f0;
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.demo-request-form .form-control:focus,
.demo-request-form .form-select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

/* ---------- Navbar demo button ----------------------------- */
.nav-demo-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: .45rem 1.2rem !important;
  font-size: .875rem !important;
  color: #fff !important;
  box-shadow: var(--shadow-purple) !important;
}
.nav-demo-btn:hover { box-shadow: 0 8px 22px rgba(124,58,237,.4) !important; transform: translateY(-1px); }

/* ---------- Image helpers ---------------------------------- */
._img-fluid { max-width: 100%; height: auto; border-radius: var(--radius-lg); }
.home-survey-cta { font-weight: 700; border-radius: 999px; }

/* ---------- Video container -------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-container iframe, .video-container video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ---------- Responsive tweaks ------------------------------ */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 120px 0 70px; }
  :root { --section-pad: 64px; }
}
@media (max-width: 767px) {
  :root { --section-pad: 52px; }
  .stat-number { font-size: 2.4rem; }
  .hero-section h1 { font-size: 1.9rem; }
  .cta-title { font-size: 1.7rem; }
}
