/* ==========================================================================
   ZORAM INFONET - MODERN DARK DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-main: #070913;
  --bg-surface: #0c101d;
  --bg-card: #111628;
  --bg-card-hover: #151c33;
  --bg-glass: rgba(12, 16, 29, 0.75);

  --primary: #3d42ff;
  --primary-hover: #5055ff;
  --primary-glow: rgba(61, 66, 255, 0.35);

  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-hot: #ff3b5c;

  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(61, 66, 255, 0.5);

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-glow: 0 0 25px rgba(61, 66, 255, 0.25);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);

  /* Layout */
  --container-max: 1200px;
  --nav-height: 80px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Atmosphere Glows */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(800px, 75vw, 1600px);
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(61, 66, 255, 0.2) 0%, rgba(6, 182, 212, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(75px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #7075ff 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Containers & Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(61, 66, 255, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(61, 66, 255, 0.3);
  margin-bottom: 20px;
}

.badge-pill svg {
  color: #38bdf8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2a337e 0%, #1c225a 100%);
  color: #ffffff;
  border: 1px solid rgba(129, 140, 248, 0.3);
  box-shadow: 0 4px 14px rgba(7, 9, 20, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #35409a 0%, #242c73 100%);
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 6px 20px rgba(42, 51, 126, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #ffffff;
}

.btn-portal {
  background: rgba(61, 66, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(61, 66, 255, 0.45);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-portal:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #156637 0%, #0f4927 100%);
  color: #ffffff;
  border: 1px solid rgba(74, 222, 128, 0.25);
  box-shadow: 0 4px 14px rgba(7, 9, 20, 0.45);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1a7a42 0%, #135c31 100%);
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 6px 20px rgba(21, 102, 55, 0.35);
  transform: translateY(-2px);
}

.btn-text-mobile {
  display: none;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 9, 19, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 46px;
  width: 46px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(67, 100, 219, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-logo:hover img {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px rgba(67, 100, 219, 0.45);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-pill);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: 230px;
  background: #0d1222;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #94a3b8;
}

.dropdown-item a:hover {
  color: #ffffff;
  background: rgba(61, 66, 255, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #ffffff;
  z-index: 102;
}

.hamburger-bars {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.is-active .hamburger-bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bars span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active .hamburger-bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE MEGA MENU SYSTEM
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop Overlay */
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 18, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* Slide-out Drawer Dialog */
.mobile-drawer-dialog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 340px;
  height: 100%;
  height: 100dvh;
  background: #090d1f;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-drawer.is-open .mobile-drawer-dialog {
  transform: translateX(0);
}

/* Drawer Header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 31, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-shrink: 0;
  z-index: 10;
}

.mobile-drawer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-drawer-logo img {
  height: 38px;
  width: 38px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(67, 100, 219, 0.25);
}

.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: rgba(61, 66, 255, 0.25);
  border-color: rgba(61, 66, 255, 0.6);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Scrollable Drawer Body */
.mobile-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
}

/* Custom Scrollbar for Drawer */
.mobile-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.mobile-drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* Simple Mobile Navigation List */
.mobile-nav {
  width: 100%;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 13px 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 16px;
}

.mobile-nav-link.active {
  color: #ffffff;
  background: rgba(61, 66, 255, 0.15);
  border-left: 3px solid #3d42ff;
  font-weight: 600;
  padding-left: 14px;
}

/* Customer Portal Button in Drawer */
.mobile-drawer-portal {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-portal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: rgba(61, 66, 255, 0.12);
  color: #c7d2fe;
  border: 1px solid rgba(61, 66, 255, 0.3);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-portal-btn:hover,
.mobile-portal-btn:active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Sticky Drawer Footer */
.mobile-drawer-footer {
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(9, 13, 31, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}

.drawer-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.drawer-action-btn.btn-wa {
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-action-btn.btn-wa:hover {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
  transform: translateY(-1px);
}

.drawer-action-btn.btn-call {
  background: rgba(61, 66, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(61, 66, 255, 0.28);
}

.drawer-action-btn.btn-call:hover {
  background: rgba(61, 66, 255, 0.22);
  border-color: rgba(61, 66, 255, 0.45);
  transform: translateY(-1px);
}

/* Desktop safety: ensure drawer is never visible on desktop */
@media (min-width: 1025px) {
  .mobile-drawer {
    display: none !important;
  }
}

/* Small phone optimizations */
@media (max-width: 480px) {
  .mobile-drawer-dialog {
    max-width: 100%;
    border-left: none;
  }

  .mobile-drawer-header {
    padding: 14px 16px;
  }

  .mobile-nav-link {
    font-size: 0.95rem;
    padding: 12px 10px;
  }
}

@media (max-width: 360px) {
  .mobile-drawer-footer {
    flex-direction: column;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 65px 0 35px;
  position: relative;
  text-align: center;
}

/* Dedicated Homepage Hero (Full-Viewport Presence) */
.hero-home {
  min-height: calc(100vh - var(--nav-height, 80px));
  min-height: calc(100dvh - var(--nav-height, 80px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 85px 0 75px;
  position: relative;
  text-align: center;
}

.hero-home .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-home .badge-pill {
  margin-bottom: 24px;
  padding: 7px 22px;
  font-size: 0.88rem;
}

.hero-home .hero-title {
  max-width: 900px;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero-home .hero-desc {
  font-size: 1.18rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-home .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-home .hero-actions .btn {
  padding: 14px 32px;
  font-size: 1.02rem;
}

.hero-home + .section {
  padding-top: 80px;
}

/* Compact Hero for Broadband Plan Pages */
.hero-plan {
  padding: 28px 0 4px;
}

.hero-plan .badge-pill {
  margin-bottom: 10px;
  padding: 5px 15px;
  font-size: 0.82rem;
}

.hero-plan .hero-title {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  margin-bottom: 8px;
}

.hero-plan .hero-desc {
  font-size: 0.98rem;
  margin: 0 auto 4px;
  max-width: 620px;
}

.hero-title {
  margin-bottom: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-section + .section {
  padding-top: 45px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.stat-card,
.stat-item {
  position: relative;
  background: linear-gradient(145deg, rgba(17, 24, 44, 0.75) 0%, rgba(10, 14, 28, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover,
.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), 0 0 24px rgba(61, 66, 255, 0.12);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrap,
.stat-item:hover .stat-icon-wrap {
  transform: scale(1.08);
}

.stat-icon-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.15);
}

.stat-icon-blue {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.15);
}

.stat-icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.15);
}

.stat-icon-emerald {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
}

.stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   PRICING & TOGGLE COMPONENT (MATCHING SCREENSHOTS)
   ========================================================================== */
.pricing-section {
  padding: 10px 0 70px;
  position: relative;
}

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

.pricing-section .section-header {
  margin-bottom: 14px;
}

.pricing-section .section-header h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 10px;
}

.pricing-section .section-subtitle {
  font-size: 0.94rem;
  margin-top: 4px;
}

/* Toggle Switch */
.pricing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.hot-badge {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px var(--primary-glow);
  display: inline-block;
}

.pricing-toggle-pill {
  background: #ffffff;
  padding: 3px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.toggle-btn {
  padding: 7px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.toggle-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(61, 66, 255, 0.4);
}

/* Plan Tab Groups */
.pricing-group {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.pricing-group.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Specific 2-column modifier when group has 2 cards */
.pricing-group.active.two-cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Plan Card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.card-header-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-speed-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.price-val {
  font-size: 2.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Feature List */
.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.plan-feature-item svg {
  color: #38bdf8;
  flex-shrink: 0;
}

/* Card Button */
.card-buy-btn {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.card-buy-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 25px rgba(61, 66, 255, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================================
   SOLUTIONS & FEATURES SECTION — PREMIUM REDESIGN
   ========================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.solutions-grid.three-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.solutions-grid.three-cards .solution-card {
  padding: 42px 34px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(155deg, rgba(18, 24, 44, 0.98), rgba(11, 15, 28, 0.95));
}

.solutions-grid.three-cards .solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 66, 255, 0.45);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.65), 0 0 24px rgba(61, 66, 255, 0.22);
}

.solutions-grid.three-cards .solution-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.solutions-grid.three-cards .solution-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(61, 66, 255, 0.12);
  border: 1px solid rgba(61, 66, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  box-shadow: 0 0 16px rgba(61, 66, 255, 0.15);
  transition: var(--transition);
}

.solutions-grid.three-cards .solution-card:hover .solution-icon-wrap {
  background: rgba(61, 66, 255, 0.22);
  border-color: rgba(99, 102, 241, 0.6);
  color: #c7d2fe;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
  transform: scale(1.06);
}

.solutions-grid.three-cards .solution-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  transition: var(--transition);
  margin-top: 0;
}

.solutions-grid.three-cards .solution-card:hover .solution-num {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.solutions-grid.three-cards .solution-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.solutions-grid.three-cards .solution-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.solution-card {
  background: linear-gradient(145deg, rgba(17, 22, 40, 0.95), rgba(12, 16, 29, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(61, 66, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card:hover {
  border-color: rgba(61, 66, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(61, 66, 255, 0.15) inset;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.solution-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  background: linear-gradient(135deg, #7075ff, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.solution-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61, 66, 255, 0.1);
  border: 1px solid rgba(61, 66, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  flex-shrink: 0;
  transition: var(--transition);
}

.solution-card:hover .solution-icon-wrap {
  background: rgba(61, 66, 255, 0.18);
  border-color: rgba(99, 102, 241, 0.5);
  color: #a5b4fc;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
}

.solution-body {
  flex: 1;
  min-width: 0;
}

.solution-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.solution-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LEASED LINE DEDICATED BENEFITS (EXACT SCREENSHOT LAYOUT)
   ========================================================================== */
.leased-benefits-section {
  margin-top: 55px;
}

.leased-benefits-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.leased-benefits-matrix {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.leased-benefits-matrix-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leased-matrix-cell {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s ease;
  position: relative;
}

.leased-benefits-matrix-top .leased-matrix-cell:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.leased-matrix-cell:hover,
.leased-matrix-bottom:hover {
  background: rgba(61, 66, 255, 0.04);
}

.leased-matrix-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3d42ff 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(61, 66, 255, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.leased-matrix-cell:hover .leased-matrix-icon-wrap,
.leased-matrix-bottom:hover .leased-matrix-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(61, 66, 255, 0.55);
}

.leased-matrix-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
  line-height: 1.32;
}

.leased-matrix-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.leased-matrix-bottom {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}

.leased-matrix-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.333%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.leased-matrix-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.666%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.leased-matrix-bottom .leased-matrix-icon-wrap {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.leased-matrix-bottom .leased-matrix-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.leased-matrix-bottom .leased-matrix-desc {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .leased-benefits-matrix-top {
    grid-template-columns: 1fr;
  }

  .leased-benefits-matrix-top .leased-matrix-cell:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .leased-matrix-cell,
  .leased-matrix-bottom {
    padding: 30px 22px;
  }

  .leased-matrix-bottom::before,
  .leased-matrix-bottom::after {
    display: none;
  }
}

/* ==========================================================================
   DEDICATED VS BROADBAND COMPARISON SECTION
   ========================================================================== */
.vs-comparison-section {
  margin-top: 70px;
}

.vs-comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  position: relative;
}

.vs-divider-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c234a 0%, #101530 100%);
  border: 1.5px solid rgba(129, 140, 248, 0.45);
  color: #c7d2fe;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(61, 66, 255, 0.35);
  flex-shrink: 0;
  z-index: 2;
}

.vs-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.vs-card-standard:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 22, 40, 0.85);
  transform: translateY(-4px);
}

.vs-card-dedicated {
  background: linear-gradient(150deg, rgba(19, 26, 56, 0.85) 0%, rgba(12, 16, 32, 0.95) 100%);
  border: 1.5px solid rgba(99, 102, 241, 0.45);
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.6), 0 0 28px rgba(61, 66, 255, 0.16);
}

.vs-card-dedicated:hover {
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.7), 0 0 36px rgba(61, 66, 255, 0.32);
  transform: translateY(-4px);
}

.vs-popular-pill {
  position: absolute;
  top: -13px;
  left: 32px;
  background: linear-gradient(135deg, #3d42ff 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(61, 66, 255, 0.5);
}

.vs-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.vs-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.vs-card:hover .vs-icon-wrap {
  transform: scale(1.06);
}

.vs-icon-standard {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
}

.vs-icon-dedicated {
  background: linear-gradient(135deg, #3d42ff 0%, #8b5cf6 100%);
  border: 1px solid rgba(129, 140, 248, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(61, 66, 255, 0.4);
}

.vs-tier-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 4px;
}

.vs-tier-tag.standard {
  color: #94a3b8;
}

.vs-tier-tag.dedicated {
  color: #a5b4fc;
}

.vs-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.vs-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vs-feature-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px 20px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.vs-feature-block:hover {
  background: rgba(255, 255, 255, 0.04);
}

.vs-card-dedicated .vs-feature-block {
  background: rgba(61, 66, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.16);
}

.vs-card-dedicated .vs-feature-block:hover {
  background: rgba(61, 66, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
}

.vs-feature-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-feature-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vs-feature-bullet.standard {
  background: #64748b;
}

.vs-feature-bullet.dedicated {
  background: #818cf8;
  box-shadow: 0 0 10px #818cf8;
}

.vs-feature-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

.vs-card-dedicated .vs-feature-label {
  color: #a5b4fc;
}

.vs-feature-desc {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.vs-card-dedicated .vs-feature-desc {
  color: #e2e8f0;
}

@media (max-width: 860px) {
  .vs-comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vs-divider-col {
    padding: 6px 0;
  }

  .vs-card {
    padding: 30px 22px;
  }
}



/* ==========================================================================
   HIGH-END IPTV SERVICES & KEY FEATURES SHOWCASE
   ========================================================================== */
.iptv-showcase-section {
  padding: 10px 0 70px;
  position: relative;
}

.iptv-showcase-container {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 22, 40, 0.8) 0%, rgba(12, 16, 29, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.6), 0 0 45px rgba(61, 66, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

/* Atmospheric Glow inside the card */
.iptv-showcase-container::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(61, 66, 255, 0.22) 0%, rgba(6, 182, 212, 0.1) 45%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.iptv-showcase-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.iptv-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  background: rgba(61, 66, 255, 0.14);
  border: 1px solid rgba(61, 66, 255, 0.45);
  color: #a5b4fc;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(61, 66, 255, 0.25);
}

.iptv-badge-pill svg {
  color: #818cf8;
}

.iptv-showcase-intro {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.iptv-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  max-width: 620px;
  margin: 36px auto 30px;
  background: linear-gradient(90deg, transparent 0%, rgba(61, 66, 255, 0.5) 25%, rgba(6, 182, 212, 0.9) 50%, rgba(139, 92, 246, 0.5) 75%, transparent 100%);
}

.iptv-features-title-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 34px;
}

.iptv-features-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

/* 3-Column Top Row */
.iptv-features-grid-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* 2-Column Bottom Row */
.iptv-features-grid-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.iptv-feature-card {
  position: relative;
  background: rgba(14, 18, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
  overflow: hidden;
}

.iptv-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(61, 66, 255, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.iptv-feature-card:hover {
  background: rgba(20, 26, 48, 0.95);
  border-color: rgba(61, 66, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(61, 66, 255, 0.2);
}

.iptv-feature-card:hover::before {
  opacity: 1;
}

.iptv-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.iptv-feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61, 66, 255, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(61, 66, 255, 0.35);
  color: #60a5fa;
  box-shadow: 0 4px 16px rgba(61, 66, 255, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.iptv-feature-card:hover .iptv-feature-icon-box {
  transform: scale(1.08);
  border-color: rgba(6, 182, 212, 0.7);
  color: #38bdf8;
  box-shadow: 0 6px 22px rgba(6, 182, 212, 0.35);
}

.iptv-feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.iptv-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.iptv-feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Device Banner */
.iptv-device-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(61, 66, 255, 0.12) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(139, 92, 246, 0.12) 100%);
  border: 1px solid rgba(61, 66, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.iptv-device-banner:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.2);
}

.iptv-device-banner-content {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.iptv-device-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3d42ff 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(61, 66, 255, 0.4);
}

.iptv-device-banner-text p {
  font-size: 1.02rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.55;
  margin-bottom: 10px;
}

.iptv-device-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iptv-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.iptv-device-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
}

.iptv-device-chip svg {
  color: var(--accent-cyan);
}

.iptv-device-action {
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
  gap: 8px;
}

/* Responsive adjustments for IPTV Showcase */
@media (max-width: 980px) {
  .iptv-showcase-container {
    padding: 38px 24px;
  }

  .iptv-features-grid-top,
  .iptv-features-grid-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .iptv-features-grid-top {
    margin-bottom: 16px;
  }

  .iptv-device-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .iptv-device-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .iptv-device-action {
    width: 100%;
    margin-top: 10px;
  }

  .iptv-device-action .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .iptv-showcase-container {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .iptv-feature-card {
    padding: 22px 18px;
  }

  .iptv-badge-pill {
    padding: 5px 14px;
    font-size: 0.78rem;
  }

  .iptv-showcase-intro {
    font-size: 0.98rem;
  }

  .iptv-device-banner-text p {
    font-size: 0.94rem;
  }
}

/* ==========================================================================
   HIGH-END OTT SERVICES & INCLUDED PLATFORMS SHOWCASE
   ========================================================================== */
.ott-showcase-section {
  padding: 10px 0 70px;
  position: relative;
}

.ott-showcase-container {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 22, 40, 0.82) 0%, rgba(12, 16, 29, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.6), 0 0 45px rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

/* Atmospheric Glow inside the OTT container */
.ott-showcase-container::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, rgba(61, 66, 255, 0.15) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.ott-showcase-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}

.ott-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.45);
  color: #c4b5fd;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
}

.ott-badge-pill svg {
  color: #a78bfa;
}

.ott-showcase-intro {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

/* INCLUDED OTT PLATFORMS SECTION */
.ott-platforms-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px auto 36px;
  width: 100%;
}

/* Rounded Pill Header matching user screenshot */
.ott-platforms-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 920px;
  padding: 16px 36px;
  border-radius: 9999px;
  background: rgba(8, 10, 24, 0.75);
  border: 2px solid #5d3bfe;
  box-shadow: 0 0 26px rgba(93, 59, 254, 0.4), inset 0 0 16px rgba(93, 59, 254, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ott-platforms-pill:hover {
  border-color: #7c3aed;
  box-shadow: 0 0 34px rgba(124, 58, 237, 0.55), inset 0 0 20px rgba(124, 58, 237, 0.2);
}

.ott-platforms-pill-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
}

/* Circular Logos Avatar Stack */
.ott-platforms-stack,
.ott-circles-stack {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 14px 10px;
  margin: 0 auto;
  max-width: 100%;
}

.ott-platform-circle {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  border: 3.5px solid #ffffff;
  background: #0b0f19;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease, z-index 0.1s ease;
  flex-shrink: 0;
}

.ott-platform-circle:not(:first-child) {
  margin-left: -16px;
}

.ott-platform-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Elevate on hover with vibrant glow and tooltip */
.ott-platform-circle:hover,
.ott-platform-circle:focus-visible {
  transform: translateY(-8px) scale(1.18);
  z-index: 25;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65), 0 0 25px rgba(93, 59, 254, 0.5);
  border-color: #ffffff;
  outline: none;
}

.ott-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(14, 18, 36, 0.95);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 30;
}

.ott-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(14, 18, 36, 0.95) transparent transparent transparent;
}

.ott-platform-circle:hover .ott-tooltip,
.ott-platform-circle:focus-visible .ott-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Device Row (2 by 2 Layout) */
.ott-watch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ott-watch-prefix {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.ott-device-tags {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 22px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.ott-device-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.ott-device-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 82px;
}

.ott-device-tag svg {
  color: #a78bfa;
  flex-shrink: 0;
}

.ott-device-divider {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.85rem;
  user-select: none;
}

/* Luminous OTT Divider */
.ott-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  max-width: 620px;
  margin: 36px auto 32px;
  background: linear-gradient(90deg, transparent 0%, rgba(93, 59, 254, 0.5) 25%, rgba(168, 85, 247, 0.9) 50%, rgba(61, 66, 255, 0.5) 75%, transparent 100%);
}

/* OTT Benefits Section */
.ott-benefits-section {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.ott-benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}

.ott-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ott-benefit-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 35px;
  background: linear-gradient(157deg, rgba(8, 10, 22, 0.9) 0%, rgba(13, 17, 50, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ott-benefit-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(124, 58, 237, 0.2);
}

.ott-benefit-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.ott-benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
}

/* Responsive adjustments for OTT Showcase */
@media (max-width: 980px) {
  .ott-showcase-container {
    padding: 38px 24px;
  }

  .ott-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .ott-platforms-pill {
    padding: 13px 22px;
    margin-bottom: 22px;
  }

  .ott-platform-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-width: 3px;
  }

  .ott-platform-circle:not(:first-child) {
    margin-left: -13px;
  }

  .ott-watch-row {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .ott-showcase-container {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .ott-platforms-pill {
    padding: 10px 16px;
    margin-bottom: 18px;
  }

  .ott-platforms-pill-title {
    font-size: 1.05rem;
  }

  .ott-platform-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-width: 2.5px;
  }

  .ott-platform-circle:not(:first-child) {
    margin-left: -9px;
  }

  .ott-benefit-pill {
    padding: 13px 18px;
    border-radius: 26px;
  }

  .ott-benefit-title {
    font-size: 0.92rem;
  }

  .ott-watch-row {
    margin-top: 18px;
    gap: 10px;
  }

  .ott-watch-prefix {
    font-size: 0.92rem;
  }

  .ott-device-tags {
    padding: 8px 16px;
    gap: 6px;
    border-radius: 15px;
  }

  .ott-device-row-inner {
    gap: 10px;
  }

  .ott-device-tag {
    font-size: 0.82rem;
    min-width: 72px;
    gap: 5px;
  }

  .ott-device-tag svg {
    width: 13px;
    height: 13px;
  }
}


.cta-banner-wrapper {
  background: linear-gradient(135deg, #0d1226 0%, #171038 50%, #0d1a33 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-width: 0;
}

.cta-banner-content h2 {
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image-wrap img {
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   CONTACT PAGE & INFO
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(61, 66, 255, 0.12);
  border: 1px solid rgba(61, 66, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item-content a:hover {
  color: #ffffff;
}

/* Map Embed */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Generic Info / Service Pages Content */
.content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-box h3 {
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-box p {
  margin-bottom: 16px;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.content-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-box li svg {
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 4px;
}

.content-box li span {
  flex: 1;
  min-width: 0;
  display: block;
}

.content-box li strong {
  color: var(--text-white);
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #04060c;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 45px;
}

.footer-brand img {
  height: 56px;
  width: 56px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(67, 100, 219, 0.25);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 320px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.footer-phone-icon {
  color: #10b981;
}

.footer-email-icon {
  color: #38bdf8;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.45));
}

.current-year {
  margin-right: 6px;
  display: inline-block;
}

.footer-address-nowrap {
  white-space: nowrap;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: #cbd5e1;
  white-space: nowrap;
}

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

.footer-legal-links a {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.footer-legal-links a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {

  .nav-menu,
  .nav-actions .btn-portal {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .solutions-grid.three-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 46px 0;
  }

  .section-sm {
    padding: 30px 0;
  }
  /* Homepage Hero Mobile Optimization */
  .hero-section {
    padding: 36px 0 20px;
  }

  .hero-section + .section {
    padding-top: 30px;
  }

  .hero-home {
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    padding: 44px 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-home + .section {
    padding-top: 50px;
  }

  .hero-home .badge-pill {
    padding: 5px 15px;
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .hero-home .hero-title {
    font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    line-height: 1.24;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }

  .hero-home .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 520px;
  }

  /* Two hero buttons aligned strictly in ONE line */
  .hero-home .hero-actions,
  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 0;
  }

  .hero-home .hero-actions .btn,
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 11px 8px;
    font-size: clamp(0.75rem, 2.8vw, 0.86rem);
    gap: 6px;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .btn-text-desktop {
    display: none !important;
  }

  .btn-text-mobile {
    display: inline !important;
  }

  .hero-plan {
    padding: 22px 0 4px;
  }

  .hero-plan .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .hero-plan .hero-desc {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* Section Header Spacing */
  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: clamp(1.25rem, 4.6vw, 1.65rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-top: 6px;
  }

  .content-box {
    padding: 26px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .content-box h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .content-box p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .content-box ul {
    gap: 12px;
    margin-top: 14px;
  }

  .content-box li {
    font-size: 0.88rem;
    line-height: 1.5;
    gap: 10px;
  }

  .pricing-group.active,
  .pricing-group.active.two-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Solutions Cards: Compact on mobile */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .solution-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .solution-card-inner {
    gap: 14px;
    align-items: center;
  }

  .solution-num {
    display: none;
  }

  .solution-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .solution-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .solution-title {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .solution-desc {
    font-size: 0.83rem;
    line-height: 1.5;
  }

  /* CTA Banner: Responsive and Compact */
  .cta-banner-wrapper {
    padding: 28px 18px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }

  .cta-banner-content {
    width: 100%;
    min-width: 0;
  }

  .cta-banner-content h2 {
    font-size: clamp(1.18rem, 4.4vw, 1.45rem);
    line-height: 1.25;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cta-banner-content p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cta-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 0;
  }

  .cta-actions .btn {
    flex: 1 1 165px;
    min-width: 0;
    max-width: 100%;
    padding: 10px 12px;
    font-size: clamp(0.74rem, 2.6vw, 0.84rem);
    gap: 6px;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .cta-actions .btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .cta-image-wrap img,
  .cta-image-wrapper img {
    max-height: 110px;
    margin: 0 auto;
  }

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

  /* Footer: Compact 2-column layout to prevent endless single-line scroll */
  .site-footer {
    padding: 34px 0 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
    margin-bottom: 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    height: 46px;
    width: 46px;
    border-radius: 10px;
  }

  .footer-brand p {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.45;
    max-width: 440px;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links li,
  .footer-links a {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
    margin-top: 2px;
    text-align: center;
  }

  .footer-col:last-child h4 {
    margin-bottom: 8px;
  }

  .footer-col:last-child .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }

  .footer-col:last-child .footer-links li {
    display: inline-flex;
    align-items: center;
  }

  .footer-address-nowrap {
    white-space: normal;
  }

  /* Footer Bottom (All Rights Reserved) - Strictly ONE line on every screen px */
  .footer-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
  }

  .footer-bottom p {
    white-space: nowrap !important;
    font-size: clamp(0.56rem, 2.55vw, 0.84rem) !important;
    letter-spacing: -0.01em;
    text-align: center;
    width: 100%;
    margin: 0;
    color: #94a3b8;
    overflow: hidden;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 12px;
    margin: 0;
  }

  .footer-legal-links a {
    font-size: clamp(0.68rem, 2.2vw, 0.78rem);
    white-space: nowrap;
    color: #94a3b8;
  }

  /* Stats Grid: 2-column layout to prevent massive scrolling */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card,
  .stat-item {
    padding: 14px 10px;
    border-radius: 12px;
  }

  .stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

  .stat-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .stat-num {
    font-size: 1.35rem;
    margin-bottom: 2px;
    line-height: 1.15;
  }

  .stat-label {
    font-size: 0.74rem;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    height: 42px;
    width: 42px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding: 34px 0;
  }

  .section-sm {
    padding: 22px 0;
  }

  /* Homepage Hero Compact for Small Screens */
  .hero-section {
    padding: 28px 0 16px;
  }

  .hero-section + .section {
    padding-top: 24px;
  }

  .hero-home {
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    padding: 36px 0 28px;
  }

  .hero-home + .section {
    padding-top: 42px;
  }

  .hero-home .badge-pill {
    padding: 4px 13px;
    font-size: 0.74rem;
    margin-bottom: 12px;
  }

  .hero-home .hero-title {
    font-size: clamp(1.28rem, 5.2vw, 1.55rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  .hero-home .hero-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin: 0 auto 18px;
  }

  .hero-home .hero-actions,
  .hero-actions {
    gap: 6px;
    margin: 0 auto 0;
    max-width: 100%;
  }

  .hero-home .hero-actions .btn,
  .hero-actions .btn {
    padding: 10px 6px;
    font-size: clamp(0.7rem, 2.6vw, 0.82rem);
    gap: 4px;
  }

  .hero-actions .btn svg {
    width: 14px;
    height: 14px;
  }

  .hero-plan {
    padding: 16px 0 4px;
  }

  .hero-plan .badge-pill {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 6px;
  }

  .hero-plan .hero-title {
    font-size: 1.18rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .hero-plan .hero-desc {
    font-size: 0.86rem;
    line-height: 1.45;
  }

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

  .pricing-section .section-header h2 {
    font-size: 1.2rem;
  }

  .pricing-section .section-subtitle {
    font-size: 0.84rem;
  }

  .toggle-btn {
    padding: 6px 18px;
    font-size: 0.82rem;
  }

  .pricing-group.active,
  .pricing-group.active.two-cards {
    max-width: 100%;
  }

  .content-box {
    padding: 18px 14px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .content-box h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .content-box p {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .content-box ul {
    gap: 10px;
    margin-top: 12px;
  }

  .content-box li {
    font-size: 0.82rem;
    line-height: 1.45;
    gap: 8px;
  }

  .content-box li svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .solutions-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .solution-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .solution-card-inner {
    gap: 10px;
  }

  .solution-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .solution-icon-wrap svg {
    width: 17px;
    height: 17px;
  }

  .solution-title {
    font-size: 0.9rem;
  }

  .solution-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .stats-grid {
    gap: 8px;
  }

  .stat-card,
  .stat-item {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .stat-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-bottom: 4px;
  }

  .stat-icon-wrap svg {
    width: 15px;
    height: 15px;
  }

  .stat-num {
    font-size: 1.15rem;
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* CTA Banner: Mobile Stacked Full-Width Buttons */
  .cta-banner-wrapper {
    padding: 22px 14px;
    border-radius: 14px;
    margin-top: 28px !important;
  }

  .cta-banner-content h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.28rem);
    line-height: 1.25;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cta-banner-content p {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 8px;
  }

  .cta-actions .btn {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 11px 14px;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 10px;
  }

  .site-footer {
    padding: 26px 0 14px;
  }

  .footer-grid {
    gap: 18px 12px;
    margin-bottom: 16px;
  }

  .footer-brand img {
    height: 42px;
    width: 42px;
    border-radius: 9px;
  }

  .footer-brand p {
    font-size: 0.76rem;
  }

  .footer-col h4 {
    font-size: 0.86rem;
    margin-bottom: 6px;
  }

  .footer-links li,
  .footer-links a {
    font-size: 0.76rem;
  }

  .footer-bottom {
    padding-top: 12px;
    gap: 6px;
  }

  .footer-bottom p {
    font-size: clamp(0.52rem, 2.5vw, 0.76rem) !important;
  }

  .footer-legal-links {
    gap: 4px 10px;
  }

  .footer-legal-links a {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   MOBILE APP STORE BUTTONS (HERO)
   ========================================================================== */
.hero-mobile-app {
  padding-bottom: 20px;
}

.app-store-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 20px;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(23, 31, 58, 0.95) 0%, rgba(13, 17, 34, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  min-width: 215px;
  text-align: left;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.store-badge-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.55);
  background: linear-gradient(135deg, rgba(34, 45, 84, 0.98) 0%, rgba(18, 24, 48, 1) 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 24px rgba(61, 66, 255, 0.25);
  color: #ffffff;
}

.store-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apple-store-badge .store-badge-icon svg {
  color: #ffffff;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.store-badge-sub {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.store-badge-main {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .app-store-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .store-badge-btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }
}

/* ==========================================================================
   LARGE & ULTRA-WIDE SCREEN OPTIMIZATIONS (18"+ MONITORS & 1440p / 4K DESKTOPS)
   ========================================================================== */

/* 15"-17" Full Display / 1440px Viewports */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
  }

  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-menu {
    gap: 32px;
  }

  .solutions-grid {
    gap: 32px;
  }

  .pricing-group.active {
    gap: 26px;
  }

  .pricing-group.active.two-cards {
    max-width: 920px;
  }

  .stats-grid {
    max-width: 1180px;
    gap: 24px;
  }

  .footer-grid {
    gap: 44px;
  }

  .footer-brand p {
    max-width: 360px;
  }
}

/* 18"+ Monitors & 1080p Desktop at 100% (1680px - 1920px) */
@media (min-width: 1680px) {
  :root {
    --container-max: 1480px;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section {
    padding: 95px 0;
  }

  .hero-section {
    padding: 85px 0 60px;
  }

  .hero-section + .section {
    padding-top: 55px;
  }

  .hero-home {
    min-height: calc(100vh - 90px);
    padding: 105px 0;
  }

  .hero-home + .section {
    padding-top: 85px;
  }

  .hero-title {
    max-width: 960px;
  }

  .hero-desc {
    max-width: 720px;
    font-size: 1.18rem;
  }

  .stats-grid {
    max-width: 1300px;
    gap: 28px;
  }

  .stat-card,
  .stat-item {
    padding: 30px 24px;
  }

  .stat-num {
    font-size: 2.1rem;
  }

  .solutions-grid {
    gap: 36px;
  }

  .solution-card {
    padding: 34px 28px;
  }

  .pricing-group.active {
    gap: 28px;
  }

  .pricing-group.active.two-cards {
    max-width: 980px;
  }

  .pricing-card .card-body {
    padding: 24px 22px;
  }

  .cta-banner-wrapper {
    padding: 68px 60px;
  }

  .cta-grid {
    gap: 50px;
  }

  .footer-grid {
    gap: 52px;
  }

  .footer-brand p {
    max-width: 400px;
    font-size: 0.95rem;
  }
}

/* 2K / 4K / 27"+ Monitors & Ultra-Wide Screens (2000px+) */
@media (min-width: 2000px) {
  :root {
    --container-max: 1640px;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section {
    padding: 110px 0;
  }

  .hero-section {
    padding: 95px 0 70px;
  }

  .hero-section + .section {
    padding-top: 60px;
  }

  .hero-home {
    min-height: calc(100vh - 100px);
    padding: 120px 0;
  }

  .hero-home + .section {
    padding-top: 95px;
  }

  .stats-grid {
    max-width: 1440px;
    gap: 32px;
  }

  .solutions-grid {
    gap: 40px;
  }

  .solution-card {
    padding: 38px 32px;
  }

  .pricing-group.active {
    gap: 32px;
  }

  .pricing-group.active.two-cards {
    max-width: 1080px;
  }

  .cta-banner-wrapper {
    padding: 78px 70px;
  }

  .footer-grid {
    gap: 60px;
  }

  .footer-brand p {
    max-width: 440px;
  }
}