/* ============================================================
   LUMA WEB SOLUTIONS — Shared Stylesheet
   Class naming convention: block, block__element, block--modifier
   ============================================================ */

:root {
  --luma-navy-950: #070c26;
  --luma-navy-900: #0a1440;
  --luma-navy-600: #101c56;
  --luma-blue-600: #2f5bff;
  --luma-blue-500: #4d7bff;
  --luma-purple-600: #6a3bd6;
  --luma-teal-500: #17b6c4;
  --luma-green-500: #1fae63;
  --luma-ink-900: #0d1230;
  --luma-ink-600: #3c4260;
  --luma-ink-500: #6b7190;
  --luma-fog-100: #f4f6fc;
  --luma-fog-200: #eaeefb;
  --luma-line: #e3e7f5;
  --luma-white: #ffffff;
  --luma-radius-lg: 18px;
  --luma-radius-md: 12px;
  --luma-radius-sm: 8px;
  --luma-shadow-card: 0 10px 30px rgba(13, 18, 48, .06);
  --luma-shadow-pop: 0 20px 45px rgba(13, 18, 48, .14);


}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif !important;
  color: var(--luma-ink-900);
  background: var(--luma-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

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

.container-xl {
  max-width: 1280px;
}

/* ---------- Utility ---------- */
.text-accent-blue {
  color: #0052fb;
}

.text-accent-green {
  color: var(--luma-green-500);
}



:focus-visible {
  outline: 3px solid var(--luma-blue-500);
  outline-offset: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  background: var(--luma-navy-900);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--luma-white);
}

.brand__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .03em;
}

.brand__tag {
  font-size: .55rem;
  letter-spacing: .22em;
  color: var(--luma-blue-500);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav__link {
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: .92rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: var(--luma-white);
}

.main-nav__link.is-active {
  color: var(--luma-white);
  border-color: var(--luma-blue-500);
}




.btn-luma-primary__icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-luma-outline {
  background: transparent;
  color: var(--luma-white);
  border: 1.5px solid rgba(255, 255, 255, .5);
  font-weight: 600;
  font-size: .92rem;
  padding: .68rem 1.3rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s ease, border-color .2s ease;
}

.btn-luma-outline:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--luma-white);
  border-color: var(--luma-white);
}

.btn-luma-outline__icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.navbar-toggler-luma {
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 6px;
  padding: .35rem .55rem;
  background: transparent;
}

.navbar-toggler-luma__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

/* ============================================================
   pricing-hero BANNER (bg image, left = content, right = image)
   ============================================================ */
.pricing-hero {
  position: relative;
  background-image: url('../imgs/pricing-page/pricing-banner.png');
  background-size: cover;
  background-position: center;
  color: var(--luma-white);
  overflow: hidden;
  padding-block: 4.5rem;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(79, 123, 255, .35), transparent 55%);
  pointer-events: none;
}

.pricing-hero__row {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.pricing-hero__col--content {
  flex: 1 1 50%;
  min-width: 0;
}

.pricing-hero__col--media {
  flex: 1 1 50%;
  min-width: 0;
}

.pricing-hero__eyebrow {
  color: var(--luma-blue-500);
}

.pricing-hero__title {
  color: #070c26;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.pricing-hero__title-accent {
  color: #0052fb;
}

.pricing-hero__subtitle {
  font-size: 1.05rem;
  color: var(--luma-ink-900);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.5rem;
}

.pricing-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-hero-features__item {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.pricing-hero-features__icon {
  width: 22px;
  height: 22px;
  /* filter: brightness(0) invert(1) opacity(.9); */
}

.pricing-hero-features__label {
  font-size: 16px;
  font-weight: 600;
  color: #070c26;
}

.pricing-hero__media-frame {
  position: relative;
  border-radius: var(--luma-radius-lg);
  overflow: hidden;

}

.pricing-hero__media-frame img {
  width: 100%;
  height: auto;
}

.pricing-hero__badge {
  position: absolute;
  background: var(--luma-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem .5rem .5rem;
  box-shadow: var(--luma-shadow-card);
  font-size: .75rem;
  font-weight: 600;
  color: var(--luma-ink-900);
}

.pricing-hero__badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.pricing-hero__badge--design {
  top: 6%;
  left: -4%;
}

.pricing-hero__badge--develop {
  top: 0;
  right: 12%;
}

.pricing-hero__badge--grow {
  bottom: 22%;
  left: -6%;
}

.pricing-hero__badge--support {
  bottom: 8%;
  right: -2%;
}

.pricing-card--popular {
  position: relative;
  overflow: hidden;
  border: 2px solid #2F5BFF;
  border-radius: 16px;
}

.pricing-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #2F5BFF;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
  border-radius: 16px 16px 0 0;
}

/* ============================================================
   CORE SERVICES
   ============================================================ */
.section {
  padding-block: 20px;
}

.section-head {
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-head__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: .6rem;
}

.section-head__subtitle {
  color: var(--luma-ink-500);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: box-shadow .2s ease, transform .2s ease;
}


.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-card__icon {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: .5rem;
}

.service-card__desc {
  color: var(--luma-ink-500);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.service-card__link {
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.service-card__link-icon {
  width: 14px;
  height: 14px;
}

.icon-bg--blue {
  background: #e7edff;
  color: #0052fb;
}

.icon-bg--purple {
  background: #f1e9fc;
  color: var(--luma-purple-600);
}

.icon-bg--orange {
  background: #fdece1;
  color: #e8722c;
}

.icon-bg--green {
  background: #e4f7ec;
  color: var(--luma-green-500);
}

.icon-bg--teal {
  background: #e2f7f9;
  color: var(--luma-teal-500);
}

.icon-bg--pink {
  background: #fde8f0;
  color: #e0396f;
}

/* ============================================================
   HIGHLIGHT COLUMNS (Marketing / IT Department / Why Choose / Hosting)
   ============================================================ */
.highlight-cols {
  display: grid;
  gap: 1.5rem;
}

.highlight-cols--4 {
  grid-template-columns: repeat(4, 1fr);
}

.highlight-cols--3 {
  grid-template-columns: 1.1fr 1.1fr .95fr;
}

.highlight-cols--2 {
  grid-template-columns: 1fr 1fr;
}

.highlight-card {
  border-radius: var(--luma-radius-md);
  padding: 1.75rem;
  height: 100%;
}

.highlight-card--plain {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
}

.highlight-card--tint {
  background: var(--luma-fog-200);
}

.highlight-card--navy {
  background: var(--luma-navy-900);
  color: var(--luma-white);
}

.highlight-card__title {
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.highlight-card__media {
  margin-bottom: 1.1rem;
  position: relative;
}

.highlight-card__media img {
  border-radius: var(--luma-radius-sm);
  width: 100%;
}

.highlight-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.highlight-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--luma-ink-600);
}

.highlight-card__list-icon {
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  flex: 0 0 auto;
}

.highlight-card__note {
  font-size: .78rem;
  color: var(--luma-ink-500);
}

.highlight-card__people {
  border-radius: var(--luma-radius-sm);
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.social-row {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.1rem;
}

.social-row__icon {
  width: 30px;
  height: 30px;
}

/* ============================================================
   ADDITIONAL SERVICES GRID (Services page)
   ============================================================ */
.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.mini-service-card {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-sm);
  padding: 1.2rem 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.mini-service-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #e7edff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-service-card__icon {
  width: 20px;
  height: 20px;
}

.mini-service-card__label {
  font-weight: 600;
  font-size: .85rem;
  line-height: 1.35;
}

/* ============================================================
   FEATURE STRIP (Why LUMA page — 6 icon columns)
   ============================================================ */
.feature-strip {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-lg);
  box-shadow: var(--luma-shadow-card);
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}

.feature-strip__item {
  text-align: center;
}

.feature-strip__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #e7edff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
}

.feature-strip__icon {
  width: 24px;
  height: 24px;
}

.feature-strip__title {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .3rem;
}

.feature-strip__desc {
  font-size: .78rem;
  color: var(--luma-ink-500);
  line-height: 1.5;
}

/* ============================================================
   TRUST STRIP (photo + 5 icon items)
   ============================================================ */
.trust-strip {
  background: var(--luma-fog-100);
  border-radius: var(--luma-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 2.15fr;
  align-items: center;
}

.trust-strip__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.trust-strip__content {
  padding: 2.25rem;
}

.trust-strip__heading {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-item {
  text-align: center;
}

.trust-item__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--luma-white);
  box-shadow: var(--luma-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}

.trust-item__icon {
  width: 24px;
  height: 24px;
}

.trust-item__title {
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .3rem;
}

.trust-item__desc {
  font-size: .75rem;
  color: var(--luma-ink-500);
  line-height: 1.45;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar-pricing {
  background: linear-gradient(90deg, #0052fb, var(--luma-purple-600));
  border-radius: var(--luma-radius-lg);
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  color: var(--luma-white);
}

.stat-item-pricing__icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}

.stat-item-pricing__value {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
}

.stat-item-pricing__label-pricing-pricing {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  margin-top: .15rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 1.75rem;
  box-shadow: var(--luma-shadow-card);
}

.testimonial-card__stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .9rem;
}

.testimonial-card__star {
  width: 16px;
  height: 16px;
}

.testimonial-card__quote {
  font-size: .92rem;
  color: var(--luma-ink-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  min-height: 5.5rem;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-card__role {
  font-size: .78rem;
  color: var(--luma-ink-500);
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--luma-shadow-card);
}

.testimonials__arrow--prev {
  left: -1.25rem;
}

.testimonials__arrow--next {
  right: -1.25rem;
}

.testimonials__arrow img {
  width: 14px;
  height: 14px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--luma-navy-900);
  border-radius: var(--luma-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}

.cta-banner__content {
  padding: 2.5rem;
  color: var(--luma-white);
}

.cta-banner__title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.cta-banner__title-accent {
  color: var(--luma-blue-500);
}

.cta-banner__subtitle {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  margin-bottom: 1.4rem;
}

.cta-banner__media {
  height: 100%;
  min-height: 220px;
  position: relative;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 2.6fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-info {
  background: #F0F5FD;
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 2rem;
}

.contact-info__title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.contact-info__desc {
  color: var(--luma-ink-600);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.contact-info__icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  /* background: #e7edff; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-info__icon {
  width: 35px;
  /* height: 18px; */
}

.contact-info__label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: .15rem;
}

.contact-info__value {
  font-size: .85rem;
  color: var(--luma-ink-600);
  line-height: 1.5;
}

.contact-info__btn {
  margin-top: .4rem;
}

.contact-form {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 2rem;
  box-shadow: var(--luma-shadow-card);
}

.contact-form__title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field__label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  /* margin-bottom: .45rem; */
}

.form-field__label-req {
  color: #e0396f;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  border: 1px solid var(--luma-line);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .88rem;
  color: var(--luma-ink-900);
  background: var(--luma-white);
}

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

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: #a2a7c2;
}

.form-field__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem .5rem;
}

.form-check-luma {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .86rem;
  color: var(--luma-ink-600);
}

.form-check-luma input {
  width: 16px;
  height: 16px;
}

.form-field__captcha {
  border: 1px solid var(--luma-line);
  border-radius: 8px;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--luma-fog-100);
}

.form-field__captcha-left {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 600;
}

.form-field__note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--luma-ink-500);
  margin: 1rem 0 1.25rem;
}

.form-field__note-icon {
  width: 14px;
  height: 14px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: .85rem;
  font-size: 1rem;
}

.help-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: #F0F5FD;
  border-radius: var(--luma-radius-md);
  padding: 1.75rem;
}

.help-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.help-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  /* background: #0052fb; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.help-card__icon {
  width: 80px;
  height: 80px;
  /* filter: brightness(0) invert(1); */
}

.help-card__title {
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: .2rem;
}

.help-card__desc {
  font-size: .82rem;
  color: var(--luma-ink-600);
  margin-bottom: .6rem;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--luma-white);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 1.9rem 1.6rem;
  position: relative;
}



.pricing-card__tier {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .08em;
  color: #0052fb;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.pricing-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--luma-ink-600);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 600;
  color: #0052fb;
  line-height: 1;
}

.pricing-card__price sup {
  font-size: 30px;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 600;
}

sup {
  top: 10px !important;
}

.pricing-card__period {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--luma-ink-500);
  margin: .35rem 0 1rem;
}

.pricing-card__desc {
  font-size: 16px;
  color: var(--luma-ink-500);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.pricing-btn {
  width: 100%;
  height: 56px;
  border: 2px solid #4D5BFF;
  border-radius: 10px;
  background: transparent;
  color: #4D5BFF;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  transition: all .3s ease;
}

.pricing-btn__icon {
  font-size: 20px;
  color: #2f5bff;
  transition: transform .3s ease;
}

.pricing-btn:hover {
  background: #2f5bff;
  color: #fff;
}

.pricing-btn:hover .pricing-btn__icon {
  color: #fff;
  transform: translateX(6px);
}

.pricing-card__cta-icon {
  color: #2f5bff;
  /* Arrow color */
  font-size: 18px;
  /* Arrow size */
  font-weight: 600;
  transition: transform 0.3s ease;
}

.pricing-card__list-icon {
  width: 28px;
  height: 28px;
  border: 2px solid #2F5BFF;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card__list-icon i {
  color: #2F5BFF;
  font-size: 16px;
  font-weight: 600;
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  width: 100%;
  height: 56px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: all .3s ease;
}

.btn-luma-outline__icon {
  font-size: 14px;
  color: #0052fb;
  transition: transform 0.3s ease;
}

.pricing-card__cta:hover .btn-luma-outline__icon {
  transform: translateX(4px);
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

.compare-panel {
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  gap: 1.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.compare-table th,
.compare-table td {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid var(--luma-line);
  font-size: 16px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table thead th {
  font-weight: 500;
  color: var(--luma-ink-900);
}

.compare-table__feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--luma-ink-600);
  font-weight: 600;
}

.compare-table__feature-icon {
  width: 16px;
  height: 16px;
}

.compare-table__check {
  width: 18px;
  height: 18px;
}

.compare-table__title {
  font-weight: 600;
  font-size: 32px;
  /* margin-bottom: 1.25rem; */
}

.compare-table__icon-cell {
  text-align: center;
  vertical-align: middle;
}

.compare-table__check-icon {
  color: #00a957;
  font-size: 22px;
}

.why-luma-box {
  background: #f9f9f9;
  border-radius: var(--luma-radius-md);
  padding: 1.75rem;
  text-align: center;
  height: 100%;
}

.why-luma-box__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--luma-white);
  box-shadow: var(--luma-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-luma-box__icon {
  width: 28px;
  height: 28px;
}

.why-luma-box__title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: .4rem;
}

.why-luma-box__desc {
  font-size: 16px;
  color: var(--luma-ink-500);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.why-luma-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.why-luma-box__list-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--luma-ink-600);
}

.why-luma-box__list-icon {
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  flex: 0 0 auto;
}



.faq-accordion .accordion-item {
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-sm) !important;
  margin-bottom: .85rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--luma-ink-900);
  padding: 1.1rem 1.3rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0052fb;
  background: var(--luma-fog-100);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: .86rem;
  color: var(--luma-ink-500);
  line-height: 1.65;
  padding: 0 1.3rem 1.2rem;
}

.cta-banner--split {
  background: linear-gradient(90deg, #0052fb, var(--luma-purple-600));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.cta-banner--split .cta-banner__media {
  min-height: auto;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}

.cta-banner--split .cta-banner__content {
  padding: 0;
}

.cta-banner--split .cta-banner__title {
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.cta-banner--split .cta-banner__subtitle {
  margin-bottom: 0;
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.35rem;
}

.industry-card {
  border-radius: var(--luma-radius-md);
  overflow: hidden;
  border: 1px solid var(--luma-line);
  background: var(--luma-white);
  transition: box-shadow .2s ease, transform .2s ease;
}


.industry-card__media {
  position: relative;
  /* height: 200px; */
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__icon-wrap {
  position: absolute;
  left: .9rem;
  bottom: -18px;
  /* width: 50px;
  height: 50px; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--luma-shadow-card);
}

.industry-card__icon {
  width: 20px;
  height: 20px;
}

.industry-card__body {
  padding: 1.5rem 1rem 1.1rem;
}

.industry-card__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: .35rem;
}

.industry-card__desc {
  font-size: 18px;
  color: var(--luma-ink-900);
  line-height: 1.5;
}

.more-industries-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--luma-fog-100);
  border: 1px solid var(--luma-line);
  border-radius: var(--luma-radius-md);
  padding: 1.5rem 1.75rem;
}

.more-industries-bar__left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.more-industries-bar__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--luma-white);
  box-shadow: var(--luma-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.more-industries-bar__icon {
  width: 22px;
  height: 22px;
}

.more-industries-bar__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.more-industries-bar__desc {
  font-size: .85rem;
  color: var(--luma-ink-500);
  line-height: 1.55;
}

.cta-banner--icon {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.9rem;
  background: linear-gradient(90deg, #0052fb, var(--luma-purple-600));
}

.cta-banner--icon .cta-banner__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cta-banner--icon .cta-banner__icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.cta-banner--icon .cta-banner__content {
  padding: 0;
  color: var(--luma-white);
}

.cta-banner--icon .cta-banner__title {
  font-size: 1.2rem;
  margin-bottom: .2rem;
}

.cta-banner--icon .cta-banner__subtitle {
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199.98px) {
  .highlight-cols--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .compare-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width:991.98px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--luma-navy-600);
    margin-top: 1rem;
    border-radius: 10px;
    padding: .5rem 1rem;
  }

  .main-nav__link {
    width: 100%;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }



  .pricing-hero__row {
    flex-direction: column;
    gap: 0;
  }

  .pricing-hero__col--content,
  .pricing-hero__col--media {
    flex: 1 1 100%;
  }

  .pricing-hero__title {
    font-size: 2.15rem;
  }

  .pricing-hero-features {
    gap: 1.25rem;
  }

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

  .highlight-cols--3 {
    grid-template-columns: 1fr;
  }

  .highlight-cols--2 {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip__media img {
    min-height: 200px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner__media {
    min-height: 180px;
  }

  .site-footer__grid {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 2fr 1fr 1fr;
  }

  .pricing-hero__badge {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .pricing-card--popular {
    transform: none;
  }

  .help-strip {
    grid-template-columns: 1fr;
  }

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

  .more-industries-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner--split,
  .cta-banner--icon {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner--split .cta-banner__media,
  .cta-banner--icon .cta-banner__icon-wrap {
    margin: 0 auto;
  }

  .compare-table {
    font-size: .78rem;
  }
}

@media (max-width:767.98px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .highlight-cols--4 {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats-bar-pricing {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .stat-item-pricing {
    flex-direction: column;
    gap: .35rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .pricing-hero__title {
    font-size: 1.85rem;
  }

  .cta-banner__content {
    padding: 1.75rem;
  }

  .form-field__checks {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .compare-table {
    font-size: .72rem;
  }
}

@media (max-width:575.98px) {
  .mini-services-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-pricing {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 2.75rem;
  }

  .pricing-hero {
    padding-block: 3rem;
  }

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

  .pricing-card--popular {
    margin-top: 1rem;
  }
}

/* Center heading content */
.pricing-card__tier,
.pricing-card__name,
.pricing-card__price,
.pricing-card__period,
.pricing-card__desc {
  text-align: center;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 600;
  color: #3520d7;
  margin-bottom: 5px;
}

.pricing-card__period {
  display: block;
  font-size: 15px;
  color: #777;
  margin-bottom: 15px;
}

.pricing-card__desc {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Tick list */
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-card__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* margin-bottom: 14px; */
}

/* Container layout: aligns stars and text side-by-side */
.why-luma-box__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Stars container */
.why-luma-box__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Individual star sizing */
.why-luma-box__star {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Text block layout (stacked) */
.why-luma-box__rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Large blue number text */
.why-luma-box__rating-text .count {
  font-size: 24px;
  font-weight: 600;
  color: #2b2bee;
  /* Bright blue tint matching the image */
  letter-spacing: -0.5px;
}

/* Darker subtext */
.why-luma-box__rating-text .label {
  font-size: 13px;
  font-weight: 600;
  color: #3b3d52;
  /* Dark slate text color */
  margin-top: 2px;
}



/* =========================================
   CONTACT FEATURES
========================================= */

.contact-features {
  margin-top: .5rem;
}

.contact-feature {
  position: relative;

  min-height: 100px;

  padding: 0 1.25rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}


/* Icon */

.contact-feature-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: .45rem;
}

.contact-feature-icon img {
  width: 40px;
  height: 40px;

  object-fit: contain;
}


/* Content */

.contact-feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Title */

.contact-feature-title {
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  line-height: 1.3;

  margin-bottom: .2rem;
}


/* Description */

.contact-feature-desc {
  display: block;

  max-width: 150px;

  color: rgba(255, 255, 255, .72);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.45;
}


/* =========================================
   DESKTOP DIVIDERS
========================================= */

@media (min-width: 992px) {

  .contact-features .col:not(:last-child) .contact-feature::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 70px;

    /* background: rgba(255, 255, 255, .15); */

    transform: translateY(-50%);
  }

}

@media (max-width: 991px) {

  .contact-feature {
    min-height: 110px;
    padding: 1rem;
  }

  /* Vertical divider between 2 columns */
  .contact-features .col:nth-child(odd) .contact-feature::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 65px;

    /* background: rgba(255, 255, 255, .15); */

    transform: translateY(-50%);
  }

}

@media (max-width: 575px) {

  .contact-feature {
    min-height: 95px;
    padding: .75rem 1rem;
  }

  .contact-feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: .3rem;
  }

  .contact-feature-icon img {
    width: 40px;
    height: 40px;
  }

  .contact-feature-title {
    font-size: 16px;
  }

  .contact-feature-desc {
    font-size: 16px;
    max-width: 180px;
  }

  /* Horizontal divider on mobile */
  .contact-features .col:not(:last-child) .contact-feature::after {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    bottom: 0;

    width: auto;
    height: 1px;

    /* background: rgba(255, 255, 255, .15); */

    transform: none;
  }

}

.contact-hero {
  position: relative;
  background-image: url(../imgs/contact-page/contact-bg.png);
  background-size: cover;
  background-position: center;
  color: var(--luma-line);
  overflow: hidden;
  padding-block: 1.5rem;
}

.contact-hero__title {
  color: #fff;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.contact-hero__subtitle {
  font-size: 1.05rem;
  color: #fff;
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.contact-hero__title-accent {
  color: #0052fb;
}

.contact-submit-btn {
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1rem;

  background: #3036d9;
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;

  text-decoration: none;

  font-size: .85rem;
  font-weight: 600;

  transition: all .25s ease;
}

.contact-submit-btn i {
  font-size: .9rem;
  transition: transform .25s ease;
}

.contact-submit-btn:hover {
  background: #252bc4;
  color: #ffffff;
}

.contact-submit-btn:hover i {
  transform: translateX(4px);
}


.exp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  padding: .75rem 1.5rem;

  background: #ffffff;
  color: #3036d9;

  border: 1px solid #3036d9;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
  text-decoration: none;

  transition: all .25s ease;
}

.exp-btn i {
  font-size: .9rem;
  transition: transform .25s ease;
}

.exp-btn:hover {
  background: #3036d9;
  color: #ffffff;
  border-color: #3036d9;
}

.exp-btn:hover i {
  transform: translateX(4px);
}

/* =========================================
   SECURITY CHECK
========================================= */

.security-check {
  width: 100%;
}


/* Security Check Title */

.security-check-title {
  margin: 0;

  color: #202338;

  font-size: .75rem;
  font-weight: 600;
}

.security-check-title span {
  color: #e53935;
}


/* I'm Not a Robot Box */

.security-check-box {
  width: 100%;
  min-height: 76px;

  padding: .75rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fffaf0;

  border: 1px solid #eadfc8;
  border-radius: 5px;
}


/* Checkbox */

.security-check-robot {
  display: flex;
  align-items: center;

  margin: 0;
}

.security-check-robot .form-check-input {
  width: 27px;
  height: 27px;

  margin: 0 .7rem 0 0;

  border: 2px solid #d8cdb5;
  border-radius: 2px;

  cursor: pointer;
}

.security-check-robot .form-check-label {
  color: #202020;

  font-size: .8rem;

  cursor: pointer;
}


/* reCAPTCHA */

.security-check-recaptcha {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  line-height: 1;
}

.security-check-recaptcha img {
  width: 35px;
  height: 35px;

  margin-bottom: .15rem;
}

.security-check-recaptcha span {
  color: #555;

  font-size: .55rem;
  font-weight: 600;

  text-transform: uppercase;
}

.security-check-recaptcha small {
  color: #777;

  font-size: .45rem;

  margin-top: .2rem;
}


/* Security Note */

.security-check-note {
  display: flex;
  align-items: center;

  gap: .4rem;

  margin: 0;

  color: #6b7190;

  font-size: 12px;
}

.security-check-note i {
  color: #20263a;

  font-size: .7rem;
}

.pricing-hero__col--media {
  position: relative;
  min-height: 570px;
}

.pricing-hero__media-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.pricing-hero__media-frame img {
  width: 90%;
  height: auto;
  display: block;
  margin-left: auto;
}


/* Tablet + Mobile: 992px and below */
@media (max-width: 992px) {

  .contact-features-list {
    display: flex;
    flex-wrap: wrap;
  }

  .contact-features-list>li {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }

  /* Image comes after all 4 feature cards */
  .pricing-hero__col--media {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
    position: relative;
  }

  .pricing-hero__media-frame {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    left: auto;
    transform: none;
    text-align: center;
  }

  .pricing-hero__media-frame img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* 992px - 320px */
@media (max-width: 992px) and (min-width: 320px) {

  .contact-hero {
    position: relative;
    background-image: url("../imgs/contact-page/tab-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(2 8 34 / 50%);
    /* overlay */
    z-index: 0;
  }

  .contact-hero>* {
    position: relative;
    z-index: 1;
  }

}

@media (max-width: 992px) and (min-width: 320px) {

  .contact-features-list>li.col {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }

}

@media (max-width: 992px) and (min-width: 320px) {
  .pricing-hero__col--media {
    min-height: 0;
    height: auto;
  }
}

@media (min-width: 320px) and (max-width: 575.98px) {
  .contact-features>.col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 1662px) and (min-width: 1200px) {
  .contact-info__title {
    font-weight: 600;
    font-size: 18px;
  }
}

/* Desktop: 4 columns */
.contact-features>.col {
  border-right: 1px solid #5e5e5e;
}

@media (max-width: 991.98px) {
  .contact-features>.col {
    border-right: none;
  }
}

.contact-features>.col:last-child {
  border-right: 0;
}


.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      transparent 100%);
}


/* ==========================================
   LUMA PRICING HERO
========================================== */

.luma-pricing-hero {
  position: relative;
  overflow: hidden;

  background-image: url("../imgs/pricing-page/pricing-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 277px;
}


/* ==========================================
   CONTENT
========================================== */

.luma-pricing-hero__content {
  position: relative;
  z-index: 2;

  padding: 30px 0;
}

.luma-pricing-hero__title {
  margin: 0 0 14px;

  color: #111640;
  font-size: 2.85rem;
  font-weight: 600;
  line-height: 1.15;
}

.luma-pricing-hero__title span {
  color: #155cff;
}

.luma-pricing-hero__description {
  max-width: 600px;
  margin: 0 0 20px;

  color: #111640;
  font-size: 18px;
  line-height: 1.7;
}


/* ==========================================
   FEATURES
========================================== */

.luma-pricing-hero__features {
  position: relative;
  background-image: url(../imgs/pricing-page/pricing-banner.png);
  background-size: cover;
  background-position: center;
  color: var(--luma-line);
  overflow: hidden;
  padding-block: 1.5rem;
  max-height: 600px;
}

.luma-pricing-hero__features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(255 255 255 / 98%) 0%, rgb(187 184 184 / 45%) 50%, transparent 100%);
}

.luma-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.luma-pricing-feature__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* border: 1.5px solid #155cff; */
  border-radius: 6px;

  /* color: #155cff; */
  font-size: 13px;
}

.luma-pricing-feature__content {
  display: flex;
  flex-direction: column;

  color: #111640;
  font-size: 14px;
  line-height: 1.3;
}

.luma-pricing-feature__content strong {
  font-weight: 600;
}

.luma-pricing-feature__content span {
  font-weight: 500;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

.luma-pricing-hero__media {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.luma-pricing-hero__image {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  max-width: 650px;
  height: auto;

  object-fit: contain;
}


/* ==========================================
   LARGE DESKTOP
   1200px+
========================================== */

@media (min-width: 1200px) {

  .luma-pricing-hero__content {
    padding-left: 20px;
  }

  .luma-pricing-hero__media {
    margin-right: -30px;
  }

  .luma-pricing-hero__image {
    max-width: 680px;
  }
}


/* ==========================================
   992px - 1199px
========================================== */

@media (max-width: 1199.98px) and (min-width: 992px) {

  .luma-pricing-hero__title {
    font-size: 32px;
  }

  .luma-pricing-hero__description {
    font-size: 12px;
  }

  .luma-pricing-hero__image {
    max-width: 560px;
  }

  .luma-pricing-feature__content {
    font-size: 9px;
  }
}


/* ==========================================
   768px - 991px
========================================== */

@media (max-width: 991.98px) {

  .luma-pricing-hero {
    min-height: auto;
    background-position: center;
  }

  .luma-pricing-hero__content {
    padding: 35px 0 20px;
  }

  .luma-pricing-hero__title {
    font-size: 32px;
  }

  .luma-pricing-hero__description {
    max-width: 600px;
    font-size: 13px;
  }

  /* .luma-pricing-hero__features {
    max-width: 600px;
  } */

  .luma-pricing-hero__media {
    padding: 10px 0 30px;
  }

  .luma-pricing-hero__image {
    width: 80%;
    max-width: 550px;
  }
}


/* ==========================================
   576px - 767px
========================================== */

@media (max-width: 767.98px) {

  .luma-pricing-hero__content {
    padding: 30px 0 10px;
  }

  .luma-pricing-hero__title {
    font-size: 28px;
  }

  .luma-pricing-hero__description {
    font-size: 12px;
    line-height: 1.6;
  }

  .luma-pricing-feature {
    margin-bottom: 8px;
  }

  .luma-pricing-hero__media {
    padding: 10px 0 25px;
  }

  .luma-pricing-hero__image {
    width: 90%;
  }
}


/* ==========================================
   320px - 575px
========================================== */

@media (max-width: 575.98px) {

  .luma-pricing-hero__content {
    padding: 25px 0 5px;
  }

  .luma-pricing-hero__title {
    font-size: 25px;
  }

  .luma-pricing-hero__description {
    font-size: 11px;
  }

  .luma-pricing-feature {
    gap: 8px;
  }

  .luma-pricing-feature__icon {
    width: 25px;
    height: 25px;
    min-width: 25px;

    font-size: 11px;
  }

  .luma-pricing-feature__content {
    font-size: 9px;
  }

  .luma-pricing-hero__image {
    width: 100%;
  }
}

.luma-pricing-hero__features>.col-sm-4:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}

/* 991px - 320px: remove borders */
@media (max-width: 991.98px) {
  .luma-pricing-hero__features>.col-sm-4 {
    border-right: none;
  }
}

.luma-pricing-hero__media-frame {
  position: relative;
  /* border-radius: var(--luma-radius-lg); */
  overflow: hidden;

}

.luma-pricing-hero__media-frame img {
  width: 100%;
  height: auto;
}

.pricing-contact-hero__title {
  color: var(--luma-ink-900);
  font-weight: 600;
  font-size: 2.85rem;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.pricing-contact-hero__subtitle {
  font-size: 1.05rem;
  color: var(--luma-ink-900);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.luma-pricing-hero__features .contact-feature-title {
  color: var(--luma-ink-900);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .2rem;
}

.luma-pricing-hero__features .contact-feature-desc {
  display: block;
  max-width: 150px;
  color: var(--luma-ink-900);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.luma-pricing-hero__col--media {
  position: relative;
  min-height: 570px;
}

.luma-pricing-hero__media-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.luma-pricing-hero__media-frame img {
  width: 100%;
  height: auto;
  display: block;
  /* filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25)); */
}

.luma-media {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin-top: 30px;
  position: relative;
}

.luma-media {
  position: relative;
  min-height: 550px;
}

.luma-media {
  flex: 1 1 50%;
  min-width: 0;
}

@media (max-width:991.98px) {

  .luma-media {
    flex: 1 1 100%;
  }

}

@media (max-width: 992px) and (min-width: 320px) {
  .luma-media {
    min-height: 0;
    height: auto;
  }
}
.luma-pricing-hero__features .contact-hero__title {
    color: var(--luma-ink-900);
    font-weight: 600;
    font-size: 2.85rem;
    line-height: 1.12;
    margin-bottom: 1.1rem;
}

.luma-pricing-hero__features .contact-hero__subtitle {
    font-size: 1.05rem;
    color: var(--luma-ink-900);
    max-width: 34rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

/* ==============================
   TABLET + MOBILE
   768px to 320px
   ============================== */


        @media (max-width: 768px) and (min-width: 320px) {

    /* Main section */
    .luma-pricing-hero__features {
        background-image: url("../imgs/pricing-page/pricing-tb.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
     max-height: 100%;
        overflow: hidden;
    }

    /* Row */
    .luma-pricing-hero__features .pricing-hero__row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* CONTENT */
    .luma-pricing-hero__features .pricing-hero__col--content {
        width: 100%;
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Heading */
    .luma-pricing-hero__features .contact-hero__title {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Paragraph */
    .luma-pricing-hero__features .contact-hero__subtitle {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Features */
    .luma-pricing-hero__features .pricing-hero-features {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* IMAGE COLUMN */
    .luma-pricing-hero__features .pricing-hero__col--media {
        width: 100%;
        order: 2;

        /* IMPORTANT: remove desktop positioning */
        position: static !important;

        display: flex;
        justify-content: center;
        align-items: flex-end;

        margin-top: 20px;
    }

    /* IMAGE WRAPPER */
    .luma-pricing-hero__features .luma-pricing-hero__media-frame {
        position: static !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin: 0 auto;
    }

    /* IMAGE */
    .luma-pricing-hero__features .luma-pricing-hero__media-frame img {
        position: static !important;
        display: block;
        width: auto;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }
}



@media (max-width: 1064px) and (min-width: 993px) {

    .luma-pricing-hero__features .pricing-hero__row {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    /* LEFT - 50% */
    .luma-pricing-hero__features .pricing-hero__col--content {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* RIGHT - 50% */
    .luma-pricing-hero__features .pricing-hero__col--media {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;

        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    /* Laptop */
    .luma-pricing-hero__features .luma-pricing-hero__media-frame {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .luma-pricing-hero__features .luma-pricing-hero__media-frame img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

}
@media (max-width: 992px) and (min-width: 768px) {

    /* ===============================
       MAIN SECTION
       =============================== */

    .luma-pricing-hero__features {
        background-image: url("../imgs/pricing-page/pricing-tb.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    /* ===============================
       ROW
       =============================== */

    .luma-pricing-hero__features .pricing-hero__row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        height: auto !important;
        min-height: 0 !important;
    }

    /* ===============================
       CONTENT - FIRST
       =============================== */

    .luma-pricing-hero__features .pricing-hero__col--content {
        order: 1 !important;

        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;

        position: static !important;
        inset: auto !important;

        text-align: center !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        margin: 0 auto !important;
        padding-bottom: 20px;
    }

    .luma-pricing-hero__features .contact-hero__title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .luma-pricing-hero__features .contact-hero__subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .luma-pricing-hero__features .pricing-hero-features {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* ===============================
       LAPTOP - SECOND
       =============================== */

    .luma-pricing-hero__features .pricing-hero__col--media,
    .luma-pricing-hero__features .luma-media {
        order: 2 !important;

        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;

        /* REMOVE DESKTOP POSITION */
        position: static !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;

        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    /* ===============================
       IMAGE WRAPPER
       =============================== */

    .luma-pricing-hero__features .luma-pricing-hero__media-frame {
        position: static !important;
        inset: auto !important;

        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    /* ===============================
       LAPTOP IMAGE
       =============================== */

    .luma-pricing-hero__features .luma-pricing-hero__media-frame img {
        position: static !important;
        inset: auto !important;

        display: block !important;

        width: auto !important;
        max-width: 50% !important;
        height: auto !important;

        margin: 0 auto !important;

        transform: none !important;
    }

}





  /*====================================================
Pricing Section
====================================================*/

    .pricing-plan-section {
        padding: 90px 0;
        background: #ffffff;
    }

    .pricing-plan-section .pricing-card {
        position: relative;
        background: #ffffff;
        border: 1px solid #e8edf5;
        border-radius: 20px;
        overflow: hidden;
        padding: 20px 10px;
        height: 100%;
        transition: all .35s ease;
        box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
    }
.blue-bg {
    background: #2166ff;
}
    /* .pricing-plan-section .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
} */

    /*====================================================
Header
====================================================*/

    .pricing-card-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .pricing-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        color: #fff;
        font-size: 30px;
    }

    .pricing-card-header h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .pricing-card-header p {
        font-size: 16px;
        line-height: 1.7;
        color: #0e1014;
        max-width: 260px;
        margin: 0 auto;
        text-align: center;
    }

    /*====================================================
One Time Price
====================================================*/

    .pricing-setup-price {
        text-align: center;
        margin-bottom: 25px;
    }

    .pricing-setup-price h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .pricing-setup-price span {
        font-size: 12px;
        font-weight: 600;
        color: #1f2328;
        letter-spacing: 1px;
    }

    /*====================================================
Monthly Price Box
====================================================*/

    .pricing-monthly-box {
        padding: 10px;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 30px;
    }

    .pricing-monthly-box h4 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .pricing-monthly-box h4 span {
        font-size: 20px;
        font-weight: 600;
    }

    .pricing-monthly-box p {
        margin: 0;
        color: #475569;
        font-size: 16px;
    }

    /*====================================================
Features
====================================================*/

    .pricing-feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        /* margin-bottom: 14px; */
        font-size: 16px;
        color: #334155;
    }

    .pricing-feature-list li i {
        font-size: 16px;
    }

    .new-badge {
        margin-left: auto;
        background: #16a34a;
        color: #fff;
        padding: 3px 8px;
        border-radius: 5px;
        font-size: 11px;
        font-weight: 600;
    }

    /*====================================================
Button
====================================================*/

    .pricing-btn-wrap {
        margin-top: 35px;
    }

    .pricing-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 52px;
        border-radius: 10px;
        font-size: 17px;
        font-weight: 600;
        transition: .3s;
    }

    /*====================================================
Starter Plan
====================================================*/
    /* 
.starter-plan .pricing-icon {
    background: #1d4ed8;
} */

    .starter-plan h3 {
        color: #1d4ed8;
    }

    .starter-plan .pricing-setup-price h2 {
        color: #1d4ed8;
    }

    .starter-plan .pricing-monthly-box {
        background: #eff6ff;
    }

    .starter-plan .pricing-monthly-box h4 {
        color: #1d4ed8;
    }

    .starter-plan .pricing-feature-list li i {
        color: #1d4ed8;
    }

    .starter-btn {
        background: #1d4ed8;
        color: #fff;

        text-decoration: none;
    }

    .starter-btn:hover {
        border: 2px solid #1d4ed8;
        color: #1d4ed8;
        background: #fff;
    }

    /*====================================================
Most Popular Ribbon
====================================================*/

    .popular-tag {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 34px;
        background: #0b8f3a;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .8px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px 20px 0 0;
    }

    .professional-plan {
        border: 2px solid #0b8f3a;
        transform: scale(1.03);
        z-index: 2;
    }

    /* .professional-plan:hover {
    transform: scale(1.03) translateY(-8px);
} */

    /* Space for ribbon */
    .professional-plan .pricing-card-header {
        margin-top: 25px;
    }

    /*====================================================
Professional Plan
====================================================*/

    .professional-plan .pricing-icon {
        background: #0b8f3a;
    }

    .professional-plan h3 {
        color: #0b8f3a;
    }

    .professional-plan .pricing-setup-price h2 {
        color: #0b8f3a;
    }

    .professional-plan .pricing-monthly-box {
        background: #edf9f0;
    }

    .professional-plan .pricing-monthly-box h4 {
        color: #0b8f3a;
    }

    .professional-plan .pricing-feature-list li i {
        color: #0b8f3a;
    }

    .professional-btn {
        width: 100%;
        background: #0b8f3a;
        color: #fff;
        border: 2px solid #0b8f3a;
        text-decoration: none;
    }

    .professional-btn:hover {
        background: #fff;
        color: #0b8f3a;
    }

    /*====================================================
Business Plan
====================================================*/

    .business-plan .pricing-icon {
        background: #7e22ce;
    }

    .business-plan h3 {
        color: #7e22ce;
    }

    .business-plan .pricing-setup-price h2 {
        color: #7e22ce;
    }

    .business-plan .pricing-monthly-box {
        background: #f7f0fd;
    }

    .business-plan .pricing-monthly-box h4 {
        color: #7e22ce;
    }

    .business-plan .pricing-feature-list li i {
        color: #7e22ce;
    }

    .business-btn {
        width: 100%;
        background: #7e22ce;
        color: #fff;
        border: 2px solid #7e22ce;
        text-decoration: none;
    }

    .business-btn:hover {
        background: #fff;
        color: #7e22ce;
    }

    /*====================================================
Hover Effects
====================================================*/

    .pricing-btn {
        transition: all .3s ease;
    }

    .pricing-icon {
        transition: .35s;
    }

    .pricing-feature-list li {
        transition: .25s;
    }

  

    .new-badge {
        transition: .3s;
    }

    
    /*====================================================
Equal Height
====================================================*/

    .pricing-card {
        display: flex;
        flex-direction: column;
    }

    .pricing-feature-list {
        flex-grow: 1;
    }

    .pricing-btn-wrap {
        margin-top: auto;
        padding-top: 25px;
    }

    /*====================================================
Responsive CSS
====================================================*/

    /*=========================
Large Devices
=========================*/
    @media (max-width: 1199px) {

        .pricing-plan-section {
            padding: 80px 0;
        }

        .pricing-plan-section .pricing-card {
            padding: 30px 25px;
        }

        .pricing-card-header h3 {
            font-size: 30px;
        }

        .pricing-setup-price h2 {
            font-size: 48px;
        }

        .pricing-monthly-box h4 {
            font-size: 32px;
        }

        .pricing-feature-list li {
            font-size: 14px;
        }

        .professional-plan {
            transform: scale(1);
        }

        

    }

    /*=========================
Tablet
=========================*/
    @media (max-width: 991px) {

        .pricing-plan-section {
            padding: 70px 0;
        }

        .pricing-card {
            margin-bottom: 25px;
        }

        .pricing-card-header h3 {
            font-size: 28px;
        }

        .pricing-card-header p {
            font-size: 15px;
        }

        .pricing-icon {
            width: 65px;
            height: 65px;
            font-size: 26px;
        }

        .pricing-setup-price h2 {
            font-size: 42px;
        }

        .pricing-monthly-box {
            padding: 16px;
        }

        .pricing-monthly-box h4 {
            font-size: 30px;
        }

        .pricing-monthly-box h4 span {
            font-size: 18px;
        }

        .pricing-btn {
            height: 50px;
            font-size: 16px;
        }

    }

    /*=========================
Mobile Landscape
=========================*/
    @media (max-width: 767px) {

        .pricing-plan-section {
            padding: 60px 0;
        }

        .pricing-plan-section .pricing-card {
            padding: 28px 20px;
        }

        .pricing-card-header {
            margin-bottom: 20px;
        }

        .pricing-card-header h3 {
            font-size: 26px;
        }

        .pricing-card-header p {
            font-size: 14px;
            line-height: 1.6;
        }

        .pricing-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .pricing-setup-price {
            margin-bottom: 20px;
        }

        .pricing-setup-price h2 {
            font-size: 38px;
        }

        .pricing-monthly-box {
            margin-bottom: 25px;
        }

        .pricing-monthly-box h4 {
            font-size: 28px;
        }

        .pricing-feature-list li {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .new-badge {
            font-size: 10px;
            padding: 2px 6px;
        }

        .pricing-btn {
            font-size: 15px;
        }

    }

    /*=========================
Mobile
=========================*/
    @media (max-width: 575px) {

        .pricing-plan-section {
            padding: 50px 0;
        }

        .pricing-plan-section .pricing-card {
            padding: 25px 18px;
            border-radius: 16px;
        }

        .pricing-icon {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }

        .pricing-card-header h3 {
            font-size: 24px;
        }

        .pricing-card-header p {
            font-size: 13px;
        }

        .pricing-setup-price h2 {
            font-size: 34px;
        }

        .pricing-setup-price span {
            font-size: 12px;
        }

        .pricing-monthly-box {
            padding: 15px;
        }

        .pricing-monthly-box h4 {
            font-size: 24px;
        }

        .pricing-monthly-box h4 span {
            font-size: 16px;
        }

        .pricing-monthly-box p {
            font-size: 13px;
        }

        .pricing-feature-list li {
            font-size: 13px;
            gap: 8px;
        }

        .pricing-feature-list li i {
            font-size: 15px;
        }

        .pricing-btn {
            width: 100%;
            height: 48px;
            font-size: 15px;
        }

        .popular-tag {
            font-size: 12px;
            height: 32px;
        }

    }

    /*=========================================
Plans Include Section
=========================================*/

    .plans-include-wrapper {
        background: #f8faff;
        border: 1px solid #e8eef8;
        border-radius: 18px;
        padding: 35px 25px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }

    /*=========================================
Section Title
=========================================*/

    .plans-include-wrapper .plans-include-title {
        text-align: center;
        color: #1d4ed8;
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 35px;
        letter-spacing: .5px;
    }

    /*=========================================
Feature Card
=========================================*/

    .plans-include-wrapper .plans-include-card {
        text-align: center;
        padding: 15px 20px;
        border-right: 1px solid #d9e3f3;
        transition: all .35s ease;
        height: 100%;
    }

    /*=========================================
Icon
=========================================*/

    .plans-include-wrapper .plans-include-card .plans-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 34px;
        transition: .35s;
    }


    .blue-icon {
        color: #1d4ed8;
    }

    /*=========================================
Heading
=========================================*/

    .plans-include-wrapper .plans-include-card h6 {
        font-size: 17px;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.6;
        margin: 0;
    }

    /*=========================================
Border Remove
=========================================*/

    .plans-include-wrapper .border-0 {
        border-right: none !important;
    }

    /*=========================================
Hover Effect
=========================================*/

    .plans-include-wrapper .plans-include-card:hover h6 {
        color: #1d4ed8;
    }

    /*=========================================
Responsive
=========================================*/

    @media (max-width:991px) {

        .plans-include-wrapper {
            padding: 30px 20px;
        }

        .plans-include-wrapper .plans-include-card {
            border-right: none;
            border-bottom: 1px solid #d9e3f3;
            padding: 25px 15px;
        }

        .plans-include-wrapper .plans-include-card h6 {
            font-size: 16px;
        }

        .plans-include-wrapper .plans-icon {
            width: 60px;
            height: 60px;
            font-size: 30px;
        }

    }

    @media (max-width:575px) {

        .plans-include-wrapper {
            padding: 25px 15px;
        }

        .plans-include-wrapper .plans-include-title {
            font-size: 18px;
            margin-bottom: 25px;
        }

        .plans-include-wrapper .plans-include-card {
            padding: 20px 10px;
        }

        .plans-include-wrapper .plans-icon {
            width: 55px;
            height: 55px;
            font-size: 26px;
            margin-bottom: 12px;
        }

        .plans-include-wrapper .plans-include-card h6 {
            font-size: 14px;
            line-height: 1.5;
        }

    }




.plans-include-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.plans-include-row > .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
}

.plans-include-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid #ddd;
}

.plans-include-card h6 {
    margin: 12px 0 0;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .plans-include-row > .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .plans-include-card {
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
}

@media (max-width: 575.98px) {
    .plans-include-row > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .plans-include-card {
        border-right: 1px solid #ddd;
    }

    .plans-include-row > .col-6:nth-child(even) .plans-include-card {
        border-right: 0;
    }

    .plans-include-row > .col-6:nth-child(4) .plans-include-card,
    .plans-include-row > .col-6:nth-child(5) .plans-include-card {
        border-bottom: 0;
    }
}

.plans-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.plans-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-hero{
      background-image: url(../imgs/service-pages/Services-Page.png);
}

.services-hero::before{
background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
}
.hero::before{
background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.45) 70%, transparent 100%);
}