* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.section-padding {
  padding: var(--section-padding);
}

.btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: var(--radius-md);
}
.btn-primary {
  font-family: var(--font-secondary);
  font-weight: 600;
  padding: 15px 15px;
  border-radius: 50px;
  background-color: red;
  border: none;
}
.btn-primary:hover {
  color: red;
  background-color: #fff;
  border: 3px solid red;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 0 80px 0;
  position: relative;
  z-index: 1;
}

.btn-premium {
  background: #fff;
  color: red;
  font-weight: bold;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-premium:hover {
  background: red;
  transform: translateY(-2px);
  color: #fff;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
  pointer-events: none;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-outline-light {
  background: transparent;
  color: var(--primary-white);
  border: 2px solid var(--primary-white);
}

.btn-outline-light:hover {
  background: var(--primary-white);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.custom-navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
  background: transparent;
}

.custom-navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

body.speedtest-page .custom-navbar {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}
body.speedtest-page .custom-navbar .navbar-brand,
body.speedtest-page .custom-navbar .logo-text,
body.speedtest-page .custom-navbar .navbar-nav .nav-link {
  color: #ff3535 !important;
}
body.speedtest-page .custom-navbar .navbar-toggler {
  border: none;
  color: #ff3535 !important;
}
body.speedtest-page .custom-navbar .navbar-nav .nav-link:hover,
body.speedtest-page .custom-navbar .navbar-nav .nav-link.active {
  color: #ff3535 !important;
  background: transparent !important;
}
body.speedtest-page .custom-navbar .btn-cta {
  box-shadow: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  margin-left: 1rem;
  margin-right: 0;
  transition: color 0.3s ease;
}

.custom-navbar.scrolled .navbar-brand {
  color: #ff3535 !important;
}

.logo-img {
  margin-right: 8px;
  height: 60px;
  width: auto;
}

.logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-left: 1rem;
  font-family: "Roboto", Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #ff3535;
}
.custom-navbar.scrolled .logo-text {
  color: #ff3535;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 10px;
  padding: 8px 15px !important;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border-radius: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff3535 !important;
}

.custom-navbar.scrolled .navbar-nav .nav-link {
  color: #ff3535 !important;
}

.custom-navbar.scrolled .navbar-nav .nav-link:hover,
.custom-navbar.scrolled .navbar-nav .nav-link.active {
  background: #ff3535 !important;
  color: #fff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff3535, #ff2626);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.custom-navbar.scrolled .navbar-nav .nav-link::after {
  display: none;
}

.custom-navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.navbar-nav {
  flex-direction: row !important;
}

.navbar-cta {
  margin-right: 1rem;
}

@media (min-width: 992px) {
  .custom-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .landline-promo-container {
    margin-left: 0 !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  .landline-promo-slider-row {
    margin-left: 0 !important;
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    justify-content: center;
  }
  .landline-promo-slider {
    justify-content: center;
  }

  .navbar-nav {
    margin: 0 auto;
  }
  .landline-promo-container {
    padding: 28px 16px 16px 16px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .landline-promo-content {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  .landline-promo-meta {
    justify-content: center;
  }
  .landline-promo-slider-row {
    margin-left: 0 !important;
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    justify-content: center;
  }
  .landline-promo-slider {
    gap: 12px;
  }
  .landline-promo-slider-img {
    width: 120px;
    height: auto;
  }
  .landline-promo-badge {
    justify-content: center;
  }
  .landline-promo-watch-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.btn-cta {
  background: linear-gradient(135deg, #ff3535, #ff2626);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ff2222, #ff0000);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 53, 53, 0.4);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(45, 45, 45, 0.7) 50%,
    rgba(255, 53, 53, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

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

.connect-today {
  color: #ff4444;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 68, 68, 0.2);
  }
  to {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 68, 68, 0.4);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.highlight-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 0ch;
  vertical-align: middle;
}

.hero-section.in-view .highlight-text {
  color: #ff4444;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 68, 68, 0.3);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: middle;
  padding-right: 0;
  transform: translateY(-0.04em);
  animation: typing 2.4s steps(12, end) forwards;
}

@keyframes typing {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 12ch;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

.highlight-hero {
  color: #ff4444;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 68, 68, 0.3);
}

.hero-form-wrapper {
  margin: 0 auto;
  max-width: 900px;
  background: transparent;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(249, 20, 20, 0.12);
  padding: 0;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-tabs {
  border-bottom: 4px solid #f91414;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 1rem 1rem 0 0;
}
.nav-tabs .nav-link {
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 600;
  color: #f91414;
  background: #fff;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  transition: background 0.2s, color 0.2s;
}
.nav-tabs .nav-link.active {
  background: #f91414;
  color: #fff;
  z-index: 2;
}
.tab-content {
  padding: 2rem 2rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 8px 32px rgba(249, 20, 20, 0.12);
}
.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1px solid #eee;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: #f91414;
  box-shadow: 0 0 0 0.2rem rgba(249, 20, 20, 0.15);
}
.btn-submit {
  background: linear-gradient(90deg, #f91414 0%, #f64949 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 1rem !important;
  height: 40px;
  padding: 0 2.5rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(249, 20, 20, 0.12);
  transition: background 0.2s;
}
.btn-submit:hover {
  background: linear-gradient(90deg, #ed1010 0%, #f91414 100%);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-form-wrapper {
    padding: 1rem;
  }
  .nav-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

.scroll-down {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }

  .navbar-nav {
    flex-direction: column !important;
    text-align: center;
  }

  .navbar-cta {
    text-align: center;
    margin: 10px 0;
  }

  .connect-today {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .connect-today {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(255, 53, 53, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes fieldFocus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.our-services-section [id] {
  scroll-margin-top: 400px;
}
.consult-card-modern {
  background: linear-gradient(
      90deg,
      rgba(249, 19, 19, 0.62) 0%,
      rgba(255, 19, 19, 0.48) 50%,
      rgba(255, 19, 19, 0.36) 100%
    ),
    url("../images/home/consult.png") center/cover no-repeat;
  border-radius: 24px;
  min-height: 220px;
  box-shadow: 0 0 32px #f9141422;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 32px 32px;
}
.consult-icon-modern {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: #ff1313;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  box-shadow: 0 0 16px #ff131344;
  flex-shrink: 0;
  z-index: 3;
}
.consult-card-content {
  position: relative;
  z-index: 3;
}
.consult-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.consult-desc-modern {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
.consult-phone {
  font-weight: 700;
  letter-spacing: 1px;
}
.consult-link-modern {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.5rem;
  margin-left: 8px;
}
.consult-bg-img {
  display: none;
}
@media (max-width: 992px) {
  .consult-card-modern {
    flex-direction: column;
    padding: 24px 16px;
  }
  .consult-bg-img {
    width: 100%;
    height: 120px;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0 0 24px 24px;
    background-position: center bottom;
  }
  .consult-icon-modern {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.our-services-section {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  background: #fff;
}
.our-services-section .container,
.our-services-section .container-fluid {
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .our-services-section .container,
  .our-services-section .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.our-services-section .row.justify-content-center.mb-5 {
  max-width: 100vw;
  margin-left: 3rem;
  margin-right: auto;
  justify-content: center;
}

@media (max-width: 768px) {
  .our-services-section .row.justify-content-center.mb-5 {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .our-services-section .col-6,
  .our-services-section .col-12,
  .our-services-section .col-md-3 {
    display: flex;
    justify-content: center;
  }

  .our-services-section .service-card {
    width: 100% !important;
    max-width: 360px;
    margin-left: auto !important;
    margin-right: auto !important;
    height: auto !important;
    min-height: 0;
    padding: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .our-services-section .service-icon {
    width: 72px;
    height: 72px;
    margin-top: -56px;
  }

  .our-services-section .service-list {
    font-size: 0.95rem !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 768px) {
  .our-services-section .row.mt-4.justify-content-center,
  .our-services-section .row.mt-4 {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .our-services-section .row.mt-4 .col-lg-5,
  .our-services-section .row.mt-4 .col-lg-7,
  .our-services-section .row.mt-4 .col-md-6 {
    display: flex;
    justify-content: center;
  }

  .our-services-section .qr-card,
  .our-services-section .consult-card-modern {
    width: 100% !important;
    max-width: 360px;
    margin-left: auto !important;
    margin-right: auto !important;
    height: auto !important;
    min-height: 0;
    padding: 1.5rem !important;
    border-radius: 18px;
  }

  .our-services-section .consult-icon-modern {
    width: 88px;
    height: 88px;
    margin-right: 0;
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .our-services-section .qr-img {
    width: 140px;
    height: 140px;
  }

  .our-services-section .qr-card-content,
  .our-services-section .consult-card-content {
    padding: 0 !important;
  }
}
.services-badge {
  color: #f91414;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-title-highlight {
  color: #f91414;
}
.triple-play-highlight {
  background-color: red;
  padding: 12px 24px;
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center !important;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.service-card {
  background: #fff7f2;
  border-radius: 24px;
  box-shadow: 0 0 32px #f9141422;
  transition: box-shadow 0.2s;
  padding: 0.5rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 0;
  width: 300px;
  height: 450px;
  animation: fadeInUp 1s ease-out;
}
.service-card:hover {
  box-shadow: 0 8px 32px #f9141444;
}
.service-icon {
  background: #f91414;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px #f9141444;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
  margin-bottom: 2rem;
  position: relative;
  left: 0;
  right: 0;
  transform: none;
}
.service-icon i {
  color: #fff;
  font-size: 2.2rem;
}
.service-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.service-desc {
  color: #222;
  font-size: 1rem;
  opacity: 0.8;
}
.service-list {
  margin-top: 10px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  list-style: none !important;
  font-size: 1rem !important;
  text-align: left;
}

.qr-card {
  background: #ff1313;
  border-radius: 24px;
  min-height: 220px;
  box-shadow: 0 0 32px #f9141422;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 32px;
  margin-left: 2rem;
}
.qr-card-content {
  flex-grow: 1;
  padding-right: 32px;
}
.qr-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.qr-desc {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 10px;
}
.qr-card-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.qr-img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 0 16px #ff131344;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}
.qr-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--primary-white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-premium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
}

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

@keyframes fiber-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-premium);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
  }
}

@keyframes connection-flow {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes scroll-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.card-3d {
  background: var(--primary-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px -12px rgba(220, 20, 60, 0.18),
    0 2px 8px -2px rgba(31, 41, 55, 0.1);
  border: 1.5px solid rgba(220, 20, 60, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, box-shadow;
}
.card-3d:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg);
  box-shadow: 0 32px 64px -16px rgba(220, 20, 60, 0.22),
    0 4px 16px -4px rgba(31, 41, 55, 0.12);
}
.floating-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.18;
  animation: floatShape 18s ease-in-out infinite;
}
@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dc143c 0%, #b91c3c 100%);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: parallaxMove 30s linear infinite;
}
@keyframes parallaxMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-fadein {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .network-highlight-section {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .network-highlight-section .network-highlight-left {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }

  .network-highlight-section .network-feature-card {
    width: 100%;
    max-width: calc(100% - 24px);
    margin: 12px auto;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }

  .network-feature-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
  }

  .network-highlight-section .network-highlight-right {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 10px;
  }

  .network-highlight-container,
  .network-highlight-section > .container.network-highlight-container {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .network-highlight-section .network-feature-card {
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 12px;
  }

  .network-highlight-image {
    position: static !important;
    margin: 18px auto 8px auto !important;
    width: 100% !important;
    text-align: center !important;
    max-width: 820px;
    box-sizing: border-box;
  }
  .network-highlight-image .network-platform-img,
  .network-platform-img {
    display: block;
    margin: 0 auto;
    width: 320px;
    max-width: 100%;
  }

  .network-highlight-section .network-highlight-content {
    margin: 0 auto;
    max-width: 820px;
    padding: 0 4px 8px 4px;
  }

  .network-highlight-badge,
  .network-highlight-title,
  .network-highlight-desc,
  .network-highlight-stats,
  .network-highlight-devices {
    text-align: center !important;
  }

  .network-highlight-stats {
    justify-content: center;
    gap: 18px;
  }

  .network-highlight-devices .network-devices-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .network-highlight-section .row.align-items-center {
    flex-direction: column;
    align-items: stretch;
  }
}

.counter {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-red-light);
  font-family: var(--font-secondary);
  animation: counterGrow 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes counterGrow {
  0% {
    font-size: 1rem;
    opacity: 0.5;
  }
  100% {
    font-size: 2.2rem;
    opacity: 1;
  }
}

.icon-animated {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.icon-animated:hover {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 24px -8px rgba(220, 20, 60, 0.18);
}
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}
.preloader-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px 14px;
}
.preloader-logo img {
  width: 64px;
  height: auto;
  display: block;
  transform-origin: center;
  animation: preloader-logo-pop 1.2s ease-in-out infinite;
}
.preloader-word {
  font-family: var(--font-secondary, "Catamaran", sans-serif);
  font-weight: 800;
  font-size: 2.1rem;
  color: #ff3535;
  letter-spacing: 2px;
  transform-origin: left center;
  opacity: 0;
  animation: preloader-word-in 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) forwards
    0.18s;
}

@keyframes preloader-logo-pop {
  0% {
    transform: translateY(0) scale(0.94);
  }
  50% {
    transform: translateY(-6px) scale(1.06);
  }
  100% {
    transform: translateY(0) scale(0.98);
  }
}

@keyframes preloader-word-in {
  0% {
    transform: translateY(6px) scaleY(0.98);
    opacity: 0;
  }
  60% {
    transform: translateY(-2px) scaleY(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo img,
  .preloader-word {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .landline-promo-section {
    padding-top: 30px !important;
    padding-bottom: 36px !important;
  }

  .landline-promo-section .landline-promo-container,
  .landline-promo-section .landline-promo-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    max-width: 640px;
    text-align: center !important;
  }

  .landline-promo-section .landline-promo-title,
  .landline-promo-section .landline-promo-desc,
  .landline-promo-section .landline-promo-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .landline-promo-ctas {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 18px !important;
    flex-wrap: wrap !important;
    margin-right: 3rem !important;
    margin-left: 0 !important;
  }

  .landline-promo-ctas .btn,
  .landline-promo-ctas a.btn {
    min-width: 160px;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .landline-video-bg {
    object-fit: cover;
    height: 100%;
    top: 0;
  }

  .landline-promo-section .container,
  .landline-promo-section .container.landline-promo-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .landline-promo-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .landline-promo-section .landline-promo-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .landline-promo-section .container,
  .landline-promo-section .landline-promo-container {
    padding-left: 206px !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }

  .landline-promo-section .row {
    margin-left: 2rem !important;
    margin-right: 0 !important;
  }

  .landline-promo-section .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .landline-promo-section .landline-promo-content {
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    text-align: center !important;
  }

  .landline-promo-section .landline-promo-badge,
  .landline-promo-section .landline-promo-title,
  .landline-promo-section .landline-promo-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .landline-promo-section .landline-promo-ctas {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }
}
@media (min-width: 768px) {
  .landline-promo-section .landline-promo-container,
  .landline-promo-section .landline-promo-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .landline-promo-section .landline-promo-title,
  .landline-promo-section .landline-promo-meta,
  .landline-promo-section .landline-promo-desc {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .landline-promo-section .landline-promo-watch-btn {
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: flex-start !important;
  }
  .landline-promo-ctas {
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: center !important;
  }
  .landline-promo-slider-row {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .landline-promo-section .container,
  .landline-promo-section .landline-promo-container,
  .landline-promo-section .landline-promo-content {
    padding-left: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  .landline-promo-section .landline-promo-watch-btn {
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: flex-start !important;
  }
}
.footer-section {
  background: #232323;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  padding: 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.footer-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 0 24px;
}
.footer-top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand-col {
  flex: 1 1 260px;
  min-width: 220px;
}
.footer-logo {
  width: 56px;
  height: auto;
  margin-bottom: 16px;
}
.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.footer-title:hover {
  color: #ff0000;
}
.footer-desc {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #bdbdbd;
}
.footer-pta-badge {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 8px;
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ff0000;
}
.footer-links-col,
.footer-services-col,
.footer-contact-col {
  flex: 1 1 180px;
  min-width: 160px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 10px;
}
.footer-links-list a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links-list a:hover {
  color: #ff0000;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 1rem;
}
.footer-contact-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bdbdbd;
}
.footer-contact-list i {
  color: #ff0000;
  font-size: 1.1em;
}
.footer-contact-list a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-list a:hover {
  color: #ff0000;
  text-decoration: none;
}
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2em;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social-links a:hover {
  background: #ff0000;
  color: #fff;
}
.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 32px 0 0 0;
}
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 24px 0;
  font-size: 0.98rem;
  color: #bdbdbd;
}
.footer-copyright-col {
  flex: 1 1 300px;
}
.footer-legal-col {
  flex: 1 1 300px;
  text-align: right;
}
.footer-legal-link {
  color: #bdbdbd;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: #ff0000;
}
.footer-pta-approved {
  color: #ff0000;
  font-weight: 600;
  margin-left: 6px;
}
@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-legal-col {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-main-container {
    padding: 32px 16px 0 16px;
  }
  .footer-top-row {
    gap: 16px;
    align-items: center;
  }
  .footer-brand-col {
    text-align: center;
  }
  .footer-logo {
    width: 48px;
    margin-bottom: 12px;
  }
  .footer-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  .footer-desc {
    font-size: 0.98rem;
    margin-bottom: 0 !important;
  }
  .footer-pta-badge {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .footer-links-col,
  .footer-services-col,
  .footer-contact-col {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .footer-heading {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .footer-links-list li {
    margin-bottom: 8px;
  }
  .footer-links-list a {
    font-size: 0.95rem;
  }

  .footer-contact-list {
    margin-bottom: 8px;
  }
  .footer-contact-list li {
    margin-bottom: 6px;
    justify-content: center;
  }

  .footer-social-links {
    justify-content: center;
    margin-top: 8px;
  }
  .footer-social-links a {
    width: 38px;
    height: 38px;
  }

  .footer-divider {
    margin: 20px 0 0 0;
  }
  .footer-bottom-row {
    padding: 12px 0 16px 0;
    font-size: 0.95rem;
  }
  .footer-legal-col {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-main-container {
    padding: 40px 12px 0 12px;
  }
  .footer-top-row {
    gap: 8px;
  }
  .footer-logo {
    width: 46px;
  }
  .footer-title {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 4px;
  }
  .footer-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem !important;
    padding-bottom: 0 !important;
  }
  .footer-pta-badge {
    font-size: 0.85rem;
  }

  .footer-links-list a {
    font-size: 0.95rem;
  }
  .footer-links-list li {
    margin-bottom: 6px;
  }

  .footer-links-col {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 2rem;
  }

  .footer-heading {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .footer-social-links {
    gap: 10px;
  }
  .footer-social-links a {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .footer-divider {
    margin: 16px 0 0 0;
  }
  .footer-bottom-row {
    padding: 10px 0 12px 0;
    font-size: 0.92rem;
    gap: 6px;
  }
  .footer-copyright-col,
  .footer-legal-col {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-legal-link {
    margin: 0 4px;
  }

  .footer-top-row {
    display: block;
    box-sizing: border-box;
    text-align: center;
  }

  .footer-brand-col {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 6px;
  }

  .footer-links-col,
  .footer-services-col {
    display: inline-block;
    vertical-align: top;
    float: none;
    width: 45%;
    max-width: 320px;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
    text-align: left;
    margin-bottom: 2rem;
  }

  .footer-contact-col {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 6px;
    clear: both;
  }
}
.contact-content-row-2 {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.contact-form-col-left {
  flex: 2;
  min-width: 340px;
  max-width: 600px;
  margin-right: 0;
}
.contact-info-col-row {
  flex: 2;
  display: flex;
  flex-direction: row;
  gap: 24px;
  min-width: 440px;
  max-width: 600px;
  justify-content: flex-start;
  align-items: stretch;
}
.contact-info-col-row .contact-info-card {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .contact-content-row-2 {
    flex-direction: column;
    gap: 32px;
  }
  .contact-info-col-row {
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
  }
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 0 48px 0;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
}
.contact-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-badge {
  color: #ff2121;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.contact-divider {
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #ff2121 40%, #eaeaea 100%);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}
.contact-desc {
  color: #222;
  font-size: 1.15rem;
  margin: 24px auto 0 auto;
  max-width: 600px;
}
.contact-content-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-form-col {
  flex: 2;
  min-width: 320px;
  max-width: 520px;
}
.contact-info-col {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  padding: 32px 28px;
}
.contact-form-row {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  border-radius: 8px;
  border: 1px solid #eaeaea;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 0;
  background: #fafafa;
  transition: border-color 0.2s;
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: #ff2121;
  outline: none;
}
.contact-form-action {
  text-align: center;
  margin-top: 18px;
}
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 2rem;
  color: #ff2121;
  margin-bottom: 10px;
}
.contact-info-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.contact-info-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}
.clients-section {
  background: #fff;
  padding: 64px 0 48px 0;
  position: relative;
}
.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
}
.clients-header {
  margin-bottom: 32px;
}
.clients-badge {
  color: #ff2121;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.clients-title span {
  color: #ff2121;
}
.clients-divider {
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #ff2121 40%, #eaeaea 100%);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}
.clients-logos-wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-x: hidden;
}
.clients-logos-row {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 100px;
  will-change: transform;
}
.clients-logo {
  border-radius: 12px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  min-width: 140px;
  min-height: 70px;
  transition: box-shadow 0.2s;
  flex: 0 0 auto;
}
.clients-logo img {
  max-height: 60px;
  max-width: auto;
  object-fit: contain;
}
.clients-logo:hover {
  box-shadow: 0 4px 24px #ff7a2122;
}
.clients-logos-row-1,
.clients-logos-row-2 {
  animation: clients-slide 28s linear infinite;
  width: max-content;
}

.clients-logos-row-2 {
  animation-direction: reverse;
}

@keyframes clients-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .clients-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .clients-logos-wrapper {
    gap: 20px;
  }
  .clients-logos-row {
    gap: 16px;
    justify-content: center;
  }
  .clients-logo {
    padding: 12px 20px;
    min-width: 120px;
    min-height: 60px;
    flex: 0 0 auto;
  }
  .clients-logo img {
    max-height: 56px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0 24px 0;
  }
  .clients-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .clients-logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .clients-logo {
    flex: 0 0 30%;
    min-width: 90px;
    padding: 10px;
  }
  .clients-logo img {
    max-height: 48px;
  }
  .clients-logos-wrapper {
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .clients-section {
    padding: 28px 0 18px 0;
  }
  .clients-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .clients-logos-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
  }
  .clients-logo {
    flex: 0 0 auto;
    min-width: 84px;
    padding: 8px 12px;
  }
  .clients-logo img {
    max-height: 44px;
  }
  .clients-logos-wrapper {
    gap: 12px;
  }
  .clients-title {
    font-size: 1.4rem;
  }
}
.reviews-section {
  background: linear-gradient(135deg, #f8f3ed 0%, #f8f3ed 100%);
  padding: 64px 0 48px 0;
  position: relative;
}
.reviews-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
}
.reviews-header {
  margin-bottom: 32px;
}
.reviews-badge {
  color: #ff2121;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.reviews-title span {
  color: #ff2121;
}
.reviews-divider {
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #ff2121 40%, #eaeaea 100%);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}
.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
.reviews-arrow {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #222;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 24px;
  z-index: 2;
}
.reviews-arrow:hover {
  color: #ff2121;
}
.reviews-slider {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.review-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.7s;
}
.review-slide.active {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.review-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px #0001;
  opacity: 0.7;
  border: 4px solid #fff;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.review-avatar.main {
  width: 100px;
  height: 100px;
  opacity: 1;
  box-shadow: 0 4px 24px #ff212122;
  border: 4px solid #ff2121;
}
.review-meta {
  margin-bottom: 12px;
}
.review-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 8px;
}
.review-role {
  color: #ff2121;
  font-weight: 600;
  font-size: 1.1rem;
}
.review-stars {
  color: #ff2121;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.review-text {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-progress {
  width: 320px;
  height: 8px;
  background: #eaeaea;
  border-radius: 4px;
  margin: 32px auto 0 auto;
  position: relative;
}
.reviews-progress-bar {
  height: 8px;
  background: #ff2121;
  border-radius: 4px;
  width: 33%;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.5s;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 0 24px 0;
  }
  .reviews-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .reviews-title {
    font-size: 2rem;
  }
  .reviews-slider-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .reviews-arrow {
    padding: 0 12px;
    font-size: 2rem;
  }
  .reviews-slider {
    width: 100%;
  }
  .review-slide {
    padding: 0 8px;
  }
  .review-avatars {
    gap: 18px;
    margin-bottom: 12px;
  }
  .review-avatar {
    width: 64px;
    height: 64px;
  }
  .review-avatar.main {
    width: 82px;
    height: 82px;
  }
  .review-name,
  .review-role {
    font-size: 1rem;
  }
  .review-text {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 8px;
  }
  .reviews-progress {
    width: 260px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 28px 0 18px 0;
  }
  .reviews-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .reviews-title {
    font-size: 1.6rem;
  }
  .reviews-arrow {
    font-size: 1.6rem;
    padding: 0 8px;
  }
  .reviews-slider-wrapper {
    gap: 12px;
  }
  .review-avatars {
    gap: 12px;
    margin-bottom: 10px;
  }
  .review-avatar {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }
  .review-avatar.main {
    width: 72px;
    height: 72px;
  }
  .review-name,
  .review-role {
    font-size: 0.98rem;
  }
  .review-text {
    font-size: 0.98rem;
    margin-bottom: 16px;
  }
  .reviews-progress {
    width: 80%;
    max-width: 220px;
    margin-top: 18px;
  }
  .reviews-slider {
    padding: 0;
  }
  .review-slide {
    align-items: center;
  }
}
.pricing-section {
  background: #fafafa;
  padding: 40px 0;
  width: 100%;
}
.pricing-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 32px;
}
.pricing-main {
  flex: 3;
  margin-left: 2rem;
}
.pricing-badge {
  color: #ff2121;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
}
.pricing-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-top: 5rem;
}
.pricing-title span {
  color: #ff2121;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 7rem;
}

@media (max-width: 576px) {
  .pricing-section .pricing-badge {
    margin-bottom: 6px !important;
    padding-top: 8px !important;
    padding-bottom: 4px !important;
    font-size: 0.95rem !important;
  }
  .pricing-section .pricing-title {
    margin-top: 6px !important;
    margin-bottom: 10px !important;
    font-size: 1.6rem !important;
    padding-top: 0 !important;
  }
  .pricing-section .pricing-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 1rem !important;
    padding: 0 12px !important;
    align-items: center !important;
  }
  .pricing-section .pricing-list .pricing-card {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding: 18px 16px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    background: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  }
  .pricing-section .pricing-side-card {
    width: calc(100% - 32px) !important;
    margin: 12px auto !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
  }
  .pricing-section .pricing-card .pricing-card-info {
    padding: 8px 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pricing-section .pricing-card .pricing-card-type {
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    color: #ff2121 !important;
    margin-bottom: 6px !important;
  }
  .pricing-section .pricing-card .pricing-card-name {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 6px 0 !important;
  }
  .pricing-section .pricing-card .pricing-card-desc {
    font-size: 0.98rem !important;
    color: #444 !important;
    margin: 6px 0 8px 0 !important;
    line-height: 1.5 !important;
    padding: 0 6px !important;
  }
  .pricing-section .pricing-card .pricing-card-features {
    justify-content: center !important;
    gap: 16px !important;
    padding: 4px 0 8px 0 !important;
  }
  .pricing-section .pricing-card .pricing-card-features .feature img {
    height: 36px !important;
  }
  .pricing-section .pricing-card .ask-for-price,
  .pricing-section .pricing-card .pricing-ask {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .pricing-section .pricing-card .pricing-cta,
  .pricing-section .pricing-card .btn-contact {
    display: inline-block !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    background: #ff2b2b !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(255, 43, 43, 0.12) !important;
    text-decoration: none !important;
  }
  .pricing-section .pricing-cta {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
}

@media (max-width: 576px) {
  .pricing-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pricing-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pricing-container .pricing-badge,
  .pricing-container .pricing-title {
    position: static !important;
    left: auto !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pricing-section .pricing-list {
    width: 100% !important;
    max-width: 380px !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 992px) {
  .pricing-container {
    padding-top: 120px;
  }

  .pricing-container .pricing-badge {
    position: absolute;
    top: 18px;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    width: auto;
    margin: 0;
  }

  .pricing-container .pricing-title {
    position: absolute;
    top: 48px;
    left: 20%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    width: 100%;
    max-width: 900px;
    margin: 0;
  }

  .pricing-main {
    padding-top: 0;
  }
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  align-items: center;
}
.pricing-card-info {
  flex: 2;
  padding: 32px 24px;
}
.pricing-card-type {
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}
.pricing-card-type.basic {
  color: #ff2121;
}
.pricing-card-type.premium {
  color: #ff2121;
}
.pricing-card-type.advanced {
  color: #ff2121;
}
.pricing-card-name {
  margin: 8px 0 12px 0;
  font-weight: 700;
}
.pricing-card-desc {
  color: #444;
}
.pricing-card-features {
  flex: 3;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.feature {
  text-align: center;
}
.feature img {
  height: 40px;
}
.feature div {
  font-size: 14px;
  margin-top: 8px;
}
.pricing-card-action {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}
.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}
.per {
  font-size: 1rem;
  color: #888;
}
.pricing-btn {
  margin-top: 16px;
  background: #ff2121;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.pricing-btn:hover {
  background: #e01818;
}
.pricing-side-card {
  flex: 1;
  background: #ff2121;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  max-width: 340px;
  margin-right: 2rem;
  margin-top: 7rem;
}
.pricing-side-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.pricing-side-card p {
  color: #fff;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 24px;
}
.side-btn {
  background: #fff;
  color: #ff2121;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background 0.2s;
}
.side-btn:hover {
  background: #ffe2d0;
}
.side-router {
  height: 180px;
}
.side-wifi {
  height: 96px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.modal .pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  align-items: center;
}
.modal .pricing-card-info {
  flex: 2;
  padding: 32px 24px;
}
.modal .pricing-card-features {
  flex: 3;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.modal .pricing-card-action {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}
@media (max-width: 576px) {
  .modal .pricing-card {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .modal .pricing-card-features {
    justify-content: center !important;
  }
}
.modal .pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.modal .pricing-container,
.modal .pricing-list,
.modal .pricing-main {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.modal .pricing-list .pricing-card,
.modal .pricing-container .pricing-card,
.modal .pricing-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 18px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 18px !important;
  box-sizing: border-box !important;
}

.modal .pricing-card .pricing-card-info {
  flex: 2 !important;
  padding: 0 12px 0 0 !important;
  width: auto !important;
}

.modal .pricing-card .pricing-card-features {
  flex: 3 !important;
  display: flex !important;
  gap: 24px !important;
  justify-content: center !important;
  align-items: center !important;
}

.modal .pricing-card .pricing-card-action {
  flex: 1 !important;
  text-align: right !important;
  padding: 0 0 0 12px !important;
}
.modal .modal-body .row {
  flex-direction: column !important;
  gap: 16px !important;
}
.modal .modal-body .row > [class*="col-"] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
#allPlansModal .modal-content {
  padding: 8px 12px !important;
}
#allPlansModal .modal-header {
  padding: 10px 14px !important;
}
#allPlansModal .modal-body {
  padding: 12px 14px 18px !important;
}
#allPlansModal .modal-body .container {
  padding-left: 6px !important;
  padding-right: 6px !important;
  max-width: 100% !important;
}
#allPlansModal .pricing-card {
  margin: 0 0 12px !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
}
#allPlansModal .pricing-card .pricing-card-info {
  padding: 8px 10px !important;
}
#allPlansModal .pricing-card .pricing-card-action {
  padding: 8px 10px !important;
}

#allPlansModal .modal-footer {
  padding: 10px 12px !important;
}

#allPlansModal .modal-dialog {
  max-width: 1100px !important;
  width: calc(100% - 48px) !important;
}

@media (max-width: 1200px) {
  #allPlansModal .modal-dialog {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }
}
.landline-promo-section {
  position: relative;
  min-height: 600px;
  background: #111;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.landline-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.landline-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.landline-video-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: brightness(0.7) contrast(1.1);
}
.landline-video-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.landline-promo-container {
  position: relative;
  z-index: 3;
  padding: 120px 24px;
  margin: 0 auto;
  max-width: 1200px;
}
.landline-promo-badge {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.landline-promo-badge-icon {
  color: #ff2a2a;
  font-size: 1.2rem;
  margin-right: 8px;
}
.landline-promo-badge-label {
  color: #ff2a2a;
  font-weight: 700;
  font-size: 1.5rem;
}
.landline-promo-badge-sub {
  color: #fff;
  font-weight: 700;
  margin-left: 4px;
}
.landline-promo-title {
  font-family: "Merriweather", "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  line-height: 1.06;
}
.landline-promo-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.landline-promo-match {
  color: #ff2a2a;
  font-weight: 700;
}
.landline-promo-year,
.landline-promo-lang {
  color: #fff;
  font-weight: 500;
}
.landline-promo-badge-meta {
  background: #222;
  color: #fff;
  border-radius: 16px;
  padding: 4px 14px;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 4px;
}
.landline-promo-desc h5 {
  font-size: 1.5rem;
  color: #fafafade;
  margin-bottom: 32px;
  max-width: 700px;
  text-shadow: 0 2px 8px #000a;
}
.landline-promo-desc {
  font-size: 1.05rem;
  color: #eef2f6;
  margin-bottom: 24px;
  max-width: 820px;
  line-height: 1.7;
}
.landline-features {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
}
.landline-features li {
  background: rgba(255, 255, 255, 0.219);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.landline-promo-title,
.landline-promo-meta,
.landline-promo-desc,
.landline-promo-watch-btn {
  transform: translateX(-36px);
  opacity: 0;
  will-change: transform, opacity;
}

.landline-promo-section.in-view .landline-promo-title {
  animation: slideInLeft 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: 0.12s;
}
.in-drawer-toggler {
  display: none;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #fff;
    margin: 8px 0 18px 8px;
    z-index: 1060;
  }

  .in-drawer-toggler {
    display: none !important;
  }

  .navbar-collapse {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    background: rgba(0, 0, 0, 0.95);
    padding: 72px 20px 20px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.28s ease, visibility 0.28s ease;
    transform: translateX(0);
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .navbar-collapse .nav-link {
    color: #fff !important;
    font-size: 1.05rem;
    padding: 8px 12px !important;
  }
  .navbar-collapse .btn-cta {
    display: none;
  }

  .navbar-collapse.show .in-drawer-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #fff;
    margin: 8px 0 18px 8px;
    z-index: 1060;
  }
  .navbar-collapse.show ~ .navbar-toggler,
  .custom-navbar.nav-open .navbar-toggler {
    display: none !important;
  }

  .in-drawer-toggler .navbar-toggler-icon {
    filter: invert(1) hue-rotate(180deg) !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse.show .in-drawer-toggler {
    display: inline-flex !important;
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 6px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999999 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  .navbar-collapse.show .in-drawer-toggler .navbar-toggler-icon {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    filter: invert(1) !important;
    opacity: 1 !important;
  }
}
.landline-promo-section.in-view .landline-promo-meta {
  animation: slideInLeft 0.8s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: 0.22s;
}
.landline-promo-section.in-view .landline-promo-desc {
  animation: slideInLeft 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: 0.34s;
}
.landline-promo-section.in-view .landline-promo-watch-btn {
  animation: slideInLeft 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: 0.46s;
}

.landline-promo-section {
  background-image: linear-gradient(
      180deg,
      rgba(7, 10, 14, 0.55),
      rgba(7, 10, 14, 0.35)
    ),
    url("../images/home/landline-banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .landline-promo-content {
    background: none;
    padding: 8px 8px;
    border-radius: 0;
    backdrop-filter: none;
  }
  .landline-features {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landline-promo-title,
  .landline-promo-meta,
  .landline-promo-desc,
  .landline-promo-watch-btn,
  .landline-promo-section.in-view .landline-promo-title,
  .landline-promo-section.in-view .landline-promo-meta,
  .landline-promo-section.in-view .landline-promo-desc,
  .landline-promo-section.in-view .landline-promo-watch-btn {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.landline-promo-watch-btn {
  background: #ff2a2a;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 12px 32px;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.12);
  transition: background 0.2s;
  margin-top: 12px;
  display: inline-block;
}
.landline-promo-watch-btn:hover {
  background: #f91414;
  color: #fff;
}
.landline-promo-slider-row {
  position: relative;
  z-index: 3;
  margin-top: 32px;
  padding-bottom: 32px;
  margin-left: 20rem;
  width: 100vw;
}
.landline-promo-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.landline-promo-slider-arrow {
  color: #fff;
  background: #222a;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.landline-promo-slider-arrow:hover {
  background: #ff2a2a;
  color: #fff;
}
.landline-promo-slider-images {
  display: flex;
  gap: 18px;
}
.landline-promo-slider-img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px #000a;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.landline-promo-slider-img.active {
  opacity: 1;
  box-shadow: 0 4px 16px #ff2a2a88;
}
.landline-promo-ctas .btn-cta {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 40px;
}
.landline-promo-ctas .btn-outline-light {
  background: rgba(255, 255, 255, 0.389);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 22px;
  border-radius: 40px;
}
.landline-promo-ctas .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.landline-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}
.landline-art-img {
  max-width: 620px;
  width: 100%;
  height: auto;
  transform: translateX(6%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  border-radius: 18px;
  image-rendering: optimizeQuality;
}
@media (max-width: 991px) {
  .landline-promo-section {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }
  .landline-promo-container {
    padding: 28px 12px;
    margin-left: 0;
  }
  .landline-promo-content {
    text-align: center;
    padding-bottom: 16px;
  }
  .landline-promo-desc,
  .landline-promo-title {
    max-width: 100%;
    text-align: center;
  }
  .landline-art-img {
    max-width: 360px;
    transform: translateX(0);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }
}

@media (max-width: 991px) {
  .landline-promo-title {
    font-size: 2.2rem;
  }
  .landline-promo-container {
    padding: 40px 0 0 0;
  }
  .landline-promo-slider-img {
    width: 80px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .landline-promo-title {
    font-size: 1.2rem;
  }
  .landline-promo-desc {
    font-size: 1rem;
  }
  .landline-promo-slider-img {
    width: 48px;
    height: 28px;
  }
}

.network-highlight-section {
  background: #fff7f2;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.network-highlight-container,
.network-highlight-section > .container.network-highlight-container {
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.network-highlight-container {
  gap: 24px;
}

.network-highlight-section .row {
  margin-left: 0;
  margin-right: 0;
}

.network-highlight-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 500px;
  width: 500px;
  min-width: 400px;
  max-width: 500px;
  margin-right: 0;
  align-items: flex-start;
  padding-left: 0 !important;
}

.network-highlight-right {
  flex: 1 1 auto;
  padding-left: 28px;
  padding-right: 0;
  margin-right: 0;
  margin-left: 1rem;
}

.network-highlight-left .network-feature-card {
  margin-left: 0;
}
.network-feature-card {
  position: relative;
  border-radius: 0 18px 18px 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(220, 20, 60, 0.1);
  margin-bottom: 0;
  width: 100%;
}

.network-highlight-left .network-feature-card:first-child {
  margin-top: -48px;
}
.network-highlight-left .network-feature-card:last-child {
  margin-bottom: -48px;
}
.network-feature-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.network-feature-img {
  border-radius: 0 18px 18px 0;
}

.network-highlight-left .network-feature-card:first-child {
  border-top-right-radius: 0;
}
.network-highlight-left .network-feature-card:first-child .network-feature-img {
  border-top-right-radius: 0;
}
.network-highlight-left .network-feature-card:last-child {
  border-bottom-right-radius: 0;
}
.network-highlight-left .network-feature-card:last-child .network-feature-img {
  border-bottom-right-radius: 0;
}
.network-feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.network-feature-card {
  z-index: 0;
}
.network-feature-img {
  position: relative;
  z-index: 0;
}
.network-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 20, 20, 0.12);
  pointer-events: none;
  z-index: 1;
}
.network-feature-overlay {
  z-index: 2;
}
.network-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 0;
}
.network-feature-arrow {
  font-size: 1.3rem;
  background: #fff;
  color: #f91414;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.12);
}

.network-highlight-badge {
  color: #f91414;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.network-highlight-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 18px;
  line-height: 1.1;
}
.network-highlight-title-accent {
  color: #f91414;
  font-weight: 700;
  font-size: 2.5rem;
}
.network-highlight-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
  max-width: 600px;
}
.network-highlight-stats {
  gap: 48px;
  margin-bottom: 18px;
}
.network-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 100px;
}
.network-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f91414;
  margin-bottom: 2px;
}
.network-stat-label {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}
.network-highlight-devices {
  margin-bottom: 24px;
}
.network-devices-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.network-devices-icons {
  display: flex;
  gap: 18px;
}
.network-device img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(220, 20, 60, 0.1));
}
.network-highlight-actions {
  margin-top: 18px;
  gap: 24px;
}
.network-discover-btn {
  background: #f91414;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 12px 32px;
  transition: background 0.2s;
}
.network-discover-btn:hover {
  background: #dc143c;
  color: #fff;
}
.network-mail-box {
  display: flex;
  align-items: left;
  gap: 10px;
  background: #fff7f2;
  border-radius: 18px;
  padding-top: 18px;
  padding-left: 0;
  margin-left: 0;
}
.network-mail-icon {
  color: #f91414;
  font-size: 1.3rem;
  margin-right: 6px;
}
.network-mail-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f91414;
  margin-right: 6px;
}
.network-mail-value {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}
.network-highlight-image {
  position: absolute;
  right: 0;
  top: 360px;
  width: 540px;
  max-width: 100%;
  z-index: 60;
  text-align: right;
  margin-right: -6rem;
}
.network-platform-img {
  width: 450px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(220, 20, 60, 0.1);
}

.network-highlight-image,
.network-highlight-image::before,
.network-highlight-right > .network-highlight-image,
.network-highlight-right > .network-highlight-image::before {
  background: transparent !important;
  filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.network-platform-img {
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
}

.network-highlight-right > .network-highlight-image {
  position: absolute !important;
  width: auto !important;
  max-width: 420px;
  margin-left: auto;
  top: 560px !important;
  z-index: 80 !important;
  text-align: right;
}
.network-highlight-right > .network-highlight-image .network-platform-img {
  width: 320px;
  max-width: 100%;
  border-radius: 18px;
}
.network-connect-circle {
  position: absolute;
  top: 18px;
  right: 38px;
  background: #fff;
  color: #f91414;
  border-radius: 50%;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
  transform: rotate(-18deg);
}
.network-connect-arrow {
  position: absolute;
  top: 60px;
  right: 18px;
  background: #f91414;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.12);
}
@media (max-width: 1200px) {
  .network-highlight-image {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 5rem;
  }
  .network-platform-img {
    width: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
  }
  @media (max-width: 991px) {
    .network-highlight-section {
      padding: 40px 0;
    }
    .network-highlight-left {
      gap: 18px;
    }
    .network-highlight-title,
    .network-highlight-title-accent {
      font-size: 1.5rem;
    }
    .network-highlight-image {
      margin-top: 5rem;
    }
  }
  @media (max-width: 767px) {
    .network-highlight-container {
      padding: 0 8px;
    }
    .network-highlight-left,
    .network-highlight-right {
      padding: 0;
    }
    .network-highlight-title,
    .network-highlight-title-accent {
      font-size: 1.2rem;
    }
    .network-feature-img {
      height: 110px;
    }
    .network-platform-img {
      width: 180px;
    }
  }
}
@media (max-width: 991px) {
  .network-highlight-left .network-feature-card:first-child {
    margin-top: -40px;
  }
  .network-highlight-left .network-feature-card:last-child {
    margin-bottom: -40px;
  }
}

@media (max-width: 767px) {
  .network-highlight-left .network-feature-card:first-child,
  .network-highlight-left .network-feature-card:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }
  .network-highlight-left {
    gap: 10px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;600;800&family=Montserrat:wght@700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.speed-test-hero {
  width: 100%;
  background: linear-gradient(135deg, #ff2a2a 0%, #ff1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px 0;
  color: #ffffff;
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

.speed-test-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 88% 28%,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 48px,
      transparent 49px
    ),
    radial-gradient(
      circle at 96% 60%,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 32px,
      transparent 33px
    ),
    radial-gradient(
      circle at 70% 10%,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 40px,
      transparent 41px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 70px,
      transparent 71px
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
  opacity: 0.55;
  pointer-events: none;
  transform: translateZ(0);
  z-index: 0;
}

.speed-test-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      140deg,
      rgba(0, 0, 0, 0.389) 1px,
      transparent 1px
    ),
    linear-gradient(40deg, rgba(0, 0, 0, 0.327) 1px, transparent 1px);
  background-size: 600px 600px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.speed-test-inner {
  max-width: 100vw;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 2rem;
  margin-right: 0;
}

.speed-left {
  flex: 1 1 60%;
  max-width: 720px;
  padding-right: 12px;
  text-align: left;
}

.speed-badge {
  display: inline-block;
  letter-spacing: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  margin-bottom: 18px;
  opacity: 0.95;
}

.speed-title {
  font-family: "Catamaran", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  margin: 0 0 18px 0;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.speed-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.speed-sep {
  border: none;
  height: 1px;
  background-color: #ffffff !important;
  opacity: 1 !important;
  margin: 28px 0;
  width: 100%;
  max-width: 880px;
}

.speed-meta {
  margin-top: 6px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.speed-meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 0.88rem;
}

.meta-browser {
  display: none;
  font-weight: 700;
  letter-spacing: 1px;
}

.meta-sep {
  color: rgb(255, 255, 255);
  margin: 0 6px;
}

.speed-ip {
  margin-top: 6px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
}

.speed-ip-line {
  display: flex;
  gap: 8px;
  align-items: center;
}
.speed-ip-address {
  font-weight: 700;
  letter-spacing: 2px;
}
.speed-ip-browser {
  font-weight: 700;
  opacity: 0.95;
}
.speed-isp {
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.speed-test-hero .speed-left .speed-badge,
.speed-test-hero .speed-left .speed-title,
.speed-test-hero .speed-left .speed-desc,
.speed-test-hero .speed-left .speed-sep,
.speed-test-hero .speed-left .speed-meta,
.speed-test-hero .speed-left .speed-meta *,
.speed-test-hero .speed-left .speed-ip {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 480px) {
  .speed-meta-row {
    font-size: 0.78rem !important;
    gap: 8px;
  }
  .speed-ip {
    font-size: 0.9rem !important;
  }
}

.speed-right {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 320px;
}

.speed-button {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(0);
  z-index: 3;
  pointer-events: auto;
  margin-left: 0;
}
.speed-button {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.speed-button:focus,
.speed-button:active {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.speed-button::-moz-focus-inner {
  border: 0;
}

.speed-button::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.352);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.329);
  animation: ring-pulse 2.8s ease-out infinite;
  opacity: 0.9;
}

.speed-button::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.403);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.341);
  animation: ring-pulse 2.8s ease-out infinite;
  opacity: 0.85;
}

.speed-btn-core {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.28s ease;
}

.speed-btn-core i {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(180deg, #ff2a2a, #ff1a1a);
  box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.speed-button:hover .speed-btn-core {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

@keyframes ring-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.35;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.9;
  }
}
@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .speed-test-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .speed-meta-row {
    justify-content: center;
  }
  .meta-browser {
    display: inline-block;
  }
  .speed-ip-line {
    justify-content: center;
  }
  .speed-isp {
    text-align: center;
  }
  .speed-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .speed-button {
    width: 220px;
    height: 220px;
  }
  .speed-btn-core {
    width: 120px;
    height: 120px;
    border-width: 8px;
  }
  .speed-btn-core i {
    width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .speed-left {
    padding-right: 0;
  }
  .speed-title {
    font-size: 2rem;
  }
  .speed-desc {
    font-size: 0.98rem;
  }
  .speed-button {
    width: 220px !important;
    height: 220px !important;
  }
  .speed-btn-core {
    width: 120px;
    height: 120px;
    border-width: 8px;
  }
  .speed-btn-core i {
    width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 26px;
  }
  .speed-button::after {
    inset: 14px;
    border-width: 8px;
  }
  .speed-button::before {
    inset: 8px;
    border-width: 6px;
  }
}
.speed-right {
  position: relative;
}
.speed-inline-panel {
  position: absolute;
  width: 520px;
  height: 460px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.25rem;
}

.speed-inline-iframe {
  width: 100%;
  height: calc(100% - 56px);
  border: none;
  background: transparent;
  flex: 1 1 auto;
}

.speed-inline-result {
  height: 56px;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .speed-inline-panel {
    right: 8px;
    width: 420px;
    height: 330px;
  }
}

@media (max-width: 640px) {
  .speed-inline-panel {
    position: static;
    width: 100%;
    height: 320px;
    margin-top: 12px;
  }
  .speed-right {
    position: static;
  }
}

.tv-promo-section {
  position: relative;
  width: 100vw;
  height: 120vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  font-family: "Montserrat", "Catamaran", "Open Sans", sans-serif;
  color: #fff;
  background: url("/assets/images/home/tv-promo-bg.jpg") center center/cover
    no-repeat;
  overflow: hidden;
  padding: 0;
}
.tv-promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1;
}

.tv-promo-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  height: 120vh;
  z-index: 2;
}

.promo-rail {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  padding-top: 0;
  padding-right: 0;
  margin-top: 0;
  background: none;
}

.poster {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}

.promo-rail .poster:first-child {
  margin-top: 0;
}
.promo-rail .poster:last-child {
  margin-bottom: 0;
}

.promo-rail {
  padding-right: 32px;
  padding-left: 48px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.poster {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.promo-content {
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 64px 48px 32px;
  background: none;
  position: relative;
  z-index: 2;
}

@keyframes poster-move-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes poster-move-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.promo-rail .poster {
  position: relative;
  overflow: hidden;
}
.promo-rail .poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

.promo-rail .poster:nth-child(1) img {
  animation: poster-move-up 18s linear infinite;
}
.promo-rail .poster:nth-child(2) img {
  animation: poster-move-down 18s linear infinite;
}
.promo-rail .poster:nth-child(3) img {
  animation: poster-move-up 20s linear infinite;
}

.promo-topline {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #ff4545;
  font-weight: 700;
  margin-bottom: 12px;
}
.promo-title {
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.3;
  margin: 0 0 18px 0;
  color: #ffffff;
}
.promo-title span {
  display: inline-block;
  color: #ff2a2a;
  font-weight: 900;
}
.promo-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  font-size: 1rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
.promo-features {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
}
.promo-features li {
  margin-left: 50px;
  margin-bottom: 12px;
  position: relative;
  font-weight: 700;
  padding-left: 46px;
  align-items: center;
  display: flex;
}
.promo-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff2a2a, #ff2626);
  box-shadow: 0 8px 18px rgba(255, 34, 34, 0.18);
}
.promo-features li::after {
  content: "\2713";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}
.pack-chooser {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.pack-pill {
  background-color: #fff;
  color: #ff2a2a;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease,
    box-shadow 0.12s ease;
  border: 2px solid rgba(255, 42, 42, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.pack-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.pack-pill.active {
  background: linear-gradient(90deg, #ff2a2a, #ff2626);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 34, 34, 0.18);
  border-color: transparent;
}

.promo-body {
  gap: 36px;
}
.promo-content .pack-content {
  display: none !important;
}
.promo-content .pack-content.active {
  display: flex !important;
  align-items: center;
}
.price-card {
  background: #ffffff;
  color: #ff2a2a;
  width: 160px;
  height: 120px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}
.price-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
}
.price-dollar {
  position: absolute;
  left: 18px;
  top: 10px;
  font-size: 18px;
  color: #333;
  font-weight: 800;
}
.price-value {
  font-size: 72px;
  line-height: 0.9;
  font-weight: 900;
  color: #ff2a2a;
  margin-left: 6px;
}
.price-period {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}

.streaming-badges {
  display: flex;
  gap: 18px;
  margin: 28px 0 26px 0;
  align-items: center;
}
.streaming-badges img.stream-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
}

.promo-cta .btn-tv {
  display: inline-block;
  background: red;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 800;
}
.promo-cta .btn-tv:hover {
  background: #fff;
  color: red;
}

@media (max-width: 992px) {
  .tv-promo-section {
    height: auto;
    padding: 40px 0;
  }
  .promo-rail {
    display: none;
  }
  .promo-content {
    width: 100%;
    padding: 28px;
  }
  .promo-title {
    font-size: 38px;
  }
  .price-card {
    width: 140px;
    height: 110px;
  }
}

@media (max-width: 420px) {
  html body .tv-promo-section {
    height: auto !important;
    min-height: auto !important;
    padding-top: 68px !important;
    padding-bottom: 48px !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
  }

  html body .tv-promo-section .tv-promo-inner {
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html body .tv-promo-section .promo-content {
    padding: 12px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  html body .tv-promo-section .promo-topline {
    line-height: 1.05 !important;
    text-align: center !important;
  }
  html body .tv-promo-section .promo-title {
    font-size: 1.4rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin: 0 6px 8px 6px !important;
    white-space: normal !important;
    font-weight: 800 !important;
  }
  html body .tv-promo-section .promo-title span {
    display: inline !important;
    font-size: 1.4rem !important;
    color: #ff2a2a !important;
    font-weight: 900 !important;
  }

  html body .tv-promo-section .promo-desc {
    font-size: 0.92rem !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 8px 12px 8px !important;
    line-height: 1.3 !important;
  }

  html body .tv-promo-section .pack-chooser {
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    padding: 6px 4px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  html body .tv-promo-section .pack-pill {
    padding: 8px 12px !important;
    font-size: 0.84rem !important;
    text-align: center;
    border-radius: 14px !important;
    min-width: 72px !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08) !important;
  }
  html body .tv-promo-section .pack-pill.active {
    padding: 8px 12px !important;
  }

  html body .tv-promo-section .promo-body .pack-content.active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  html body .tv-promo-section .price-card {
    width: 120px !important;
    height: 72px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
  }
  html body .tv-promo-section .price-card .price-dollar {
    left: 10px !important;
    top: 6px !important;
    font-size: 12px !important;
  }
  html body .tv-promo-section .price-card .price-value {
    font-size: 24px !important;
    margin-left: 4px !important;
  }
  html body .tv-promo-section .price-card .price-period {
    font-size: 11px !important;
    right: 8px !important;
    bottom: 8px !important;
  }

  html body .tv-promo-section .promo-features {
    margin-top: 6px !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 320px !important;
    box-sizing: border-box !important;
  }
  html body .tv-promo-section .promo-features li {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
    padding-left: 30px !important;
    display: block !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }
  html body .tv-promo-section .promo-features li::before {
    width: 18px !important;
    height: 18px !important;
    left: 4px !important;
  }
  html body .tv-promo-section .promo-features li::after {
    left: 8px !important;
    font-size: 12px !important;
  }

  html body .tv-promo-section .streaming-badges img.stream-logo {
    height: 36px !important;
    margin: 0 6px !important;
    gap: 6px !important;
    border-radius: 6px !important;
    margin: 0 !important;
  }

  html body .tv-promo-section .streaming-badges {
    margin: 8px 0 8px 0 !important;
    padding-bottom: 0 !important;
  }

  html body .tv-promo-section .promo-title,
  html body .tv-promo-section .promo-desc,
  html body .tv-promo-section .pack-chooser,
  html body .tv-promo-section .promo-body,
  html body .tv-promo-section .price-card,
  html body .tv-promo-section .promo-features {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 576px) {
  .tv-promo-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
  .tv-promo-section .tv-promo-inner {
    padding-bottom: 0 !important;
  }
  .tv-promo-section .promo-content {
    padding-bottom: 4px !important;
  }
  .tv-promo-section .streaming-badges {
    margin: 6px 0 0 0 !important;
    padding-bottom: 0 !important;
  }
  .tv-promo-section .poster {
    margin-bottom: 0 !important;
  }
  .tv-promo-section .promo-rail {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .tv-promo-section .tv-promo-inner {
    height: auto !important;
    min-height: auto !important;
  }
  .tv-promo-section .promo-rail,
  .tv-promo-section .poster {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .tv-promo-section .poster img,
  .tv-promo-section .promo-rail img {
    display: none !important;
    height: 0 !important;
    max-height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

.special-offer-section {
  background: linear-gradient(90deg, #ff2b2b 0%, #ff1a1a 100%);
  padding: 28px 0;
  color: #fff;
  height: 300px;
}
.special-offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 40px;
}
.offer-left {
  flex: 0 0 auto;
}
.offer-bubble {
  display: block;
  width: 160px;
  height: auto;
}
.offer-center {
  flex: 1 1 50%;
  text-align: left;
}
.offer-heading {
  font-size: 52px;
  font-weight: 600;
  padding-left: 30px;
  margin: 0;
  line-height: 1.3;
  color: #fff;
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
.offer-sub {
  display: block;
  font-size: 52px;
  font-weight: 600;
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
.offer-right {
  flex: 0 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 18px;
}
.countdown-item {
  text-align: center;
  min-width: 120px;
}
.countdown-value {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
}
.countdown-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
}
.countdown-sep {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 992px) {
  .special-offer-inner {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  .offer-center {
    order: 2;
  }
  .offer-left {
    order: 1;
  }
  .offer-right {
    order: 3;
  }
  .countdown {
    justify-content: center;
    gap: 12px;
  }
  .countdown-item {
    min-width: 72px;
  }
  .countdown-value {
    font-size: 36px;
  }
  .offer-heading,
  .offer-sub {
    font-size: 28px;
  }
}
.offer-badge {
  width: 230px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  html body .special-offer-section {
    height: auto !important;
    padding: 14px 0 !important;
    overflow: visible !important;
  }
  html body .special-offer-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  html body .special-offer-inner .offer-left,
  html body .special-offer-inner .offer-left .offer-bubble,
  html body .special-offer-inner .offer-badge {
    width: 100px !important;
    max-width: 36vw !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
  html body .special-offer-inner .offer-center {
    text-align: center !important;
    padding: 0 !important;
  }
  html body .special-offer-inner .offer-heading,
  html body .special-offer-inner .offer-sub {
    display: inline-block !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    font-size: 18px !important;
    line-height: 1.02 !important;
    padding-left: 0 !important;
    margin: 0 6px !important;
    overflow: visible !important;
  }
  html body .special-offer-inner .offer-center {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }
  html body .special-offer-inner .offer-heading,
  html body .special-offer-inner .offer-sub {
    font-size: clamp(14px, 4.5vw, 18px) !important;
    line-height: 1 !important;
    margin: 0 6px !important;
  }
  html body .special-offer-inner .offer-center br,
  html body .special-offer-inner .offer-heading br,
  html body .special-offer-inner .offer-sub br {
    display: none !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  html body .special-offer-inner .countdown {
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
  html body .special-offer-inner .countdown-item {
    min-width: 56px !important;
    padding: 4px 6px !important;
    box-sizing: border-box !important;
  }
  html body .special-offer-inner .countdown-value {
    font-size: 28px !important;
    line-height: 1 !important;
  }
  html body .special-offer-inner .countdown-label {
    font-size: 12px !important;
    margin-top: 4px !important;
  }
  html body .special-offer-inner .countdown-sep {
    display: block !important;
    width: 2px !important;
    height: 38px !important;
    margin: 0 6px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }
  html body .special-offer-inner .offer-right {
    width: 100% !important;
    text-align: center !important;
  }
}

.faq-section {
  padding: 60px 0;
  background: #fff;
  width: 100vw;
  padding: 0;
  font-family: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
.faq-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin: 0;
}
.faq-left {
  flex: 1 1 56%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 32px;
}
.faq-right {
  flex: 1 1 44%;
  position: relative;
  min-height: 520px;
}
.faq-intro .faq-badge {
  display: inline-block;
  color: #ff2b2b;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.faq-title {
  font-size: 40px;
  font-weight: 800;
  margin: 6px 0 26px;
}
.faq-title span {
  color: #ff2b2b;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-align: left;
}
.faq-question {
  font-weight: 700;
  color: #111;
  max-width: 92%;
}
.faq-arrow {
  color: #ff2b2b;
  font-size: 20px;
  transform: rotate(90deg);
  transition: transform 0.28s ease;
}
.faq-item.open .faq-arrow {
  transform: rotate(0deg);
}
.faq-body {
  padding: 0 28px 22px 28px;
  color: #555;
  font-size: 15px;
  display: none;
}
.faq-item.open .faq-body {
  display: block;
}

.faq-cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  width: 100%;
  position: relative;
  background-image: linear-gradient(rgb(255, 26, 26), rgba(255, 26, 26, 0.3)),
    url("../images/home/faq-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 1, 1, 0.12);
  pointer-events: none;
  border-radius: 18px;
}
.faq-cta-left {
  flex: 1;
  padding: 28px 32px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.faq-cta-left h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.faq-cta-right {
  padding: 0 24px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.faq-cta .btn-cta.small {
  padding: 12px 20px;
  border-radius: 8px;
  background: #fff;
  color: #ff2a2a;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: none;
}

.faq-right-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  align-items: right;
  padding: 0;
  margin: 0;
  right: -12px;
  z-index: 0;
  background-image: url("../images/home/faq-bg.jpg");
}

.faq-right-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 4, 0.297);
  pointer-events: none;
  z-index: 1;
}

.faq-socials {
  position: absolute;
  bottom: 40px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  color: #fff;
}
.social-title {
  margin-bottom: 12px;
  opacity: 0.95;
}
.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgb(255, 0, 0);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-left,
  .faq-right {
    flex: 1 1 auto;
  }
  .faq-right {
    min-height: 320px;
  }
  .faq-title {
    font-size: 28px;
  }
  .faq-right-bg {
    right: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .faq-left,
  .faq-right {
    flex: 1 1 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  .faq-right {
    min-height: 280px;
    min-width: 90vw;
  }

  .faq-right-bg {
    background-size: 160% auto;
    background-position: center right;
    background-repeat: no-repeat;
    right: 0;
  }

  .faq-accordion {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 12px;
    box-sizing: border-box;
  }

  .faq-item {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
  }

  .faq-head {
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
  }

  .faq-question {
    text-align: center;
    max-width: calc(100% - 48px);
  }

  .faq-arrow {
    transform: rotate(90deg);
  }

  .faq-body {
    padding: 0 18px 16px 18px;
  }

  .faq-cta {
    margin-top: 16px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    background-size: cover;
    width: 90vw;
    height: 150px;
  }
  .faq-cta-left h3 {
    font-size: 1rem;
    padding-top: 1rem;
  }
  .faq-cta-left p {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
  .faq-cta-left {
    padding: 12px;
  }
  .faq-cta-right {
    padding: 8px;
  }
  .faq-cta .btn-cta.small {
    padding: 10px 14px;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .faq-socials {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes cardIn {
  from {
    transform: translateX(-24px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes typing-8 {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 8ch;
  }
}

.our-services-section.in-view .services-badge {
  display: inline-block;
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInLeft 0.56s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 0.18s;
}

.our-services-section.in-view .services-title {
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInLeft 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 0.36s;
}

.our-services-section.in-view .row.justify-content-center.mb-5 .service-card {
  transform: translateX(-24px);
  opacity: 0;
  animation: cardIn 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
.our-services-section.in-view
  .row.justify-content-center.mb-5
  > .col-md-3:nth-child(1)
  .service-card {
  animation-delay: 0.85s;
}
.our-services-section.in-view
  .row.justify-content-center.mb-5
  > .col-md-3:nth-child(2)
  .service-card {
  animation-delay: 0.98s;
}
.our-services-section.in-view
  .row.justify-content-center.mb-5
  > .col-md-3:nth-child(3)
  .service-card {
  animation-delay: 1.12s;
}
.our-services-section.in-view
  .row.justify-content-center.mb-5
  > .col-md-3:nth-child(4)
  .service-card {
  animation-delay: 1.26s;
}

@media (prefers-reduced-motion: reduce) {
  .our-services-section .services-badge,
  .our-services-section .services-title,
  .our-services-section .services-title-highlight,
  .our-services-section .service-card {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceInLeft {
  0% {
    transform: translateX(-60px) scaleX(0.99);
    opacity: 0;
  }
  60% {
    transform: translateX(12px) scaleX(1.02);
    opacity: 1;
  }
  80% {
    transform: translateX(-6px) scaleX(0.995);
  }
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 1;
  }
}

.our-services-section.in-view .qr-card {
  transform: translateX(-28px);
  opacity: 0;
  animation: slideInLeft 0.64s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 1.05s;
}

.our-services-section.in-view .consult-card-modern {
  transform: translateX(28px);
  opacity: 0;
  animation: slideInRight 0.64s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 1.18s;
}

@media (prefers-reduced-motion: reduce) {
  .our-services-section .qr-card,
  .our-services-section .consult-card-modern {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.network-feature-card,
.network-feature-card .network-feature-img {
  transform: translateX(-40px);
  opacity: 0;
  will-change: transform, opacity;
}
.network-highlight-section.in-view .network-feature-card,
.network-highlight-section.in-view .network-feature-card .network-feature-img {
  animation: slideInLeft 0.8s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 0.18s;
}

.network-highlight-right .network-highlight-image {
  transform: translateX(40px);
  opacity: 0;
  will-change: transform, opacity;
}
.network-highlight-section.in-view
  .network-highlight-right
  .network-highlight-image {
  animation: slideInRight 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: 0.24s;
}

.network-highlight-right .network-highlight-badge,
.network-highlight-right .network-highlight-title,
.network-highlight-right .network-highlight-desc,
.network-highlight-right .network-highlight-stats,
.network-highlight-right .network-highlight-devices,
.network-highlight-right .network-highlight-actions {
  transform: translateX(-24px);
  opacity: 0;
  will-change: transform, opacity;
}

.network-highlight-title-accent {
  display: inline-block;
  transform: translateX(-18px);
  opacity: 0;
  will-change: transform, opacity;
}

.network-highlight-section.in-view .network-highlight-title-accent {
  animation: bounceInLeft 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  .network-highlight-title-accent {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.network-highlight-section.in-view .network-highlight-badge {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.12s;
}
.network-highlight-section.in-view .network-highlight-title {
  animation: slideInLeft 0.7s ease-out forwards;
  animation-delay: 0.2s;
}
.network-highlight-section.in-view .network-highlight-desc {
  animation: slideInLeft 0.7s ease-out forwards;
  animation-delay: 0.34s;
}
.network-highlight-section.in-view .network-highlight-stats {
  animation: slideInLeft 0.7s ease-out forwards;
  animation-delay: 0.46s;
}
.network-highlight-section.in-view .network-highlight-devices {
  animation: slideInLeft 0.7s ease-out forwards;
  animation-delay: 0.6s;
}
.network-highlight-section.in-view .network-highlight-actions {
  animation: slideInLeft 0.7s ease-in forwards;
  animation-delay: 0.76s;
}

.network-stat-value {
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(6px);
}
.network-highlight-section.in-view .network-stat-value {
  opacity: 1;
  transform: translateY(0);
  animation: counterGrow 0.9s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .network-feature-card,
  .network-feature-card .network-feature-img,
  .network-highlight-right .network-highlight-image,
  .network-highlight-right .network-highlight-badge,
  .network-highlight-right .network-highlight-title,
  .network-highlight-right .network-highlight-desc,
  .network-highlight-right .network-highlight-stats,
  .network-highlight-right .network-highlight-devices,
  .network-highlight-right .network-highlight-actions {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.speed-left .speed-badge,
.speed-left .speed-title,
.speed-left .speed-desc,
.speed-left .speed-sep,
.speed-left .speed-meta {
  transform: translateX(-20px);
  opacity: 0;
  will-change: transform, opacity;
}

.speed-test-hero.in-view .speed-left .speed-badge {
  animation: slideInLeft 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) both;
  animation-delay: 0.08s;
}
.speed-test-hero.in-view .speed-left .speed-title {
  animation: slideInLeft 1s cubic-bezier(0.22, 0.9, 0.3, 1) both;
  animation-delay: 0.18s;
}
.speed-test-hero.in-view .speed-left .speed-desc {
  animation: slideInLeft 1.12s cubic-bezier(0.22, 0.9, 0.3, 1) both;
  animation-delay: 0.28s;
}
.speed-test-hero.in-view .speed-left .speed-sep {
  animation: slideInLeft 1s cubic-bezier(0.22, 0.9, 0.3, 1) both;
  animation-delay: 0.36s;
}
.speed-test-hero.in-view .speed-left .speed-meta {
  animation: slideInLeft 1.12s cubic-bezier(0.22, 0.9, 0.3, 1) both;
  animation-delay: 0.44s;
}

@media (prefers-reduced-motion: reduce) {
  .speed-left .speed-badge,
  .speed-left .speed-title,
  .speed-left .speed-desc,
  .speed-left .speed-sep,
  .speed-left .speed-meta {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.tv-promo-section .promo-content > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.tv-promo-section.in-view .promo-content > * {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 560ms cubic-bezier(0.22, 0.9, 0.35, 1) forwards;
}

.tv-promo-section.in-view .promo-content > :nth-child(1) {
  animation-delay: 0ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(2) {
  animation-delay: 80ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(3) {
  animation-delay: 160ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(4) {
  animation-delay: 240ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(5) {
  animation-delay: 320ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(6) {
  animation-delay: 400ms;
}
.tv-promo-section.in-view .promo-content > :nth-child(7) {
  animation-delay: 480ms;
}

@media (prefers-reduced-motion: reduce) {
  .tv-promo-section.in-view .promo-content > * {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes sideSlide {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.wdt-split-heading-wrapper {
  display: inline-block;
  line-height: 1;
}
.wdt-split-heading-title {
  display: inline-block;
  will-change: transform, opacity;
}

.tv-promo-section.in-view .wdt-split-heading-title {
  animation: sideSlide 1s cubic-bezier(0.22, 0.9, 0.35, 1) forwards;
  animation-delay: var(--delay, 200ms);
}

@media (prefers-reduced-motion: reduce) {
  .tv-promo-section.in-view .wdt-split-heading-title {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.faq-section .faq-left,
.faq-section .faq-right,
.faq-section .faq-right .faq-socials {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.7s cubic-bezier(0.22, 0.9, 0.3, 1),
    opacity 0.6s ease-out;
  will-change: transform, opacity;
}

.faq-right .faq-right-bg {
  transform: translateX(48px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 0.9, 0.3, 1),
    opacity 0.7s ease-out;
  will-change: transform, opacity;
}

.faq-right.animated .faq-right-bg,
.faq-right.animated > .faq-right-bg {
  transform: translateX(0);
  opacity: 1;
}

.faq-right .faq-socials {
  transform: translateY(36px) translateX(-50%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) 0.28s,
    opacity 0.6s ease-out 0.28s;
}

.faq-right.animated .faq-socials {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
}

.animate-from-left {
  transform: translateX(-48px);
}
.animate-from-right {
  transform: translateX(48px);
}
.animate-from-up {
  transform: translateY(36px);
}

.animate-from-left.animated,
.animate-from-right.animated,
.animate-from-up.animated {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

.faq-left .stagger-item {
  transition: transform 0.7s cubic-bezier(0.22, 0.9, 0.3, 1),
    opacity 0.6s ease-out;
  opacity: 0;
  transform: translateX(-12px);
}
.faq-left.animated .stagger-item {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-section .faq-left,
  .faq-section .faq-right,
  .faq-section .faq-right .faq-socials,
  .faq-left .stagger-item {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.faq-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0ch;
  box-sizing: border-box;
  vertical-align: middle;
  padding-right: 0;
  transform: translateY(-0.03em);
  animation: typing 2.4s steps(12, end) forwards;
}

@keyframes faqTyping {
  0% {
    max-width: 0ch;
  }
  to {
    max-width: 18ch;
  }
}

.faq-typing::after {
  display: none !important;
  content: "";
}

@keyframes faqCaret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.faq-left.animated .faq-typing {
  animation: faqTyping 1.2s steps(18, end) 120ms forwards;
}

@media (prefers-reduced-motion: reduce) {
  .faq-typing,
  .faq-typing::after {
    animation: none !important;
    max-width: none !important;
    opacity: 1 !important;
  }
  .faq-typing::after {
    display: none !important;
  }
}

.review-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0ch;
  box-sizing: border-box;
  vertical-align: middle;
  padding-right: 0;
  transform: translateY(-0.03em);
  animation: typing 2.4s steps(12, end) forwards;
}

@keyframes review-typing {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 18ch;
  }
}

.review-typing::after {
  display: none !important;
  content: "";
}

.animate-from-top {
  transform: translateY(-18px);
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 420ms ease;
  will-change: transform, opacity;
}
.animate-from-top.animated,
.animate-from-top.in-view {
  transform: translateY(0);
  opacity: 1;
}

.clients-header.animate-on-scroll {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .animate-from-top {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

.price-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0ch;
  box-sizing: border-box;
  vertical-align: middle;
  padding-right: 0.5rem;
  transform: translateY(-0.03em);
  animation: typing 2.4s steps(12, end) forwards;
}

@keyframes price-typing {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 18ch;
  }
}

.price-typing::after {
  display: none !important;
  content: "";
}
.tv-promo-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0ch;
  box-sizing: border-box;
  vertical-align: middle;
  padding-right: 0.5rem;
  transform: translateY(-0.03em);
  animation: tv-promo-typing 2.4s steps(12, end) forwards;
}

@keyframes tv-promo-typing {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 30ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tv-promo-typing {
    animation: none !important;
    max-width: none !important;
    overflow: visible !important;
  }
}

.tv-promo-typing::after {
  display: none !important;
  content: "";
}
.services-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0ch;
  box-sizing: border-box;
  vertical-align: middle;
  padding-right: 0.5rem;
  transform: translateY(-0.03em);
  animation: services-typing 4.4s steps(24, end) forwards;
}

@keyframes services-typing {
  from {
    max-width: 0ch;
  }
  to {
    max-width: 30ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-typing {
    animation: none !important;
    max-width: none !important;
    overflow: visible !important;
  }
}

.services-typing::after {
  display: none !important;
  content: "";
}
.speedtest-page {
  width: 100vw;
  height: 100vh;
  padding-top: 4rem;
  padding-bottom: 0;
  margin: 0;
}

:root {
  --site-max-width: 1200px;
  --gutter: 16px;
}

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

img,
picture,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container,
.about-container,
.footer-main-container,
.speedtest-page .container {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--site-max-width);
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
[class*="col-"] {
  flex: 1 1 0%;
  min-width: 220px;
}

.pricing-card,
.network-feature-card,
.speed-test-hero,
.pricing-card-info,
.pricing-card-features,
.contact-form-col-left,
.contact-info-card {
  width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  word-break: break-word;
}
.hero-description {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
}

.modal-dialog {
  max-width: calc(100% - 32px);
  margin: 1.5rem auto;
}

#preloader .preloader-inner {
  max-width: 360px;
  margin: 0 auto;
  padding: 12px;
}

.main-header {
  width: 100%;
}
.header-menu {
  transition: none;
}
.nav-toggle {
  display: none;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .header-menu {
    width: 100%;
    display: none;
  }
  .header-menu.open {
    display: block;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 8px;
  }
}

.footer-main-container {
  width: 100%;
}
@media (max-width: 900px) {
  .footer-top-row,
  .footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    text-align: left;
  }
  .footer-legal-col,
  .footer-copyright-col {
    text-align: left;
  }
}

table {
  width: 100%;
  table-layout: auto;
}
pre,
code {
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    text-align: center;
    padding: 0 6px;
  }
  .hero-description {
    text-align: center;
    padding: 0 10px;
  }
  .connect-today {
    letter-spacing: 1px;
  }
  .pricing-card {
    padding: 12px;
  }
  .footer-social-links {
    justify-content: flex-start;
  }
}

.animate-on-scroll {
  will-change: opacity, transform;
}

.custom-navbar {
  z-index: 1035;
}
.navbar-toggler {
  z-index: 1060;
  border: none;
}

@media (max-width: 991.98px) {
  .navbar-cta {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-toggler {
    position: absolute;
    right: calc(12px + 140px);
    top: 50%;
    transform: translateY(-50%);
  }
  .custom-navbar.nav-open .navbar-toggler {
    right: 12px;
  }
  .custom-navbar.nav-open .navbar-cta {
    display: none !important;
  }
  .navbar-brand {
    margin-left: 1rem;
    margin-right: 160px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --mobile-menu-width: 300px;
  }

  .custom-navbar .navbar-collapse {
    display: none !important;
  }

  .custom-navbar.nav-open .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--mobile-menu-width);
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    padding-top: 80px;
    display: block !important;
    overflow-y: auto;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
  }

  .custom-navbar.nav-open .navbar-nav {
    flex-direction: column !important;
    gap: 20px;
    padding: 12px 18px;
    align-items: flex-start;
  }

  .custom-navbar.nav-open .navbar-toggler {
    right: calc(var(--mobile-menu-width) + 14px) !important;
    top: 18px !important;
    transform: none !important;
  }

  .custom-navbar .navbar-toggler {
    z-index: 1100;
  }
}

.navbar-collapse > .navbar-toggler {
  position: absolute !important;
  left: 16px !important;
  top: 12px !important;
  transform: none !important;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  z-index: 1110 !important;
}

@media (max-width: 576px) {
  .logo-img {
    height: 44px;
  }
  .logo-text {
    font-size: 1.4rem;
    margin-left: 0.5rem;
  }
}

.custom-navbar .navbar-toggler-icon {
  background-image: none !important;
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 2px;
}
.custom-navbar .navbar-toggler-icon::before,
.custom-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.custom-navbar .navbar-toggler-icon::before {
  top: 0;
}
.custom-navbar .navbar-toggler-icon::after {
  bottom: 0;
}
.custom-navbar.scrolled .navbar-toggler {
  color: #c62828;
}
.navbar-collapse {
  z-index: 1020;
}

@media (max-width: 576px) {
  .our-services-section .col-md-3,
  .our-services-section .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .service-card {
    padding: 14px;
    text-align: center;
  }
  .service-list {
    display: none;
  }
  .qr-card,
  .consult-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 14px !important;
    gap: 10px;
  }
  .qr-card .qr-card-img img.qr-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .consult-card .consult-bg-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    display: block;
  }
  .consult-card .consult-card-content {
    width: 100%;
  }

  .network-highlight-section .network-highlight-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .network-feature-card .network-feature-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }
  .network-highlight-right .network-highlight-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .network-platform-img {
    max-width: 220px;
    width: 60%;
    margin: 12px auto 0;
  }

  .speed-test-hero .speed-test-inner {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .speed-test-hero .speed-right {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .speed-button {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .landline-promo-content {
    margin: 0 auto;
    text-align: center;
    padding: 18px;
  }
  .landline-video-bg-img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
  }

  .pricing-container .pricing-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-card {
    padding: 12px;
    font-size: 0.95rem;
  }
  .pricing-card .pricing-card-name {
    font-size: 1.05rem;
  }
  .pricing-side-card {
    display: none;
  }

  .promo-body {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
  }
  .pack-content {
    width: 100%;
    justify-content: center;
  }
  .price-card {
    margin: 0 auto;
  }
  .promo-features {
    text-align: center;
  }

  .special-offer-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .faq-right {
    order: 2;
  }

  .review-avatar,
  .clients-logo img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  footer,
  .footer-main-container,
  .footer-top-row {
    text-align: center;
  }
}

@media (min-width: 577px) and (max-width: 991.98px) {
  .our-services-section .col-md-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .qr-card,
  .consult-card {
    flex-direction: row;
    align-items: center;
  }
  .qr-card .qr-card-img img.qr-img {
    max-width: 180px;
  }
  .network-feature-card .network-feature-img {
    height: 180px;
  }
  .pricing-container .pricing-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}

.custom-navbar:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}
.custom-navbar:not(.scrolled) .navbar-brand,
.custom-navbar:not(.scrolled) .logo-text,
.custom-navbar:not(.scrolled) .navbar-nav .nav-link {
  color: #fff !important;
}
.custom-navbar:not(.scrolled) .btn-cta {
  box-shadow: 0 5px 15px rgba(255, 53, 53, 0.18);
}

@media (max-width: 768px) {
  .network-highlight-container,
  .network-highlight-section > .container.network-highlight-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .network-highlight-left {
    width: 100% !important;
    flex: 0 0 auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .network-highlight-left .network-feature-card,
  .network-highlight-section .network-feature-card {
    margin-left: 12px !important;
    margin-right: 12px !important;
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .network-feature-img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }

  .network-highlight-right {
    width: 100% !important;
    flex: 1 1 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .network-highlight-content {
    margin: 0 auto !important;
    padding: 0 6px !important;
    max-width: 820px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .network-highlight-stats,
  .network-devices-icons {
    justify-content: center !important;
    display: flex !important;
    gap: 18px !important;
  }

  .network-highlight-image {
    position: static !important;
    margin: 18px auto !important;
    width: 100% !important;
    max-width: 820px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .network-highlight-image .network-platform-img,
  .network-platform-img {
    display: block !important;
    margin: 0 auto !important;
    width: 320px !important;
    max-width: 100% !important;
  }

  .network-connect-circle,
  .network-connect-arrow {
    display: none !important;
  }
}

.landline-promo-section,
html body .landline-promo-section {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}
.landline-promo-section .landline-video-bg,
html body .landline-promo-section .landline-video-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden !important;
}
.landline-promo-section .landline-video-bg-img,
html body .landline-promo-section .landline-video-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
}
.landline-promo-section .landline-promo-container,
html body .landline-promo-section .landline-promo-container {
  position: relative !important;
  z-index: 2 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
.landline-promo-section .landline-promo-slider-row,
html body .landline-promo-section .landline-promo-slider-row {
  margin-left: 0 !important;
  width: 100% !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
@media (max-width: 991px) {
  .landline-promo-section .landline-promo-content,
  html body .landline-promo-section .landline-promo-content {
    text-align: center !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .landline-promo-section .landline-promo-slider-img,
  html body .landline-promo-section .landline-promo-slider-img {
    width: 120px !important;
    height: auto !important;
  }
}

@media (max-width: 991px) {
  .landline-promo-section .landline-promo-slider-row,
  html body .landline-promo-section .landline-promo-slider-row {
    overflow: hidden !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .landline-promo-section .landline-promo-slider-images,
  html body .landline-promo-section .landline-promo-slider-images {
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }
  .landline-promo-section .landline-promo-slider-img,
  html body .landline-promo-section .landline-promo-slider-img {
    width: 120px !important;
    max-width: 33% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 576px) {
  .landline-promo-section .landline-promo-slider-img,
  html body .landline-promo-section .landline-promo-slider-img {
    width: 960px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding-top: 18px !important;
    padding-bottom: 28px !important;
  }
  .pricing-badge {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    font-size: 0.95rem !important;
  }
  .pricing-title {
    margin-top: 6px !important;
    margin-bottom: 12px !important;
    font-size: 1.8rem !important;
  }

  .pricing-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .pricing-main {
    width: 100% !important;
    order: 1 !important;
  }

  .pricing-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding: 12px 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: center !important;
  }
  .pricing-list::-webkit-scrollbar {
    height: 8px;
  }
  .pricing-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
  }

  .pricing-card {
    flex: 0 0 300px !important;
    max-width: 300px !important;
    margin: 0 !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }
  .pricing-card-info {
    padding: 12px !important;
  }
  .pricing-card-features {
    gap: 12px !important;
  }

  .pricing-card-action {
    padding: 12px !important;
    text-align: center !important;
  }

  .pricing-side-card {
    order: 2 !important;
    width: calc(100% - 24px) !important;
    max-width: 360px !important;
    margin: 8px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px !important;
  }
  .pricing-side-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  .pricing-side-card p {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }

  .text-center.mt-4.w-100 {
    padding: 12px 0 28px 0 !important;
  }
  .btn-view-all {
    margin: 8px auto 18px auto !important;
  }
}

@media (min-width: 992px) {
  html body .landline-promo-section .landline-promo-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  html body .landline-promo-section .landline-promo-content {
    padding-left: 3rem !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    width: min(720px, 60%);
  }

  html body .landline-promo-section .landline-promo-watch-btn {
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: flex-start !important;
  }
}
@media (min-width: 641px) {
  .speed-test-inner {
    justify-content: space-between;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .speed-right {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 420px;
    margin-right: 8rem;
  }
  .speed-inline-panel {
    right: 16px !important;
  }
}

@media (max-width: 768px) {
  .landline-promo-section {
    padding-bottom: 10px !important;
  }

  .landline-promo-section .landline-promo-meta {
    font-size: 0.9rem !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
    align-items: flex-start !important;
    text-align: justify !important;
  }

  .landline-promo-section .landline-promo-badge-meta {
    font-size: 0.85rem !important;
    border-radius: 12px !important;
    text-align: justify !important;
  }

  .landline-promo-section .landline-promo-match {
    font-size: 0.95rem !important;
    text-align: justify !important;
  }

  .landline-promo-section .landline-promo-desc {
    font-size: 0.95rem !important;
    max-width: 90% !important;
    text-align: justify !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
.speedtest-page iframe {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 650px;
  min-height: 320px;
  border: 0;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
}

@media (min-width: 1400px) {
  .speedtest-page iframe {
    max-width: 1300px;
    height: 720px;
    padding-top: 3rem;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .speedtest-page iframe {
    max-width: 1100px;
    height: 650px;
    padding-top: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .speedtest-page {
    margin-top: 0;
    margin-bottom: 0;
  }
  .speedtest-page iframe {
    max-width: 920px;
    height: 760px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .speedtest-page iframe {
    max-width: 760px;
    height: 760px;
  }
}

@media (max-width: 575.98px) {
  .speedtest-page iframe {
    width: calc(100% - 24px);
    max-width: none;
    margin: 0 12px;
    height: 760px;
    border-radius: 6px;
  }
}

@media (max-width: 420px) {
  .speedtest-page iframe {
    height: 700px;
  }
}
