/* ===== NAV DROPDOWN CHEVRONS =====
   These custom pages don't load Porto's theme.init.js, which on other pages
   injects the visible dropdown chevron. The theme stylesheet hides the manual
   chevron <i> by default, so force it visible here. Scoped to enterprise.css
   (not loaded on pages that DO run theme.init.js), so no duplicate arrows. */
#header .header-column-nav-items nav#mainNavDesktop > ul > li > a .fa-chevron-down {
  display: inline-block !important;
}

/* ===== ENTERPRISE HERO ===== */
.enterprise-hero {
  background-color: #ffffff;
  padding: 48px 0 48px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-hero__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.22;
  color: #111111;
  margin-bottom: 18px;
}

.enterprise-hero__title .title-highlight {
  font-style: normal;
  font-weight: 800;
  color:#0A1A6F !important;
}

.enterprise-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 500px;
}

.enterprise-hero__cta {
  display: inline-block;
  background-color: #FFBC00;
  color: #111111 !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  text-decoration: none !important;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.enterprise-hero__cta:hover {
  transform: scale(1.05);
  text-decoration: none !important;
  color: #111111 !important;
}

/* Image card — light blue rounded bg matching reference */
.enterprise-hero__img-card {
  background-color: #E8EEFF;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 4s ease-in-out infinite;
}

.enterprise-hero__img-card img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
}

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

@media (max-width: 991px) {
  .enterprise-hero {
    padding: 40px 0 36px;
  }
  .enterprise-hero__title {
    font-size: 28px;
  }
  .enterprise-hero__img-card {
    margin-top: 36px;
  }
  .enterprise-hero__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .enterprise-hero {
    padding: 32px 0 28px;
  }
  .enterprise-hero__title {
    font-size: 24px;
  }
  .enterprise-hero__subtitle {
    font-size: 16px;
  }
  .enterprise-hero__cta {
    width: 100%;
    text-align: center;
  }
  .enterprise-hero__img-card {
    padding: 20px 16px;
  }
}

/* ===== ENTERPRISE STATS STRIP ===== */
.enterprise-stats {
  padding: 36px 0 40px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;

}

.enterprise-stats__card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 10px;
  padding: 22px 20px 18px;
  height: 100%;
  cursor: default;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.enterprise-stats__card:hover {
  border-color: #0A1A6F;
  box-shadow: 0 0 0 2.5px rgba(10, 26, 111, 0.25), 0 8px 24px rgba(10, 26, 111, 0.10);
  transform: translateY(-4px);
}

.enterprise-stats__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.enterprise-stats__icon {
  font-size: 17px;
  color: #0A1A6F;
  flex-shrink: 0;
}

.enterprise-stats__number {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.enterprise-stats__label {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.45;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
  .enterprise-stats {
    padding: 28px 0 32px;
  }
}

@media (max-width: 575px) {
  .enterprise-stats {
    padding: 24px 0 28px;
  }
  .enterprise-stats__number {
    font-size: 20px;
  }
  .enterprise-stats__card {
    padding: 18px 16px 14px;
  }
}

/* ===== ENTERPRISE COMPLEXITY SECTION ===== */
.enterprise-complexity {
  background-color: #0A1A6F;
  padding: 44px 0 52px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-complexity__heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 24px;
}

.enterprise-complexity__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 28px 24px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}

.enterprise-complexity__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.enterprise-complexity__icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.enterprise-complexity__card:hover .enterprise-complexity__icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.enterprise-complexity__icon-box i {
  font-size: 20px;
  color: #ffffff;
}

.enterprise-complexity__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-complexity__card-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
  .enterprise-complexity {
    padding: 36px 0 44px;
  }
  .enterprise-complexity__heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .enterprise-complexity {
    padding: 28px 0 36px;
  }
  .enterprise-complexity__heading {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .enterprise-complexity__card {
    padding: 22px 18px 24px;
  }
}

/* ===== ENTERPRISE FEATURES GRID ===== */
.enterprise-features {
  padding: 60px 0 36px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.enterprise-features__heading {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

.enterprise-features__card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 12px;
  padding: 26px 22px 24px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.enterprise-features__card:hover {
  transform: translateY(-8px);
  border-color: #0A1A6F;
  box-shadow: 0 0 0 2px rgba(10, 26, 111, 0.12), 0 16px 40px rgba(10, 26, 111, 0.10);
  z-index: 2;
}

.enterprise-features__icon-box {
  width: 44px;
  height: 44px;
  background: #f0f3ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

.enterprise-features__card:hover .enterprise-features__icon-box {
  background: #e0e6ff;
}

.enterprise-features__icon-box i {
  font-size: 18px;
  color: #0A1A6F;
}

.enterprise-features__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.enterprise-features__card-text {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
  .enterprise-features {
    padding: 44px 0 56px;
  }
  .enterprise-features__heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .enterprise-features {
    padding: 32px 0 40px;
  }
  .enterprise-features__heading {
    font-size: 20px;
  }
  .enterprise-features__card {
    padding: 20px 16px 18px;
  }
}

/* ===== ENTERPRISE STEPS SECTION ===== */
.enterprise-steps {
  padding: 16px 0 30px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__heading {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__row {
  margin-bottom: 72px;
}

.enterprise-steps__row:last-child {
  margin-bottom: 0;
}

.enterprise-steps__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

.enterprise-steps__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.enterprise-steps__badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__badge--blue {
  background: #DBEAFE;
  color: #1d4ed8;
}

.enterprise-steps__badge--indigo {
  background: #F3E8FF;
  color: #8200DB;
}

.enterprise-steps__badge--green {
  background: #DCFCE7;
  color: #008236;
}

.enterprise-steps__title {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__text {
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__callout {
  background: #f0fdf4;
  border-radius: 10px;
  padding: 14px 18px;
}

.enterprise-steps__callout--purple {
  background: #E9D4FF;
}

.enterprise-steps__callout--green {
  background: #B9F8CF;
}

.enterprise-steps__callout p {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.enterprise-steps__callout strong {
  color: #000000;
}

@media (max-width: 991px) {
  .enterprise-steps {
    padding: 52px 0 60px;
  }
  .enterprise-steps__row {
    margin-bottom: 52px;
  }
  .enterprise-steps__title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .enterprise-steps {
    padding: 36px 0 44px;
  }
  .enterprise-steps__row {
    margin-bottom: 40px;
  }
  .enterprise-steps__title {
    font-size: 20px;
  }
  .enterprise-steps__text {
    font-size: 14px;
  }
}

/* ===== COMPARISON TABLE ===== */
.enterprise-compare {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 24px !important;
}

.enterprise-compare__title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.enterprise-compare__subtitle {
  font-size: 17px;
  color: #6b7280;
  margin-top: 12px;
  line-height: 1.65;
}

.enterprise-compare__table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.enterprise-compare__table {
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

/* Header row */
.enterprise-compare__th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.enterprise-compare__th--feature {
  width: 22%;
}

.enterprise-compare__th--generic {
  width: 30%;
  color: #374151;
}

.enterprise-compare__th--plus {
  width: 48%;
  background: #eff6ff;
  border-left: none;
}

/* Col titles in header */
.enterprise-compare__col-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  text-transform: none;
  letter-spacing: 0;
}

.enterprise-compare__col-sub {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}

.enterprise-compare__col-sub--purple {
  color: #7c3aed;
  font-weight: 500;
}

/* Icon badges in header */
.enterprise-compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 14px;
  flex-shrink: 0;
}

.enterprise-compare__icon--red {
  background: #fee2e2;
  color: #dc2626;
}

.enterprise-compare__icon--green {
  background: #15803d;
  color: #ffffff;
}

/* Body rows */
.enterprise-compare__row {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.18s ease;
}

.enterprise-compare__row:hover .enterprise-compare__td--feature,
.enterprise-compare__row:hover .enterprise-compare__td--generic {
  background: #f9fafb;
}

.enterprise-compare__row:hover .enterprise-compare__td--plus {
  background: #e0eeff;
}

.enterprise-compare__row:last-child {
  border-bottom: none;
}

.enterprise-compare__td {
  padding: 16px 20px;
  color: #374151;
  vertical-align: middle;
  line-height: 1.55;
}

.enterprise-compare__td--feature {
  font-weight: 600;
  color: #111827;
  font-size: 13.5px;
}

.enterprise-compare__td--generic {
  color: #6b7280;
}

.enterprise-compare__td--plus {
  background: #eff6ff;
  color: #111827;
}

/* Inline icons */
.enterprise-compare__x {
  color: #ef4444;
  margin-right: 6px;
  font-size: 13px;
}

.enterprise-compare__check {
  color: #16a34a;
  margin-right: 6px;
  font-size: 13px;
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  .enterprise-compare__title {
    font-size: 22px;
  }

  .enterprise-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .enterprise-compare__table {
    min-width: 580px;
  }

  .enterprise-compare__th,
  .enterprise-compare__td {
    padding: 12px 14px;
    font-size: 12px;
  }

  .enterprise-compare__col-title {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .enterprise-compare__title {
    font-size: 20px;
  }

  .enterprise-compare__subtitle {
    font-size: 15px;
  }
}

/* ===== SECURITY SECTION ===== */
.enterprise-security {
  background: #fff;
  padding: 24px 0 60px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-security__title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

/* Card */
.enterprise-security__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.enterprise-security__card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  border-color: #6366f1;
  transform: translateY(-3px);
}

/* Icon wrap */
.enterprise-security__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 18px;
}

.enterprise-security__icon-wrap--indigo {
  background: #c7d2fe;
  color: #4f46e5;
}

.enterprise-security__icon-wrap--purple {
  background: #e9d5ff;
  color: #7c3aed;
}

.enterprise-security__icon-wrap--orange {
  background: #fed7aa;
  color: #ea580c;
}

.enterprise-security__icon-wrap--green {
  background: #bbf7d0;
  color: #16a34a;
}

.enterprise-security__icon-wrap--blue {
  background: #bfdbfe;
  color: #2563eb;
}

/* Card text */
.enterprise-security__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.35;
}

.enterprise-security__card-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .enterprise-security__title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .enterprise-security__title {
    font-size: 20px;
  }

  .enterprise-security {
    padding: 20px 0 40px;
  }
}

/* ===== ONBOARDING SECTION ===== */
.enterprise-onboard {
  background: #fff;
  padding: 28px 0 64px;
  font-family: 'Poppins', sans-serif;
}

.enterprise-onboard__title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 12px;
}

.enterprise-onboard__subtitle {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* Card wrapper — positions the day badge above the card */
.enterprise-onboard__card-wrap {
  position: relative;
  padding-top: 18px;
  height: 100%;
}

/* Day badge */
.enterprise-onboard__day-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e0e7ff;
  color: #3730a3;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
}

/* Card */
.enterprise-onboard__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.enterprise-onboard__card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  border-color: #6366f1;
  transform: translateY(-4px);
}

/* Icon wrap */
.enterprise-onboard__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
}

.enterprise-onboard__icon-wrap--indigo {
  background: #c7d2fe;
  color: #4f46e5;
}

.enterprise-onboard__icon-wrap--purple {
  background: #e9d5ff;
  color: #7c3aed;
}

.enterprise-onboard__icon-wrap--orange {
  background: #fed7aa;
  color: #ea580c;
}

.enterprise-onboard__icon-wrap--green {
  background: #bbf7d0;
  color: #16a34a;
}

/* Card text */
.enterprise-onboard__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.35;
}

.enterprise-onboard__card-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .enterprise-onboard__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .enterprise-onboard__title {
    font-size: 22px;
  }

  .enterprise-onboard__card-wrap {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .enterprise-onboard {
    padding: 20px 0 44px;
  }

  .enterprise-onboard__title {
    font-size: 20px;
  }

  .enterprise-onboard__subtitle {
    font-size: 15px;
  }
}

/* ===== CTA SECTION ===== */
.enterprise-cta {
  background: #0A1A6F;
  padding: 36px 0;
  font-family: 'Poppins', sans-serif;
}

.enterprise-cta__title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.enterprise-cta__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 32px;
}

.enterprise-cta__btn {
  display: inline-block;
  border: 2px solid #FFCC00;
  color: #FFCC00 !important;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
  transition: background 0.22s ease, color 0.22s ease;
}

.enterprise-cta__btn:hover {
  background: #FFCC00;
  color: #0A1A6F !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .enterprise-cta__title {
    font-size: 24px;
  }
  .enterprise-cta__subtitle {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .enterprise-cta {
    padding: 48px 0;
  }
  .enterprise-cta__title {
    font-size: 21px;
  }
  .enterprise-cta__btn {
    width: 100%;
    text-align: center;
  }
}
