/* ==============================================
   HOMEPAGE-ONLY STYLES (hp- prefix)
   Does NOT affect any other page.
   Brand: #6470DC purple, #4ad39c green, #09101f dark
   ============================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* ── Global Overrides (style.css uses !important on a,p,*) ── */
.hp-hero,
.hp-hero *,
.hp-stats,
.hp-stats *,
.hp-section,
.hp-section *,
.hp-cta,
.hp-cta * {
  font-family: "DM Sans", sans-serif !important;
}
/* ── Restore BoxIcons font for icon elements ── */
.hp-hero [class*="bx"],
.hp-stats [class*="bx"],
.hp-section [class*="bx"],
.hp-cta [class*="bx"] {
  font-family: "boxicons" !important;
}
.hp-hero a,
.hp-cta a {
  color: inherit;
}
.hp-btn-primary,
.hp-btn-primary:hover,
.hp-btn-primary:focus {
  color: #ffffff !important;
}
.hp-btn-secondary,
.hp-btn-secondary:hover,
.hp-btn-secondary:focus {
  color: rgba(255,255,255,0.8) !important;
}
.hp-btn-secondary:hover {
  color: #ffffff !important;
}
.hp-btn-green,
.hp-btn-green:hover,
.hp-btn-green:focus {
  color: #ffffff !important;
}
.hp-btn-ghost,
.hp-btn-ghost:hover,
.hp-btn-ghost:focus {
  color: rgba(255,255,255,0.75) !important;
}
.hp-btn-ghost:hover {
  color: #ffffff !important;
}
.hp-hero-sub {
  color: rgba(255,255,255,0.65) !important;
}
.hp-cta .hp-subtitle {
  color: rgba(255,255,255,0.55) !important;
}
.hp-cta-note {
  color: rgba(255,255,255,0.35) !important;
}

/* ── Hero ───────────────────────────────────── */
.hp-hero {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hp-hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(100,112,220,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hp-hero::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(74,211,156,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,112,220,0.15);
  border: 1px solid rgba(100,112,220,0.3);
  color: rgba(100,112,220,0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hp-hero-badge i {
  color: #4ad39c;
  font-size: 16px;
}
.hp-hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 600px;
}
.hp-hero h1 .hp-gradient-text {
  background: linear-gradient(135deg, #6470DC, #4ad39c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-hero-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hp-btn-primary {
  display: inline-block;
  padding: 16px 38px;
  background: linear-gradient(135deg, #6470DC, #6470DC);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(100,112,220,0.4);
  color: #ffffff;
  text-decoration: none;
}
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.hp-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.hp-hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hp-trust-item i {
  color: #4ad39c;
  font-size: 16px;
}

/* Hero right - pricing cards */
.hp-pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-price-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 32px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hp-price-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(100,112,220,0.3);
  transform: translateY(-3px);
}
.hp-price-card-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4ad39c;
  margin-bottom: 8px;
}
.hp-price-card-amount {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hp-price-card-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.5;
}
.hp-price-card-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(74,211,156,0.12);
  color: #4ad39c;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

/* ── Stats Bar ──────────────────────────────── */
.hp-stats {
  background: #ffffff;
  padding: 50px 0;
  border-bottom: 1px solid #eef0f6;
}
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-stat {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid #eef0f6;
}
.hp-stat:last-child {
  border-right: none;
}
.hp-stat-number {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.hp-stat-number span {
  color: #6470DC;
}
.hp-stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6e727f;
  font-weight: 500;
}

/* ── Section Common ─────────────────────────── */
.hp-section {
  padding: 90px 0;
}
.hp-section-light {
  background: #f8f9ff;
}
.hp-section-dark {
  background: #09101f;
}
.hp-tag {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6470DC;
  margin-bottom: 14px;
}
.hp-title {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hp-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #6e727f;
  line-height: 1.7;
  max-width: 620px;
  font-weight: 400;
}
.hp-subtitle-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Intelligent Platform Section ───────────── */
.hp-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.hp-platform-card {
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 36px 30px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.hp-platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6470DC, #4ad39c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hp-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(100,112,220,0.14);
  border-color: transparent;
}
.hp-platform-card:hover::before {
  transform: scaleX(1);
}
.hp-platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(100,112,220,0.1), rgba(74,211,156,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hp-platform-icon i {
  font-size: 26px;
  color: #6470DC;
}
.hp-platform-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hp-platform-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #6e727f;
  line-height: 1.65;
  margin: 0;
}

/* ── How It Works ───────────────────────────── */
.hp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}
.hp-step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.hp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6470DC, #4ad39c);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.hp-step::after {
  content: "";
  position: absolute;
  top: 68px;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, #6470DC, #4ad39c);
  opacity: 0.25;
}
.hp-step:last-child::after {
  display: none;
}
.hp-step::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, #6470DC, #4ad39c);
  opacity: 0.25;
}
.hp-step:first-child::before {
  display: none;
}
.hp-step h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 10px;
}
.hp-step p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #6e727f;
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.hp-step-note {
  text-align: center;
  margin-top: 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #6e727f;
  font-weight: 500;
}
.hp-step-note strong {
  color: #6470DC;
}

/* ── Solutions Cards ────────────────────────── */
.hp-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.hp-solution-card {
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hp-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(100,112,220,0.12);
  border-color: rgba(100,112,220,0.2);
}
.hp-solution-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.hp-solution-icon.purple {
  background: rgba(100,112,220,0.1);
  color: #6470DC;
}
.hp-solution-icon.green {
  background: rgba(74,211,156,0.12);
  color: #4ad39c;
}
.hp-solution-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 8px;
}
.hp-solution-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #6e727f;
  line-height: 1.6;
  margin: 0;
}
.hp-solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6470DC;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.hp-solution-link:hover {
  gap: 10px;
  color: #6470DC;
  text-decoration: none;
}

/* ── Feature Row (image + text) ─────────────── */
.hp-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hp-feature-row.reverse {
  flex-direction: row-reverse;
}
.hp-feature-img {
  flex: 1;
  min-width: 0;
}
.hp-feature-img img {
  width: 100%;
  border-radius: 16px;
}
.hp-feature-text {
  flex: 1;
  min-width: 0;
}
.hp-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.hp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #09101f;
  line-height: 1.6;
}
.hp-check-list li i {
  color: #4ad39c;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Industries ─────────────────────────────── */
.hp-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}
.hp-industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #09101f;
  transition: all 0.25s ease;
  text-decoration: none;
}
.hp-industry-pill:hover {
  border-color: #6470DC;
  color: #6470DC;
  box-shadow: 0 4px 16px rgba(100,112,220,0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.hp-industry-pill i {
  color: #6470DC;
  font-size: 16px;
}

/* ── Testimonials ───────────────────────────── */
.hp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.hp-testimonial {
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hp-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(100,112,220,0.1);
}
.hp-testimonial-stars {
  color: #4ad39c;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.hp-testimonial q {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #09101f;
  font-style: italic;
  flex-grow: 1;
  display: block;
  margin-bottom: 20px;
  quotes: none;
}
.hp-testimonial-author {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #09101f;
  margin-bottom: 2px;
}
.hp-testimonial-co {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #6e727f;
}

/* ── Final CTA ──────────────────────────────── */
.hp-cta {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(100,112,220,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hp-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,211,156,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hp-cta .hp-title {
  color: #ffffff;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.hp-cta .hp-subtitle {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.hp-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hp-btn-green {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #4ad39c, #4ad39c);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.hp-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,211,156,0.35);
  color: #ffffff;
  text-decoration: none;
}
.hp-btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.hp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  text-decoration: none;
}
.hp-cta-note {
  margin-top: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
  .hp-hero {
    padding: 70px 0 60px;
  }
  .hp-hero h1 {
    font-size: 38px;
  }
  .hp-pricing-stack {
    margin-top: 40px;
  }
  .hp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-stat {
    border-right: none;
  }
  .hp-platform-grid {
    grid-template-columns: 1fr;
  }
  .hp-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hp-step::after, .hp-step::before {
    display: none;
  }
  .hp-solutions-grid {
    grid-template-columns: 1fr;
  }
  .hp-feature-row,
  .hp-feature-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .hp-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hp-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .hp-hero h1 {
    font-size: 30px;
  }
  .hp-hero-btns {
    flex-direction: column;
  }
  .hp-hero-btns a {
    text-align: center;
  }
  .hp-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hp-stat-number {
    font-size: 28px;
  }
  .hp-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-cta-btns a {
    text-align: center;
  }
  .hp-cta .hp-title {
    font-size: 28px;
  }
  .hp-solution-card {
    flex-direction: column;
  }
}
