    :root {
      --midnight: #0d1b3e;
      --slate-dark: #007AFE;
      --steel: #31AAFE;
      --charcoal: #0d1b3e;
      --muted: #64748b;
      --orange: #F78220;
      --orange-dark: #d96910;
      --orange-amber: #FEBB36;
      --white: #ffffff;
      --cloud: #f5faff;
      --mist: #e6f5ff;
      --shadow-lg: 0 40px 80px rgba(8, 5, 25, 0.18);
      --shadow-md: 0 24px 50px rgba(7, 5, 20, 0.12);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --space-1: 8px;
      --space-2: 16px;
      --space-3: 24px;
      --space-4: 32px;
      --space-5: 40px;
      --space-6: 48px;
      --space-8: 64px;
      --space-10: 80px;
      --space-12: 96px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", sans-serif;
      color: var(--charcoal);
      background: var(--off-white);
      line-height: 1.5;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0, 28, 88, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .logo-text {
      color: #fff;
      font-family: "Montserrat", sans-serif;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: -0.4px;
      line-height: 1;
    }

    .nav-links {
      display: flex;
      gap: 2vw;
      list-style: none;
    }

    .nav-links a {
      position: relative;
      display: inline-block;
      padding-bottom: 7px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: .85rem;
      font-weight: 500;
      font-family: "Montserrat", sans-serif;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a.active {
      color: rgba(255, 255, 255, 0.96);
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      background: var(--orange);
      border-radius: 999px;
    }

    .nav-btn {
      background: var(--orange);
      color: #fff;
      padding: .70em 1.30em;
      border-radius: 7px;
      font-family: "Montserrat", sans-serif;
      font-size: .75rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: .4px;
      transition: background .2s, transform .15s;
      border: none;
      cursor: pointer;
    }

    .nav-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mob-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: rgba(0, 22, 72, 0.98);
      padding: 1.5rem 1.25rem;
      flex-direction: column;
      gap: 0;
      z-index: 899;
    }

    .mob-menu.open {
      display: flex;
    }

    .mob-menu a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      padding: .85rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      display: block;
      transition: color .2s;
    }

    .mob-menu a:hover {
      color: #fff;
    }

    .mob-menu .mob-cta {
      margin-top: 1rem;
      text-align: center;
      border-bottom: none;
      background: var(--orange);
      color: #fff;
      border-radius: 7px;
      padding: 12px;
      font-weight: 700;
    }

    body[data-page='internet-plans'] .hero.hero--internet {
      padding-top: calc(var(--header-height) + var(--space-4));
      padding-bottom: 0;
      background: transparent;
      text-align: center;
    }

    body[data-page='internet-plans'] main {
      position: relative;
      background: url("../hero_bg/internet_bg.png") center top / 100% auto no-repeat;
    }

    body[data-page='internet-plans'] .hero.hero--internet,
    body[data-page='internet-plans'] .pricing {
      z-index: 1;
    }

    .hero--internet .hero__inner {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero--internet .hero__content {
      max-width: 100%;
      margin-inline: auto;
    }


    .hero--internet .breadcrumb a {
      color: #007AFE;
    }

    .hero--internet .breadcrumb a:hover {
      color: #0D1B3E;
    }

    .hero--internet .bc-sep {
      color: #31AAFE;
    }

    .hero--internet .bc-cur {
      color: #0D1B3E;
    }

    .hero--internet .hero__title {
      font-size: clamp(2rem, 4.4vw, 3.375rem);
      line-height: 1.05;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .hero--internet .hero__title {
        white-space: normal;
      }
    }

    .text-accent {
      color: var(--blue-primary);
    }

    body[data-page='internet-plans'] .pricing {
      background: transparent;
      color: var(--charcoal);
      border-radius: 0;
      padding: var(--space-3) 0 var(--section-space-y);
      position: relative;
      overflow: hidden;
      box-shadow: none;
    }

    .pricing__content {
      position: relative;
      z-index: 1;
    }

    .plans-toggle-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: var(--space-3);
      flex-wrap: wrap;
    }

    .plans-toggle-group {
      display: flex;
      border: 1px solid rgba(0, 70, 176, 0.2);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-sm);
    }

    .plans-toggle-sep {
      width: 1px;
      height: 28px;
      background: rgba(0, 70, 176, 0.15);
      align-self: center;
    }

    .plans-toggle-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 12px 22px;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      border: none;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .plans-toggle-btn svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      opacity: 0.6;
      transition: opacity 0.2s ease;
    }

    .plans-toggle-btn.active {
      background: var(--slate-dark);
      color: var(--white);
    }

    .plans-toggle-btn.active svg,
    .plans-toggle-btn.active-turbo svg {
      opacity: 1;
    }

    .plans-toggle-btn.active-turbo {
      background: linear-gradient(90deg, var(--orange-dark), var(--orange));
      color: var(--white);
    }

    .plan-card-wrap {
      margin-bottom: var(--space-3);
    }

    .plan-card {
      display: grid;
      grid-template-columns: 50% 1fr;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(0, 70, 176, 0.14);
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 20px 48px rgba(14, 27, 74, 0.1);
      transition: box-shadow 0.3s ease;
    }

    .plan-card:hover {
      box-shadow: 0 28px 60px rgba(14, 27, 74, 0.15);
    }

    .plan-img-panel {
      position: relative;
      min-height: 280px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .plan-img-panel.theme-iblaze-super {
      background: linear-gradient(155deg, rgba(0, 14, 46, 0.55) 0%, rgba(0, 35, 110, 0.45) 55%, rgba(0, 70, 176, 0.35) 100%), url("../plans_bg/bg1.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .plan-img-panel.theme-iblaze-turbo {
      background: linear-gradient(155deg, rgba(26, 6, 0, 0.55) 0%, rgba(107, 32, 0, 0.45) 55%, rgba(242, 100, 19, 0.35) 100%), url("../plans_bg/bg2.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .plan-img-panel.theme-fiber-super {
      background: linear-gradient(155deg, rgba(0, 14, 46, 0.55) 0%, rgba(0, 53, 128, 0.45) 55%, rgba(0, 102, 204, 0.35) 100%), url("../plans_bg/bg4.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .plan-img-panel.theme-fiber-turbo {
      background: url("../plans_bg/bg3.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .plan-img-panel::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 65%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
      pointer-events: none;
    }

    .plan-img-orb {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      opacity: 0.18;
      pointer-events: none;
    }

    .theme-iblaze-super .plan-img-orb,
    .theme-fiber-super .plan-img-orb {
      background: radial-gradient(circle, var(--steel), transparent);
    }

    .theme-iblaze-turbo .plan-img-orb {
      background: radial-gradient(circle, var(--orange), transparent);
    }

    .theme-fiber-turbo .plan-img-orb {
      background: radial-gradient(circle, #2b6cb0, transparent);
    }

    .plan-img-content {
      position: relative;
      z-index: 2;
      padding: 1.5rem 1.75rem;
      width: 100%;
    }

    .plan-img-tier-badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .theme-iblaze-super .plan-img-tier-badge,
    .theme-fiber-super .plan-img-tier-badge {
      background: rgba(0, 70, 176, 0.3);
      border: 1px solid rgba(51, 122, 183, 0.5);
      color: #93c5fd;
    }

    .theme-iblaze-turbo .plan-img-tier-badge {
      background: rgba(242, 100, 19, 0.25);
      border: 1px solid rgba(242, 100, 19, 0.5);
      color: var(--orange-amber);
    }

    .theme-fiber-turbo .plan-img-tier-badge {
      background: rgba(0, 70, 176, 0.28);
      border: 1px solid rgba(51, 122, 183, 0.45);
      color: #93c5fd;
    }

    .plan-img-name {
      font-family: "Montserrat", sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .plan-img-name span {
      display: block;
      font-size: 14px;
      font-weight: 600;
      opacity: 0.72;
      margin-top: 2px;
    }

    .plan-img-bundle {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 10px;
      padding: 5px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.04em;
    }

    .plan-img-bundle svg {
      width: 12px;
      height: 12px;
      opacity: 0.75;
    }

    .plan-details-panel {
      position: relative;
      overflow: hidden;
      padding: 2rem 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 249, 255, 0.1)),
        url("../hero_bg/internet_details_bg.png") center/cover no-repeat;
    }

    .plan-details-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(0, 35, 110, 0.05) 100%);
      pointer-events: none;
    }

    .plan-details-panel > * {
      position: relative;
      z-index: 1;
    }

    .plan-desc-text {
      font-size: 13.5px;
      color: #3d506f;
      line-height: 1.65;
      max-width: 420px;
    }

    .plan-summary-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .plan-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .plan-stat__label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #5c6f8f;
    }

    .plan-stat__value {
      font-family: "Montserrat", sans-serif;
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      color: #08193d;
    }

    .plan-stat__value.accent {
      color: var(--orange);
    }

    .plan-stat__value.accent-turbo {
      color: var(--orange-dark);
    }

    .plan-stat__sub {
      font-size: 11px;
      color: #5f708b;
      margin-top: 2px;
    }

    .plan-stat-sep,
    .plan-divider {
      background: rgba(0, 28, 67, 0.14);
    }

    .plan-stat-sep {
      width: 1px;
      align-self: stretch;
      flex-shrink: 0;
    }

    .plan-divider {
      height: 1px;
      opacity: 0.65;
    }

    .plan-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .plan-cta-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
      flex-shrink: 0;
    }

    .plan-cta-primary,
    .plan-cta-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      white-space: nowrap;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .plan-cta-primary {
      gap: 7px;
      padding: 12px 24px;
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      background: linear-gradient(120deg, var(--slate-dark), var(--steel));
      color: var(--white);
      box-shadow: 0 10px 24px rgba(0, 70, 176, 0.32);
    }

    .plan-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0, 70, 176, 0.38);
    }

    .plan-cta-primary svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .plan-cta-primary.turbo-cta {
      background: linear-gradient(120deg, var(--orange-dark), var(--orange-amber));
      box-shadow: 0 10px 24px rgba(242, 100, 19, 0.32);
    }

    .plan-cta-primary.turbo-cta:hover {
      box-shadow: 0 16px 32px rgba(242, 100, 19, 0.38);
    }

    .plan-cta-secondary {
      padding: 9px 18px;
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.78);
      color: #304769;
      border: 1px solid rgba(0, 28, 67, 0.16);
    }

    .plan-cta-secondary:hover {
      background: rgba(255, 255, 255, 0.95);
      color: var(--midnight);
      border-color: rgba(0, 70, 176, 0.3);
    }

    .plan-features-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 28px;
      align-items: start;
    }

    .plan-feature-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: #3f5576;
    }

    .plan-feature-item svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: var(--slate-dark);
    }

    @media (max-width: 720px) {
      .plan-features-row {
        grid-template-columns: 1fr;
        gap: 8px 0;
      }
    }

    .plan-feature-item.turbo-feat svg {
      color: var(--orange);
    }

    .plans-help {
      display: flex;
      align-items: center;
      gap: 1rem;
      min-height: 4.75rem;
      margin-top: var(--space-5);
      padding: .75rem 1.25rem;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: rgba(230, 245, 255, .7);
      color: var(--dark);
      text-decoration: none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .plans-help:hover {
      border-color: var(--blue-light);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
    }

    .plans-help__icon {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, .55);
      color: var(--blue-primary);
    }

    .plans-help__icon svg {
      width: 1.85rem;
      height: 1.85rem;
    }

    .plans-help__copy {
      display: grid;
      gap: .15rem;
      min-width: 0;
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.4;
    }

    .plans-help__copy strong {
      color: var(--blue-primary);
      font-weight: 700;
    }

    .plans-help__arrow {
      flex: 0 0 auto;
      width: 1.25rem;
      height: 1.25rem;
      margin-left: auto;
      color: var(--blue-primary);
    }

    @media (max-width: 960px) {
      .plan-card {
        grid-template-columns: 1fr;
      }

      .plan-img-panel {
        min-height: 190px;
      }
    }

    @media (max-width: 720px) {
      .site-header {
        height: 60px;
      }

      .mob-menu {
        top: 60px;
      }

      .nav-links,
      .nav-btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .plans-toggle-group {
        flex-direction: column;
        width: 100%;
      }

      .plans-toggle-btn {
        justify-content: center;
      }

      .plans-toggle-sep {
        width: 100%;
        height: 1px;
      }

      .plan-details-panel {
        padding: 1.6rem 1.2rem;
        gap: 0.5em;
      }

      .plan-cta-group {
        width: 100%;
        align-items: stretch;
      }

      .plan-cta-primary,
      .plan-cta-secondary {
        width: 100%;
      }

    }

/* Page-specific exception: Internet Plans uses a centered hero at every viewport. */
body[data-page='internet-plans'] .hero--internet .hero__inner {
  align-items: center;
  text-align: center;
}

body[data-page='internet-plans'] .hero--internet .hero__content {
  margin-inline: auto;
  text-align: center;
}

body[data-page='internet-plans'] .hero--internet .breadcrumb { justify-content: center; }

@media (max-width: 600px) {
  body[data-page='internet-plans'] .hero--internet .hero__inner { text-align: center !important; }
  body[data-page='internet-plans'] .hero--internet .hero__content { margin-inline: auto !important; text-align: center !important; }
  body[data-page='internet-plans'] .hero--internet .breadcrumb { justify-content: center !important; }
}
  
