:root {
  --bg: #020c17;
  --bg-2: #061526;
  --panel: #071a2d;
  --panel-2: #0a2038;
  --line: rgba(102, 173, 255, .28);
  --blue: #0c8dff;
  --cyan: #29c6ff;
  --text: #f7fbff;
  --muted: #9fb0c2;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 8%, rgba(0, 122, 255, .15), transparent 24%),
    linear-gradient(180deg, #020a13, #04101d 42%, #020a13);
  font-family: "Manrope", sans-serif;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(4, 29, 51, .92), rgba(1, 8, 14, 1));
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader-inner {
  text-align: center;
}

.spinner {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border: 3px solid rgba(255, 255, 255, .16);
  border-top-color: #1ca7ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader p {
  color: #d9ebfd;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

a {
  text-decoration: none
}

img {
  max-width: 100%
}

.section-pad {
  padding: 100px 0
}

.reviewer-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #0a7ee8, #17b4ff);
  border: 2px solid #1b9cff;
  box-shadow: 0 8px 24px rgba(0, 120, 240, .22);
}

.aarz-navbar {
  padding: 12px 0;
  background: rgba(1, 8, 15, .86);
  border-bottom: 1px solid rgba(72, 143, 219, .13);
  backdrop-filter: blur(18px);
}

.navbar-brand img {
  width: 95px;
  height: 58px;
  object-fit: contain;
  object-position: center
}

.navbar-nav .nav-link {
  color: #dce8f4;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 12px 4px !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transition: .25s;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #fff
}

.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  transform: scaleX(1)
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 22px rgba(0, 134, 255, .12);
}

.phone-pill i {
  color: var(--cyan)
}

.hero-section {
  position: relative;
  min-height: 860px;
  padding-top: 60px;
  overflow: hidden;
  background:
    
    url('../images/hero-background.png') center/cover no-repeat;
}

 .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 27, .88), rgba(2, 12, 23, .62) 58%, rgba(2, 12, 23, .78));
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  left: -260px;
  top: 180px;
  background: rgba(0, 132, 255, .15);
  filter: blur(90px);
} 

.eyebrow, .section-heading span {
  color: #1ba8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-section h1 {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 18px 0 20px;
  max-width: 620px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-section h1 span {
  color: #198fff
}

.hero-copy {
  color: #d5dfeb;
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  animation: fadeUp .8s ease both;
}

.hero-actions {
  animation: fadeUp 1s ease both;
}

.hero-features {
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary-custom, .btn-outline-custom {
  min-height: 48px;
  border-radius: 5px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .25s;
}

.btn-primary-custom {
  color: #fff;
  border: 1px solid #188ffc;
  background: linear-gradient(90deg, #0578ee, #159cff);
  box-shadow: 0 8px 28px rgba(0, 119, 255, .2);
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 119, 255, .28)
}

.btn-outline-custom {
  color: #fff;
  border: 1px solid #3e79ad;
  background: rgba(2, 18, 33, .55)
}

.btn-outline-custom:hover {
  color: #fff;
  border-color: #1d9cff;
  background: rgba(10, 104, 187, .18);
  transform: translateY(-2px)
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600
}

.hero-features i {
  color: #1ea8ff;
  border: 1px solid #1f88dd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 15px;
}


.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  background: linear-gradient(90deg, rgba(5, 28, 49, .98), rgba(7, 35, 61, .96));
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.stats-strip>div {
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(117, 170, 221, .22)
}

.stats-strip>div:last-child {
  border-right: 0
}

.stat-title {
  color: #26aafd;
  font-size: 12px;
  font-weight: 800;
  text-align: left !important;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stats-strip strong {
  display: block;
  font-size: 26px;
  font-family: "Space Grotesk", sans-serif;
}

.stats-strip span {
  display: block;
  color: #9dafc0;
  font-size: 12px;
  margin-top: 5px
}

.section-heading {
  margin-bottom: 48px
}

.section-heading h2, .entertainment-section h2, .business-copy h2, .coverage-copy h2, .cta-panel h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-top: 8px
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 65px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  margin: 15px auto 0;
}

.services-section {
  padding-top: 55px
}

.service-card {
  height: 100%;
  padding: 46px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 27, 47, .75), rgba(3, 15, 27, .9));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #1e91e9;
  box-shadow: 0 18px 45px rgba(0, 107, 210, .16)
}

.service-card>i {
  font-size: 52px;
  color: #149cff;
  margin-bottom: 30px
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  min-height: 92px
}

.service-card a {
  color: #38b5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em
}

.plans-section {
  background: linear-gradient(180deg, rgba(2, 10, 18, .1), rgba(4, 19, 34, .78))
}

.plan-card {
  position: relative;
  height: 100%;
  padding: 35px 35px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #071b2d, #04101c);
  border-radius: 8px;
}

.featured-plan {
  border-color: #149cff;
  box-shadow: 0 0 42px rgba(0, 128, 255, .15)
}

.popular {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  text-align: center;
  padding: 7px;
  background: linear-gradient(90deg, #0879ee, #139eff);
  font-size: 11px;
  font-weight: 800;
  border-radius: 8px 8px 0 0;
}

.featured-plan h4 {
  margin-top: 22px
}

.plan-card h4 {
  text-align: center;
  font-size: 13px;
  font-weight: 700
}

.speed {
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px
}

.speed strong {
  font-size: 55px;
  line-height: 1
}

.speed span {
  font-size: 16px;
  margin-bottom: 7px
}

.price {
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  margin: 15px 0 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(118, 170, 220, .2)
}

.price small {
  font-size: 13px;
  color: #c7d5e4
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px
}

.plan-card li {
  font-size: 13px;
  color: #dce7f2;
  margin: 12px 0
}

.plan-card li i {
  color: #22a9ff;
  margin-right: 10px
}

.plan-notes {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #bac8d5;
  font-size: 12px;
  margin-top: 30px
}

.plan-notes i {
  margin-right: 7px
}

.entertainment-section h2 {
  margin: 12px 0 20px
}

.entertainment-section p, .business-copy p, .coverage-copy p {
  color: var(--muted);
  line-height: 1.8
}

.channel-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0
}

.channel-logos span {
  min-width: 55px;
  padding: 8px 10px;
  border-radius: 4px;
  text-align: center;
  background: #f2f6fa;
  color: #04101c;
  font-weight: 900;
  font-size: 12px
}

.media-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.business-section {
  border-top: 1px solid rgba(85, 148, 212, .18);
  border-bottom: 1px solid rgba(85, 148, 212, .18)
}

.business-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover
}

.business-copy {
  padding: 85px 8%;
  background: linear-gradient(100deg, #061627, #03101d)
}

.business-copy h2 {
  margin: 10px 0 20px
}

.business-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 35px
}

.business-points span {
  font-size: 12px;
  font-weight: 700
}

.business-points i {
  color: #1ba9ff;
  margin-right: 8px
}

.why-section {
  border-top: 1px solid rgba(85, 148, 212, .18);
  background: linear-gradient(180deg, rgba(2, 10, 18, .1), rgba(4, 19, 34, .55));
}

.why-copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 28px;
}

.why-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(9, 42, 71, .55), rgba(4, 16, 29, .4));
}

.why-highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, #0a7ee8, #17b4ff);
  box-shadow: 0 8px 24px rgba(0, 120, 240, .22);
}

.why-highlight strong {
  display: block;
  font-size: 18px;
  font-family: "Space Grotesk", sans-serif;
}

.why-highlight span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 3px;
}

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

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(7, 27, 47, .65), rgba(3, 15, 27, .9));
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #1e91e9;
  box-shadow: 0 16px 40px rgba(0, 107, 210, .16);
}

.why-card i {
  display: block;
  font-size: 26px;
  color: #149cff;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}

.faq-section {
  border-top: 1px solid rgba(85, 148, 212, .18);
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: linear-gradient(180deg, rgba(7, 27, 47, .65), rgba(3, 15, 27, .9));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  padding: 20px 24px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #29c6ff;
  background: linear-gradient(180deg, rgba(9, 42, 71, .8), rgba(4, 16, 29, .65));
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--line);
}

.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(2);
}

.faq-accordion .accordion-body {
  background: rgba(3, 15, 27, .5);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
  padding: 6px 24px 26px;
}

.testimonial-3d {
  perspective: 1400px;
}

.testimonial-stage {
  overflow: hidden;
  border-radius: 22px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.review-card {
  height: 100%;
  padding: 30px;
  background: linear-gradient(180deg, #081d31, #051321);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform .55s ease, box-shadow .55s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.testimonial-card {
  min-height: 260px;
  width: min(33.333vw, 380px);
  flex: 0 0 auto;
  transform: rotateY(0deg) translateZ(0);
}

.testimonial-card:hover {
  transform: translateY(-6px) rotateY(2deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.testimonial-bars {
  display: flex;
  gap: 10px;
}

.testimonial-bars .bar {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  transition: all .35s ease;
}

.testimonial-bars .bar.active {
  background: linear-gradient(90deg, #0f8dff, #30c5ff);
  width: 44px;
}

.stars {
  color: #ffb000;
  letter-spacing: 3px;
  margin-bottom: 18px
}

.review-card p {
  color: #eef5fb;
  line-height: 1.7;
  min-height: 105px
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 13px
}

.reviewer img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #1b9cff
}

.reviewer strong, .reviewer span {
  display: block
}

.reviewer span {
  color: #8ea2b5;
  font-size: 11px;
  margin-top: 4px
}

.custom-control {
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #087fee;
  opacity: 1
}

.carousel-control-prev {
  left: -58px
}

.carousel-control-next {
  right: -58px
}

.coverage-section {
  border-top: 1px solid rgba(70, 144, 217, .18)
}

.coverage-copy, .cta-panel {
  padding: 72px 6%;
  background: #07192c
}

.coverage-copy h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.map-panel {
  position: relative;
  min-height: 320px;
  background: #08111d;
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  filter: saturate(1.05) contrast(1.05)
}

.map-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  text-shadow: 0 3px 16px #000
}

.map-label i {
  color: #2eb8ff;
  font-size: 38px
}

.cta-modern-section {
  padding: 0 0 100px;
}

.cta-modern-panel {
  position: relative;
  overflow: hidden;
  padding: 72px 8%;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(52, 134, 210, .38);
  background:
    radial-gradient(circle at 25% 20%, rgba(12, 141, 255, .18), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(41, 198, 255, .12), transparent 50%),
    linear-gradient(135deg, #07192d, #030c17 68%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
  pointer-events: none;
  animation: ctaPulse 6s ease-in-out infinite;
}

.cta-glow-1 {
  width: 420px;
  height: 420px;
  top: -170px;
  left: -110px;
  background: rgba(12, 141, 255, .35);
}

.cta-glow-2 {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -160px;
  background: rgba(41, 198, 255, .25);
  animation-delay: 1.5s;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.15); opacity: .7; }
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.cta-modern-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-modern-content h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  font-family: "Space Grotesk", sans-serif;
}

.cta-modern-content > p {
  color: #d5dfeb;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 34px;
}

.cta-modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 34px;
}

.cta-modern-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.cta-modern-trust span {
  font-size: 12.5px;
  font-weight: 700;
  color: #cfe0f0;
}

.cta-modern-trust i {
  color: #29c6ff;
  margin-right: 6px;
}

.cta-panel {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a2745, #061627)
}

.cta-panel>div {
  width: min(100%, 430px)
}

.site-footer {
  padding: 75px 0 0;
  background: #020a13;
  border-top: 1px solid rgba(77, 145, 211, .15)
}

.footer-logo {
  width: 190px;
  height: 120px;
  object-fit: contain
}

.site-footer p, .site-footer a {
  color: #91a5b7;
  font-size: 15px;
  line-height: 1.8
}

.footer-brand-copy {
  font-size: 15px;
}

.footer-links a {
  font-size: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-top: 2px;
}

.footer-contact-item p {
  margin: 0;
}

.owner-line {
  margin-top: 12px;
}
.site-footer h4 {
  font-size: 18px;
  margin-bottom: 20px
}

.site-footer .col-6>a {
  display: block;
  margin: 8px 0
}

.site-footer a:hover {
  color: #27adff
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 18px
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #256b9f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}

.site-footer p i {
  color: #23adff;
  width: 22px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  margin-top: 45px;
  border-top: 1px solid rgba(93, 145, 196, .13)
}

.copyright {
  text-align: left;
  color: #607387;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal a {
  font-size: 14px;
}

.availability-modal {
  background: #07192b;
  border: 1px solid var(--line);
  color: #fff
}

.availability-modal .modal-header {
  border-bottom: 1px solid var(--line)
}

.availability-modal .form-control {
  background: #03101c;
  border-color: #214c70;
  color: #fff;
  min-height: 48px
}

.form-message {
  margin-top: 14px;
  color: #39c1ff;
  font-weight: 700;
  font-size: 13px
}

@media (max-width:1199px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-strip {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: -55px
  }
}

@media (max-width:991px) {
  .aarz-navbar {
    background: #020b14
  }

  .navbar-collapse {
    padding: 20px 0
  }

  .phone-pill {
    margin-top: 15px
  }

  .hero-section {
    padding-top: 90px
  }

  .hero-section::before {
    background: linear-gradient(180deg, #031321 0%, rgba(3, 19, 33, .96) 62%, rgba(1, 10, 18, .8) 100%)
  }

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

  .stats-strip>div {
    border-bottom: 1px solid rgba(117, 170, 221, .18)
  }

  .stat-title {
    grid-column: 1/-1;
    text-align: center !important
  }

  .business-copy {
    padding: 65px 7%
  }

  .carousel-control-prev {
    left: -8px
  }

  .carousel-control-next {
    right: -8px
  }

  .map-panel {
    min-height: 320px
  }

  .cta-modern-panel {
    padding: 60px 6%
  }
}

@media (max-width:767px) {
  .why-grid {
    grid-template-columns: 1fr
  }

  .why-highlight {
    flex-wrap: wrap
  }

  .cta-modern-panel {
    padding: 50px 6%;
    border-radius: 18px
  }

  .cta-modern-trust {
    gap: 14px 22px
  }

  .faq-accordion .accordion-button {
    font-size: 14px;
    padding: 16px 18px
  }

  .faq-accordion .accordion-body {
    padding: 4px 18px 20px
  }

  .section-pad {
    padding: 75px 0
  }

  .hero-section h1 {
    font-size: 42px
  }

  .hero-features {
    grid-template-columns: 1fr 1fr
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr
  }

  .stats-strip>div {
    padding: 20px 12px
  }

  .plan-notes {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .media-frame img {
    height: 280px
  }

  .review-card p {
    min-height: auto
  }
}

@media (max-width:575px) {
  .hero-features {
    grid-template-columns: 1fr
  }

  .stats-strip {
    grid-template-columns: 1fr
  }

  .stats-strip>div {
    border-right: 0
  }

}