/* ============================================================
   NET42 - Global Stylesheet
   Inspired by ACT Corp's clean, bold UI design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ====== CSS VARIABLES ====== */
:root {
  --red: #ED1C24;
  --red-dark: #c41920;
  --red-light: #ff3a42;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --grey: #4a4a4a;
  --grey-light: #8a8a8a;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET & BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ====== TOP UTILITY BAR ====== */
.top-utility-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 1002;
  position: relative;
}

.top-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-utility-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.utility-item {
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.utility-sep {
  opacity: 0.3;
}

.top-utility-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.utility-btn-existing {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.utility-btn-existing:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.utility-btn-new {
  background: var(--red);
  color: white;
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.35);
}

.utility-btn-new:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.5);
}

/* ====== TOP OFFER BANNER ====== */
.offer-banner {
  background: linear-gradient(90deg, var(--red) 0%, #c41920 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
}

.offer-banner span {
  margin: 0 8px;
  opacity: 0.6;
}

.offer-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}

.offer-banner .close-banner {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.8;
}

/* ====== HEADER ====== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}

/* City Selector */
.city-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.city-selector:hover {
  border-color: var(--red);
  color: var(--red);
}

.city-selector svg {
  color: var(--red);
  flex-shrink: 0;
}

.city-selector select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  outline: none;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  background: rgba(237, 28, 36, 0.06);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-new-conn {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(237, 28, 36, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-new-conn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 28, 36, 0.45);
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
}

.btn-support {
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  cursor: pointer;
}

.btn-support:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(300px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.mobile-panel a:hover {
  background: rgba(237, 28, 36, 0.06);
  color: var(--red);
}

.mobile-panel .btn-new-conn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: 14px;
  font-size: 0.95rem;
  border-radius: 10px;
}

.mobile-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-light);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== HERO SLIDER ====== */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 580px;
  max-height: 780px;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  gap: 60px;
}

.hero-text {
  flex: 1;
  color: var(--white);
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(237, 28, 36, 0.9);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-text h1 span {
  color: var(--red-light);
}

.hero-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(237, 28, 36, 0.4);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(237, 28, 36, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-3px);
}

/* Hero Form */
.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  width: 380px;
  flex-shrink: 0;
}

.hero-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-form-card p {
  font-size: 0.82rem;
  color: var(--grey-light);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.form-group input::placeholder {
  color: var(--grey-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-check-avail {
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(237, 28, 36, 0.35);
}

.btn-check-avail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(237, 28, 36, 0.5);
}

/* Slider Controls */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ====== SECTION COMMONS ====== */
section {
  padding: 72px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--grey);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== TRUST STRIP / MARQUEE ====== */
.trust-strip {
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--red);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ====== FEATURES SECTION ====== */
.features-section {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, rgba(237, 28, 36, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ====== PLANS SECTION ====== */
.plans-section {
  background: var(--white);
}

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-light);
  padding: 5px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.plans-tab {
  padding: 10px 24px;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
}

.plans-tab.active {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  border-radius: 20px;
  border: 2px solid var(--border);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.plan-card.featured {
  border-color: var(--red);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: white;
  padding: 28px 24px 24px;
}

.plan-card.featured .plan-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.plan-speed {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-speed span {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 4px;
}

.plan-type {
  font-size: 0.78rem;
  opacity: 0.65;
  font-weight: 500;
}

.plan-body {
  padding: 24px;
}

.plan-pricing {
  margin-bottom: 20px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg-light);
  margin-bottom: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.price-option:hover,
.price-option.selected {
  border-color: var(--red);
  background: rgba(237, 28, 36, 0.04);
}

.price-month {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey);
}

.price-amount {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
}

.price-amount small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey-light);
}

.plan-features {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-bottom: 20px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
}

.plan-feature svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature strong {
  color: var(--dark);
}

.btn-get-plan {
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(237, 28, 36, 0.3);
}

.btn-get-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(237, 28, 36, 0.5);
}

.plans-cta {
  text-align: center;
  margin-top: 40px;
}

.plans-cta p {
  color: var(--grey);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* ====== SPEED TEST STRIP ====== */
.speed-strip {
  background: linear-gradient(135deg, var(--red) 0%, #a50f15 100%);
  padding: 56px 24px;
  text-align: center;
  color: white;
}

.speed-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.speed-strip p {
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  color: rgba(237, 28, 36, 0.08);
  font-family: serif;
  line-height: 1;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author-loc {
  font-size: 0.75rem;
  color: var(--grey-light);
}

/* ====== COVERAGE SECTION ====== */
.coverage-section {
  background: var(--white);
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.coverage-area {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  cursor: pointer;
}

.coverage-area:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(237, 28, 36, 0.04);
}

.coverage-area svg {
  color: var(--red);
}

/* ====== OTT SECTION ====== */
.ott-section {
  background: var(--dark);
  padding: 72px 24px;
}

.ott-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.ott-logo {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  min-width: 100px;
  text-align: center;
}

.ott-logo:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  transform: translateY(-4px);
}

/* ====== FOOTER ====== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo-mark {
  background: var(--red);
}

.footer-logo .logo-text {
  color: white;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

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

.footer-contact svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ====== WHATSAPP WIDGET ====== */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero_family.png') center/cover;
  opacity: 0.15;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero h1 span {
  color: var(--red-light);
}

.page-hero p {
  opacity: 0.8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  opacity: 0.65;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb-sep {
  opacity: 0.4;
}

/* ====== FAQs ====== */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--red);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}

.faq-question svg {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--grey-light);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ====== STEP CARDS ====== */
.steps-section {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(237, 28, 36, 0.3);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--grey);
}

/* ====== BUSINESS GRID ====== */
.business-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.biz-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.biz-icon {
  width: 52px;
  height: 52px;
  background: rgba(237, 28, 36, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}

.biz-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.biz-card p {
  font-size: 0.84rem;
  color: var(--grey);
}

/* ====== SUPPORT CARDS ====== */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.support-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.support-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, rgba(237, 28, 36, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.support-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 16px;
}

.support-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.support-card a:hover {
  gap: 10px;
}

/* ====== CONNECTION STEPS ====== */
.conn-form-section {
  background: var(--bg-light);
}

.conn-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}

.conn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.conn-form-grid .form-group.full {
  grid-column: 1 / -1;
}

.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--dark);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: var(--transition);
}

.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

/* ====== STATS STRIP ====== */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 64px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}

.stat-item strong span {
  color: var(--red-light);
}

.stat-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== UTILITIES ====== */
.text-red {
  color: var(--red);
}

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

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-12 {
  gap: 12px;
}

.fw-700 {
  font-weight: 700;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-form-card {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-support {
    display: none;
  }

  .city-selector select {
    max-width: 90px;
  }

  .top-utility-inner {
    justify-content: space-between;
    padding: 6px 16px;
  }

  .btn-new-conn {
    display: none;
  }

  .logo-img {
    height: 40px;
  }

  .hero-section {
    height: 100svh;
    max-height: none;
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
    gap: 0;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-form-card {
    width: 100%;
    border-radius: 16px;
    padding: 24px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat strong {
    font-size: 1.2rem;
  }

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

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-10px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .conn-form-card {
    padding: 24px;
  }

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

  .hero-arrows {
    display: none;
  }

  section {
    padding: 48px 16px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 12px;
    height: 58px;
  }

  .city-selector {
    font-size: 0.72rem;
    padding: 5px 7px;
    gap: 4px;
  }

  .city-selector select {
    max-width: 70px;
    font-size: 0.72rem;
  }

  .logo-img {
    height: 36px;
  }

  .hero-text {
    display: none;
  }

  .hero-content {
    padding-bottom: 60px;
  }

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

  /* Top utility bar stays visible — just 2 compact buttons */
  .top-utility-bar {
    display: flex;
  }

  .top-utility-inner {
    padding: 5px 12px;
  }

  .utility-btn-existing,
  .utility-btn-new {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  /* Plans grid single column */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  /* Footer nicely stacked */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 6px;
  }

  /* Coverage areas wrap nicely */
  .coverage-areas {
    gap: 8px;
  }

  .coverage-area {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* Trust strip smaller gap */
  .trust-track {
    gap: 28px;
  }

  /* Section padding */
  section {
    padding: 40px 14px;
  }

  /* OTT billing grid 2 col on small screens */
  .ott-billing-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Offer banner font size */
  .offer-banner {
    font-size: 0.78rem;
    padding: 10px 32px 10px 14px;
  }
}

.ott-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card2) 50%, var(--bg-dark) 100%);
}

.ott-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ott-highlight-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
}

.ott-count-display {
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid var(--border);
}

.big-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #8B5CF6, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.big-plus {
  font-family: 'Orbitron', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--gold);
  vertical-align: top;
  margin-top: 10px;
}

.ott-count-display p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.ott-billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.ott-billing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.ott-billing-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
}

.ott-billing-card.best-ott {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.ott-best-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.period-name {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.period-otts {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #780000;
  margin-bottom: 4px;
}

.period-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.period-price span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* OTT Scrolling logos */
.ott-logos-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ott-logos-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollOTT 35s linear infinite;
}

.ott-logos-track:hover {
  animation-play-state: paused;
}

.ott-pill {
  white-space: nowrap;
  padding: 10px 22px;
  background: rgb(210, 10, 10);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  cursor: default;
}

.ott-pill:hover {
  background: rgba(215, 0, 0, 0.848);
  border-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes scrollOTT {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  animation: fadeSlideUp 0.6s ease var(--delay) both;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  font-size: 28px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #930000;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}