/*
Theme Name: NetLayers
Theme URI: https://netlayers.ca
Author: NetLayers Inc.
Description: Professional telecommunications theme — internet, phone, TV, data centre, web solutions.
Version: 2.1.0
License: GNU General Public License v2 or later
Text Domain: netlayers
*/

/* =========================================================
   DESIGN TOKENS — TekSavvy-inspired clean ISP palette
   ========================================================= */
:root {
  /* Blues */
  --nl-blue-900: #0b1f3a;
  --nl-blue-800: #0f2d54;
  --nl-blue-700: #154a87;
  --nl-blue-600: #1a5fb4;
  --nl-blue-500: #2172cc;
  --nl-blue-400: #4a90d9;
  --nl-blue-300: #82b8ed;
  --nl-blue-200: #bdd7f4;
  --nl-blue-100: #deeaf9;
  --nl-blue-50:  #f0f6fd;

  /* Accent */
  --nl-accent:   #e8520a;   /* TekSavvy-like warm orange accent */
  --nl-accent-light: #fff3ee;
  --nl-green:    #16a34a;
  --nl-teal:     #0891b2;

  /* Grays */
  --nl-gray-900: #111827;
  --nl-gray-800: #1f2937;
  --nl-gray-700: #374151;
  --nl-gray-600: #4b5563;
  --nl-gray-500: #6b7280;
  --nl-gray-400: #9ca3af;
  --nl-gray-300: #d1d5db;
  --nl-gray-200: #e5e7eb;
  --nl-gray-100: #f3f4f6;
  --nl-gray-50:  #f9fafb;
  --nl-white:    #ffffff;

  /* Typography */
  --nl-font: 'Inter', system-ui, -apple-system, sans-serif;
  --nl-font-size-base: 16px;

  /* Radii */
  --nl-radius-sm:  4px;
  --nl-radius-md:  8px;
  --nl-radius-lg:  12px;
  --nl-radius-xl:  16px;
  --nl-radius-2xl: 24px;
  --nl-radius-full: 9999px;

  /* Shadows */
  --nl-shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --nl-shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --nl-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --nl-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --nl-shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --nl-shadow-card: 0 2px 12px rgba(11,31,58,0.08);

  /* Transitions */
  --nl-transition: 0.2s ease;
  --nl-transition-slow: 0.35s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--nl-font-size-base); scroll-behavior: smooth; }
body {
  font-family: var(--nl-font);
  color: var(--nl-gray-800);
  background: var(--nl-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--nl-blue-600); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--nl-gray-900); }
p { line-height: 1.7; color: var(--nl-gray-600); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--light { background: var(--nl-gray-50); }
.section--blue-light { background: var(--nl-blue-50); }
.section--dark { background: var(--nl-blue-900); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--nl-blue-600);
  margin-bottom: 0.75rem;
}
.section-label--accent { color: var(--nl-accent); }
.section-label--light { color: var(--nl-blue-300); }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--nl-gray-900); margin-bottom: 1rem; }
.section-title--light { color: var(--nl-white); }
.section-desc { font-size: 1.0625rem; color: var(--nl-gray-600); max-width: 640px; margin: 0 auto; }
.section-desc--light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header--left { text-align: left; }
.section-header--left .section-desc { margin: 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.625rem; border-radius: var(--nl-radius-md);
  font-size: 0.9375rem; font-weight: 600; line-height: 1;
  transition: all var(--nl-transition); border: 2px solid transparent;
  white-space: nowrap; text-decoration: none; cursor: pointer;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn--primary { background: var(--nl-blue-600); color: #fff; border-color: var(--nl-blue-600); }
.btn--primary:hover { background: var(--nl-blue-700); border-color: var(--nl-blue-700); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,95,180,0.35); }
.btn--accent { background: var(--nl-accent); color: #fff; border-color: var(--nl-accent); }
.btn--accent:hover { background: #c94308; border-color: #c94308; color: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--nl-blue-600); border-color: var(--nl-blue-600); }
.btn--outline:hover { background: var(--nl-blue-600); color: #fff; }
.btn--white { background: #fff; color: var(--nl-blue-700); border-color: #fff; }
.btn--white:hover { background: var(--nl-blue-50); color: var(--nl-blue-800); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.btn--ghost { background: transparent; color: var(--nl-gray-700); border-color: var(--nl-gray-300); }
.btn--ghost:hover { border-color: var(--nl-blue-400); color: var(--nl-blue-600); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   TOPBAR
   ========================================================= */
.site-topbar {
  background: var(--nl-blue-900);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.topbar-contact { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-contact a {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.8); transition: color var(--nl-transition);
}
.topbar-contact a:hover { color: #fff; }
.topbar-contact svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }
.topbar-contact a { white-space: nowrap; }
.topbar-contact--inline {
  gap: 0.9rem;
  padding: 0 0.15rem;
}
.topbar-contact--inline a {
  font-size: 0.8rem;
}
.topbar-contact--inline a + a {
  position: relative;
  padding-left: 0.95rem;
}
.topbar-contact--inline a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%);
}
.topbar-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-links a { color: rgba(255,255,255,0.7); transition: color var(--nl-transition); font-size: 0.8rem; }
.topbar-links a:hover { color: #fff; }
.topbar-links .btn--sm { padding: 0.3rem 0.875rem; font-size: 0.75rem; background: var(--nl-blue-600); color: #fff; border: none; border-radius: var(--nl-radius-sm); }


.site-topbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}
.section-switcher,
.mobile-section-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}
.section-switcher__link,
.mobile-section-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  transition: all var(--nl-transition);
}
.section-switcher__link:hover,
.mobile-section-switcher__link:hover {
  color: #fff;
}
.section-switcher__link.is-active,
.mobile-section-switcher__link.is-active {
  background: #fff;
  color: var(--nl-blue-900);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.topbar-links__account {
  background: var(--nl-blue-600);
  color: #fff !important;
  padding: 0.3rem 0.875rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--nl-white);
  border-bottom: 1px solid var(--nl-gray-200);
  position: sticky; top: 0; z-index: 500;
  transition: box-shadow var(--nl-transition);
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(11,31,58,0.12); }
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0; height: 100px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0; text-decoration: none;
}
.site-logo__img { height: 100px; width: auto; object-fit: contain; display: block; }
.custom-logo { height: 100px; width: auto; display: block; }
.site-logo__mark {
  width: 38px; height: 38px; border-radius: var(--nl-radius-md);
  background: var(--nl-blue-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.875rem; letter-spacing: -0.03em;
}
.site-logo__text { font-size: 1.125rem; font-weight: 800; color: var(--nl-blue-900); line-height: 1.1; }
.site-logo__sub { font-size: 0.6875rem; color: var(--nl-gray-500); font-weight: 500; }

/* Primary Nav */
.primary-nav { flex: 0 0 44%; display: flex; justify-content: center; min-width: 0; }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0 1.1rem; height: 100px;
  font-size: 0.9rem; font-weight: 600; color: var(--nl-gray-700);
  transition: color var(--nl-transition); white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.nav-link:hover, .nav-item--has-mega:hover > .nav-link { color: var(--nl-blue-600); border-bottom-color: var(--nl-blue-600); }
.caret { font-size: 0.6rem; opacity: 0.6; transition: transform var(--nl-transition); }
.nav-item--has-mega:hover .caret, .nav-item--has-mega.is-open .caret { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-mega {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--nl-white);
  border: 1px solid var(--nl-gray-200);
  border-radius: 0 0 var(--nl-radius-lg) var(--nl-radius-lg);
  box-shadow: 0 12px 40px rgba(11,31,58,0.14);
  padding: 1.5rem; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease; pointer-events: none; z-index: 600;
}
.nav-mega--wide { display: flex; gap: 0; min-width: 700px; padding: 0; }
.nav-item--has-mega:hover .nav-mega, .nav-item--has-mega.is-open .nav-mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-mega__group { padding: 1.5rem; flex: 1; }
.nav-mega__group--shaded { background: var(--nl-gray-50); border-radius: 0 0 var(--nl-radius-lg) 0; }
.nav-mega__title {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--nl-blue-500);
  padding: 0 0.5rem; margin-bottom: 0.625rem; margin-top: 0.25rem;
}

/* Mega Links with large icons */
.mega-link {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.625rem 0.625rem; border-radius: var(--nl-radius-md);
  text-decoration: none; color: var(--nl-gray-800);
  transition: all var(--nl-transition); margin-bottom: 0.125rem;
}
.mega-link:hover { background: var(--nl-blue-50); color: var(--nl-blue-700); }
.mega-link__icon-svg {
  width: 2.625rem; height: 2.625rem; flex-shrink: 0;
  background: var(--nl-blue-50); border-radius: var(--nl-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--nl-blue-600); border: 1px solid var(--nl-blue-100);
  transition: all var(--nl-transition);
}
.mega-link__icon-svg svg { width: 1.25rem; height: 1.25rem; }
.mega-link:hover .mega-link__icon-svg { background: var(--nl-blue-600); color: #fff; border-color: var(--nl-blue-600); }
.mega-link__text { display: flex; flex-direction: column; }
.mega-link__text strong { font-size: 0.875rem; font-weight: 700; color: var(--nl-gray-900); line-height: 1.2; }
.mega-link__text small { font-size: 0.75rem; color: var(--nl-gray-500); margin-top: 0.125rem; line-height: 1.3; }
.mega-link:hover .mega-link__text strong { color: var(--nl-blue-700); }


.nav-menu--section {
  gap: 0.15rem;
}
.nav-link.is-current,
.nav-item.current-menu-item > .nav-link,
.nav-item.current_page_item > .nav-link {
  color: var(--nl-blue-600);
  border-bottom-color: var(--nl-blue-600);
}
.nav-mega--section {
  min-width: 640px;
  padding: 0;
  overflow: hidden;
}
.nav-mega__section-header {
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, var(--nl-blue-900) 0%, var(--nl-blue-700) 100%);
  color: #fff;
}
.nav-mega__section-header p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}
.nav-mega__section-header span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
}
.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 1rem;
}
.mobile-section-switcher {
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1rem;
  background: var(--nl-gray-50);
  border-color: var(--nl-gray-200);
}
.mobile-section-switcher__link {
  flex: 1;
  color: var(--nl-gray-600);
}
.mobile-section-switcher__link.is-active {
  color: var(--nl-blue-900);
}

/* Promo block inside mega */
.nav-mega__promo {
  margin-top: 1rem; padding: 1.25rem;
  background: linear-gradient(135deg, var(--nl-blue-800) 0%, var(--nl-blue-600) 100%);
  border-radius: var(--nl-radius-lg); color: #fff; text-align: center;
}
.nav-mega__promo-icon { margin: 0 auto 0.625rem; color: rgba(255,255,255,0.9); }
.nav-mega__promo-title { font-size: 0.875rem; font-weight: 800; margin-bottom: 0.375rem; }
.nav-mega__promo-text { font-size: 0.775rem; opacity: 0.8; line-height: 1.5; margin-bottom: 0.75rem; }
.nav-mega__promo-link { display: inline-block; font-size: 0.775rem; font-weight: 700;
  color: #fff; border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.325rem 0.875rem; border-radius: 999px; transition: all var(--nl-transition); }
.nav-mega__promo-link:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.nav-cta .btn--sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: var(--nl-radius-md); }

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none; background: none; border: none; padding: 0.5rem;
  color: var(--nl-gray-700); cursor: pointer;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: all var(--nl-transition); }
.mobile-nav-toggle.is-active .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.is-active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-active .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 700; }
.mobile-nav-overlay.is-visible { display: block; }
.mobile-nav-drawer {
  position: fixed; top: 0; right: -100%; width: min(360px, 90vw); height: 100vh;
  background: var(--nl-white); z-index: 800; overflow-y: auto;
  transition: right var(--nl-transition-slow); box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.mobile-nav-drawer.is-open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--nl-gray-100); }
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; color: var(--nl-gray-600); cursor: pointer; padding: 0.25rem; }
.mobile-nav-body { padding: 1rem 1.5rem; }
.mobile-nav-item { border-bottom: 1px solid var(--nl-gray-100); }
.mobile-nav-item a { display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 0; font-weight: 600; color: var(--nl-gray-800); font-size: 0.9375rem; }
.mobile-nav-parent-toggle { background: none; border: none; padding: 0.875rem 0;
  font-weight: 600; color: var(--nl-gray-800); font-size: 0.9375rem; width: 100%;
  text-align: left; display: flex; justify-content: space-between; cursor: pointer; }
.mobile-nav-submenu { padding-left: 1rem; }
.mobile-nav-submenu a { font-size: 0.875rem; font-weight: 500; color: var(--nl-gray-600); padding: 0.6rem 0; }
.mobile-nav-footer { padding: 1.5rem; border-top: 1px solid var(--nl-gray-100); display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

/* =========================================================
   HERO SECTIONS
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 11vw, 130px);
  color: var(--nl-white);
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 72px;
  background: var(--nl-white); clip-path: ellipse(55% 100% at 50% 100%); z-index: 1;
}
.hero__bg-icon {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  pointer-events: none; z-index: 0; opacity: 0.05;
}
.hero__bg-icon svg { width: 500px; height: 500px; }
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9); padding: 0.4rem 1rem;
  border-radius: var(--nl-radius-full); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 1.5rem;
}
.hero__title { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 900; line-height: 1.08; margin-bottom: 1rem; color: #fff; }
.hero__title span { color: var(--nl-blue-300); }
.hero__title span.accent { color: #ffcc44; }
.hero__lead { font-size: clamp(1rem, 2vw, 1.175rem); color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 2.25rem; max-width: 580px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-service-showcase {
  position: relative;
  margin-bottom: 3rem;
  max-width: 620px;
}
.hero-service-showcase__track {
  position: relative;
  min-height: 178px;
}
.hero-service-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem 1.6rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(4, 18, 35, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}
.hero-service-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hero-service-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--nl-radius-full);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-service-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}
.hero-service-card__tagline {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
}
.hero-service-showcase__nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-left: 0.25rem;
}
.hero-service-showcase__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  transition: transform 0.35s ease, background-color 0.35s ease, width 0.35s ease;
}
.hero-service-showcase__dot.is-active {
  width: 2rem;
  background: #fff;
}
.hero__stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); transition: opacity 0.28s ease, transform 0.28s ease; }
.hero__stats.is-updating { opacity: 0.32; transform: translateY(8px); }
.hero__stat { min-width: 0; }
.hero__stat-value { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.05; }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 0.35rem; font-weight: 500; line-height: 1.45; }

/* Hero colour variants */
.hero--main       { background: linear-gradient(135deg, #0b1f3a 0%, #154a87 55%, #2172cc 100%); }
.hero--residential { background: linear-gradient(135deg, #0b1f3a 0%, #0f3d7a 55%, #1a5fb4 100%); }
.hero--business   { background: linear-gradient(135deg, #0b1f3a 0%, #0d2a50 55%, #0e3f7c 100%); }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 88px) 0 clamp(48px, 7vw, 88px);
  color: var(--nl-white);
}
.page-hero__bg-icon {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  pointer-events: none; z-index: 0; opacity: 0.07; color: #fff;
}
.page-hero__bg-icon svg { width: 340px; height: 340px; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(1.875rem, 4.5vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 0.7rem; }
.page-hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; }
.page-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* Page hero colour per section */
.page-hero--internet   { background: linear-gradient(135deg, #0b1f3a 0%, #0f3d7a 60%, #1a5fb4 100%); }
.page-hero--phone      { background: linear-gradient(135deg, #0b1f3a 0%, #164e63 60%, #0e7490 100%); }
.page-hero--tv         { background: linear-gradient(135deg, #0b1f3a 0%, #2d1b69 60%, #4c1d95 100%); }
.page-hero--datacentre { background: linear-gradient(135deg, #0b1f3a 0%, #1a3a5c 60%, #1a5fb4 100%); }
.page-hero--web        { background: linear-gradient(135deg, #0b1f3a 0%, #14532d 60%, #166534 100%); }
.page-hero--about      { background: linear-gradient(135deg, #0b1f3a 0%, #1c2e4a 60%, #1a5fb4 100%); }
.page-hero--contact    { background: linear-gradient(135deg, #0b1f3a 0%, #1c2e4a 60%, #1a5fb4 100%); }
.page-hero--bundles    { background: linear-gradient(135deg, #0b1f3a 0%, #3b1f0e 60%, #c2410c 100%); }
.page-hero--support    { background: linear-gradient(135deg, #0b1f3a 0%, #1c2e4a 60%, #1a5fb4 100%); }

/* Breadcrumbs */
.breadcrumbs { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.breadcrumbs a { color: rgba(255,255,255,0.6); transition: color var(--nl-transition); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-current] { color: rgba(255,255,255,0.9); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--nl-white); border-top: 1px solid var(--nl-gray-100); border-bottom: 1px solid var(--nl-gray-100); padding: 0.85rem 0; }
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  flex-wrap: nowrap;
}
.trust-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--nl-gray-200);
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0.85rem;
  flex: 1 1 0;
  min-width: 0;
}
.trust-item__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: var(--nl-blue-50, #e8f1fb);
  color: var(--nl-blue-600, #1a5fb4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item__icon svg {
  width: 16px;
  height: 16px;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.trust-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nl-gray-900);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.trust-item__sub {
  font-size: 0.68rem;
  color: var(--nl-gray-500);
  white-space: normal;
  line-height: 1.2;
  font-weight: 500;
  display: block;
  max-width: 100%;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .trust-item {
    padding: 0.3rem 0.7rem;
    gap: 0.55rem;
  }

  .trust-item__label {
    font-size: 0.76rem;
  }

  .trust-item__sub {
    font-size: 0.64rem;
  }
}

@media (max-width: 1180px) {
  .trust-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .trust-bar__divider { display: none; }
  .trust-item { flex: 0 0 auto; padding: 0.4rem 0.75rem; }
}

@media (max-width: 640px) {
  .trust-bar__inner { justify-content: flex-start; }
  .trust-item { width: 48%; padding: 0.4rem 0.5rem; }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 960px) { .service-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .service-cards-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--nl-white);
  border: 1.5px solid var(--nl-gray-200);
  border-radius: var(--nl-radius-xl);
  padding: 2.25rem 1.875rem;
  display: flex; flex-direction: column;
  transition: all var(--nl-transition-slow);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--nl-blue-600); opacity: 0; transition: opacity var(--nl-transition);
}
.service-card:hover { box-shadow: var(--nl-shadow-xl); border-color: var(--nl-blue-200); transform: translateY(-5px); }
.service-card:hover::before { opacity: 1; }
.service-card--accent::before { background: var(--nl-accent); }
.service-card--teal::before { background: var(--nl-teal); }

.service-card__icon-wrap {
  width: 4rem; height: 4rem; border-radius: var(--nl-radius-lg);
  background: var(--nl-blue-50); display: flex; align-items: center; justify-content: center;
  color: var(--nl-blue-600); margin-bottom: 1.5rem;
  border: 1.5px solid var(--nl-blue-100);
  transition: all var(--nl-transition);
}
.service-card__icon-wrap svg { width: 1.875rem; height: 1.875rem; }
.service-card:hover .service-card__icon-wrap { background: var(--nl-blue-600); color: #fff; border-color: var(--nl-blue-600); }
.service-card--accent .service-card__icon-wrap { background: var(--nl-accent-light); color: var(--nl-accent); border-color: #fcd6c2; }
.service-card--accent:hover .service-card__icon-wrap { background: var(--nl-accent); color: #fff; }

.service-card__title { font-size: 1.15rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 0.625rem; }
.service-card__desc { font-size: 0.9rem; color: var(--nl-gray-600); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.service-card__features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.service-card__features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--nl-gray-700); padding: 0.3rem 0; border-bottom: 1px solid var(--nl-gray-50); }
.service-card__features li svg { width: 0.9rem; height: 0.9rem; color: var(--nl-green); flex-shrink: 0; margin-top: 0.2rem; }
.service-card__link { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 700; color: var(--nl-blue-600); margin-top: auto; }
.service-card__link:hover { color: var(--nl-blue-800); gap: 0.6rem; }

/* =========================================================
   FEATURE ITEMS (icon + text row)
   ========================================================= */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--nl-gray-700); line-height: 1.5; }
.feature-list li svg { width: 1rem; height: 1rem; color: var(--nl-green); flex-shrink: 0; margin-top: 0.2rem; }

/* Large feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-item { text-align: center; padding: 2rem 1.25rem; }
.feature-item__icon {
  width: 5rem; height: 5rem; margin: 0 auto 1.25rem;
  background: var(--nl-blue-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nl-blue-600); border: 2px solid var(--nl-blue-100);
}
.feature-item__icon svg { width: 2.25rem; height: 2.25rem; }
.feature-item__title { font-size: 1rem; font-weight: 700; color: var(--nl-gray-900); margin-bottom: 0.5rem; }
.feature-item__text { font-size: 0.875rem; color: var(--nl-gray-600); line-height: 1.65; }

/* Dark feature items */
.feature-item--dark .feature-item__icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: var(--nl-blue-300); }
.feature-item--dark .feature-item__title { color: #fff; }
.feature-item--dark .feature-item__text { color: rgba(255,255,255,0.68); }

/* =========================================================
   CONTENT SPLIT
   ========================================================= */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.content-split--reverse .content-split__visual { order: -1; }
@media (max-width: 900px) { .content-split { grid-template-columns: 1fr; gap: 3rem; } .content-split--reverse .content-split__visual { order: 0; } }
.content-split__text h2 { font-size: clamp(1.75rem, 3.5vw, 2.375rem); font-weight: 800; margin-bottom: 1rem; }
.content-split__text p { margin-bottom: 1rem; font-size: 0.9375rem; line-height: 1.75; }
.content-split__visual { position: relative; }
.content-split__visual--icon { display: flex; align-items: center; justify-content: center; }
.big-feature-icon {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--nl-blue-50); display: flex; align-items: center; justify-content: center;
  color: var(--nl-blue-500); border: 2px solid var(--nl-blue-100);
}
.big-feature-icon svg { width: 160px; height: 160px; }

/* Service image */
.service-image-wrap {
  border-radius: var(--nl-radius-xl); overflow: hidden;
  box-shadow: var(--nl-shadow-xl); aspect-ratio: 4/3;
  background: var(--nl-blue-50);
  display: flex; align-items: center; justify-content: center;
}
.service-image-wrap svg { width: 60%; height: 60%; color: var(--nl-blue-200); }

/* =========================================================
   PLAN CARDS
   ========================================================= */
.plan-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .plan-cards-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--nl-white); border: 2px solid var(--nl-gray-200);
  border-radius: var(--nl-radius-xl); padding: 2rem 1.875rem;
  position: relative; display: flex; flex-direction: column;
  transition: all var(--nl-transition);
}
.plan-card:hover { box-shadow: var(--nl-shadow-lg); }
.plan-card--featured { border-color: var(--nl-blue-600); box-shadow: var(--nl-shadow-lg); }
.plan-card__badge {
  position: absolute; top: -0.9rem; left: 50%; transform: translateX(-50%);
  background: var(--nl-blue-600); color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 0.25rem 1rem; border-radius: 999px; white-space: nowrap; letter-spacing: 0.04em;
}
.plan-card__badge--accent { background: var(--nl-accent); }
.plan-card__name { font-size: 1rem; font-weight: 700; color: var(--nl-gray-700); margin-bottom: 0.375rem; }
.plan-card__price { font-size: 2.5rem; font-weight: 900; color: var(--nl-gray-900); line-height: 1; margin-bottom: 0.25rem; }
.plan-card__price sup { font-size: 1.25rem; vertical-align: super; }
.plan-card__price span { font-size: 1rem; font-weight: 500; color: var(--nl-gray-500); }
.plan-card__period { font-size: 0.8rem; color: var(--nl-gray-500); margin-bottom: 1.5rem; }
.plan-card__divider { border: none; border-top: 1px solid var(--nl-gray-100); margin: 1.25rem 0; }
.plan-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; flex: 1; }
.plan-card__features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--nl-gray-700); padding: 0.4rem 0; }
.plan-card__features li svg { width: 0.9rem; height: 0.9rem; color: var(--nl-green); flex-shrink: 0; margin-top: 0.15rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: linear-gradient(135deg, var(--nl-blue-900) 0%, var(--nl-blue-700) 100%); padding: 1.5rem 0; }
.cta-band--accent { background: linear-gradient(135deg, #7c2d12 0%, var(--nl-accent) 100%); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-band__title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.cta-band__subtitle { color: rgba(255,255,255,0.78); font-size: 1.0625rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--nl-blue-900); color: rgba(255,255,255,0.7); }
.footer-main { padding: 2rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 1.75rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__logo { margin-bottom: 1rem; }
.footer-brand__logo img { height: 150px; width: auto; opacity: 1; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem; }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-contact-list li a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color var(--nl-transition); }
.footer-contact-list li a:hover { color: #fff; }
.footer-contact-list li svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; opacity: 0.7; }
.footer-col__title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.62); transition: color var(--nl-transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-bottom__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom__links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color var(--nl-transition); }
.footer-bottom__links a:hover { color: rgba(255,255,255,0.8); }

/* =========================================================
   COMPARE TABLE
   ========================================================= */
.compare-table-wrap { overflow-x: auto; border-radius: var(--nl-radius-xl); box-shadow: var(--nl-shadow-md); border: 1px solid var(--nl-gray-200); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--nl-white); }
.compare-table thead tr { background: var(--nl-blue-900); color: #fff; }
.compare-table th { padding: 1.125rem 1.25rem; text-align: center; font-weight: 700; font-size: 0.875rem; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--nl-gray-100); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--nl-gray-800); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--nl-blue-50); }
.compare-table__us { background: rgba(26,95,180,0.04); }
.compare-win { color: var(--nl-blue-600); font-weight: 700; }
.compare-table__them { color: var(--nl-gray-500); }

/* =========================================================
   ACCORDION
   ========================================================= */
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion-item { border-bottom: 1px solid var(--nl-gray-200); }
.accordion-trigger {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.125rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; cursor: pointer;
  font-size: 0.9375rem; font-weight: 600; color: var(--nl-gray-900);
  transition: color var(--nl-transition);
}
.accordion-trigger:hover { color: var(--nl-blue-600); }
.accordion-icon { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--nl-blue-50); border: 1.5px solid var(--nl-blue-200); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--nl-blue-600); flex-shrink: 0; font-weight: 700; transition: all var(--nl-transition); }
.accordion-item.is-open .accordion-icon { background: var(--nl-blue-600); color: #fff; border-color: var(--nl-blue-600); }
.accordion-panel { padding: 0 0 1.25rem; }
.accordion-panel p { font-size: 0.9375rem; color: var(--nl-gray-600); line-height: 1.7; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form { background: var(--nl-white); padding: 2.5rem; border-radius: var(--nl-radius-xl); box-shadow: var(--nl-shadow-card); border: 1px solid var(--nl-gray-100); }
.form-row { display: flex; gap: 1.25rem; }
.form-row--2col > * { flex: 1; }
@media (max-width: 600px) { .form-row { flex-direction: column; gap: 0; } }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--nl-gray-800); margin-bottom: 0.4rem; }
.required { color: #dc2626; }
.form-input {
  width: 100%; padding: 0.725rem 1rem; border: 1.5px solid var(--nl-gray-300);
  border-radius: var(--nl-radius-md); font-size: 0.9375rem; color: var(--nl-gray-900);
  background: var(--nl-white); transition: border-color var(--nl-transition); font-family: inherit;
}
.form-input:focus { outline: none; border-color: var(--nl-blue-500); box-shadow: 0 0 0 3px rgba(26,95,180,0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='%230b1f3a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; background-size: 1rem; padding-right: 2.5rem; cursor: pointer; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-error { display: none; color: #dc2626; font-size: 0.8125rem; margin-top: 0.25rem; }
.form-error:not(:empty) { display: block; }
.checkbox-label { display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.875rem; color: var(--nl-gray-600); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; accent-color: var(--nl-blue-600); cursor: pointer; }
.form-status { padding: 1rem 1.25rem; border-radius: var(--nl-radius-md); margin-bottom: 1rem; font-size: 0.9375rem; display: none; }
.form-status:not(:empty) { display: block; }
.form-status--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.form-status--error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.btn-spinner { display: inline-block; width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; margin-left: 0.5rem; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
@media (max-width: 900px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem 1.5rem; text-align: center; transition: all var(--nl-transition); }
.contact-info-card:hover { box-shadow: var(--nl-shadow-md); border-color: var(--nl-blue-300); transform: translateY(-3px); }
.contact-info-card__icon { width: 3.25rem; height: 3.25rem; background: var(--nl-blue-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--nl-blue-600); border: 1.5px solid var(--nl-blue-100); }
.contact-info-card__icon svg { width: 1.375rem; height: 1.375rem; }
.contact-info-card__label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nl-blue-500); margin-bottom: 0.5rem; }
.contact-info-card__value { font-size: 1rem; font-weight: 700; color: var(--nl-blue-900); display: block; margin-bottom: 0.375rem; line-height: 1.4; }
a.contact-info-card__value:hover { color: var(--nl-blue-600); }
.contact-info-card__note { font-size: 0.8rem; color: var(--nl-gray-500); line-height: 1.5; margin: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-sidebar-card { background: var(--nl-blue-50); border: 1px solid var(--nl-blue-100); border-radius: var(--nl-radius-lg); padding: 1.75rem; }
.contact-sidebar-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--nl-blue-900); margin-bottom: 1rem; }
.hours-list { list-style: none; padding: 0; margin: 0 0 0.75rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--nl-blue-100); font-size: 0.875rem; }
.hours-list li:last-child { border-bottom: none; }
.quick-links { list-style: none; padding: 0; }
.quick-links li { margin-bottom: 0.5rem; }
.quick-links a { font-size: 0.9rem; color: var(--nl-blue-600); font-weight: 600; }
.quick-links a:hover { color: var(--nl-blue-800); }
.contact-map-section { height: 360px; background: linear-gradient(135deg, var(--nl-blue-800) 0%, var(--nl-blue-600) 100%); display: flex; align-items: center; justify-content: center; }
.contact-map-overlay { text-align: center; color: #fff; }
.contact-map-overlay p { font-size: 1.0625rem; margin-bottom: 1.5rem; opacity: 0.88; }

/* =========================================================
   SUPPORT PAGE
   ========================================================= */
.support-search-bar { display: flex; max-width: 560px; margin: 1.75rem auto 0; }
.support-search-input { flex: 1; padding: 0.75rem 1.1rem; border: none; border-radius: var(--nl-radius-md) 0 0 var(--nl-radius-md); font-size: 1rem; font-family: inherit; }
.support-search-input:focus { outline: none; }
.support-search-btn { padding: 0.75rem 1.1rem; background: var(--nl-accent); color: #fff; border: none; border-radius: 0 var(--nl-radius-md) var(--nl-radius-md) 0; cursor: pointer; }
.support-ribbon { background: var(--nl-blue-50); border-bottom: 1px solid var(--nl-blue-100); padding: 0.75rem 0; }
.support-ribbon__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.875rem; }
.support-ribbon__label { font-weight: 700; color: var(--nl-blue-900); }
.support-ribbon__link { color: var(--nl-blue-600); font-weight: 600; display: flex; align-items: center; gap: 0.375rem; }
.support-ribbon__sep { color: var(--nl-gray-300); }
.support-ribbon__badge { background: var(--nl-blue-600); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.625rem; border-radius: 999px; }
.support-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .support-category-grid { grid-template-columns: repeat(2, 1fr); } }
.support-category-card { display: flex; flex-direction: column; background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem 1.5rem; text-decoration: none; color: inherit; transition: all var(--nl-transition); }
.support-category-card:hover { box-shadow: var(--nl-shadow-lg); border-color: var(--nl-blue-400); transform: translateY(-4px); }
.support-category-card__icon { width: 3rem; height: 3rem; background: var(--nl-blue-50); border-radius: var(--nl-radius-md); display: flex; align-items: center; justify-content: center; color: var(--nl-blue-600); margin-bottom: 1rem; border: 1px solid var(--nl-blue-100); }
.support-category-card__icon svg { width: 1.5rem; height: 1.5rem; }
.support-category-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--nl-gray-900); }
.support-category-card p { font-size: 0.85rem; color: var(--nl-gray-500); flex: 1; margin-bottom: 1rem; line-height: 1.6; }
.support-category-card__arrow { font-size: 1rem; color: var(--nl-blue-500); font-weight: 700; }

/* Guide Tabs */
.guides-tabs, .bundle-tabs { margin-top: 2.5rem; }
.guides-tab-nav, .bundle-tab-nav { display: flex; gap: 0.375rem; border-bottom: 2px solid var(--nl-gray-200); margin-bottom: 2rem; }
.guide-tab, .bundle-tab { padding: 0.625rem 1.25rem; background: none; border: none; font-size: 0.9375rem; font-weight: 600; color: var(--nl-gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--nl-transition); }
.guide-tab:hover, .bundle-tab:hover { color: var(--nl-blue-600); }
.guide-tab.active, .bundle-tab.active { color: var(--nl-blue-600); border-bottom-color: var(--nl-blue-600); }
.guide-panel, .bundle-tab-panel { }
.guide-list { display: flex; flex-direction: column; }
.guide-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.125rem 0; border-bottom: 1px solid var(--nl-gray-100); }
.guide-item:last-child { border-bottom: none; }
.guide-item__icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; background: var(--nl-blue-50); border-radius: var(--nl-radius-md); display: flex; align-items: center; justify-content: center; color: var(--nl-blue-600); }
.guide-item__icon svg { width: 1.1rem; height: 1.1rem; }
.guide-item__content { flex: 1; }
.guide-item__content h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--nl-gray-900); }
.guide-item__content p { font-size: 0.8125rem; color: var(--nl-gray-500); margin: 0; }
.guide-item__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.375rem; flex-shrink: 0; }
.guide-time { font-size: 0.75rem; color: var(--nl-gray-400); display: flex; align-items: center; gap: 0.3rem; }
.guide-btn { font-size: 0.8125rem; font-weight: 700; color: var(--nl-blue-600); }
.guide-btn:hover { color: var(--nl-blue-800); }

/* FAQ */
.faq-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
@media (max-width: 900px) { .faq-categories { grid-template-columns: 1fr; } }
.faq-category__title { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; font-weight: 700; color: var(--nl-blue-800); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--nl-blue-100); }
.faq-category__title svg { width: 1.125rem; height: 1.125rem; }

/* Troubleshoot */
.troubleshoot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .troubleshoot-grid { grid-template-columns: 1fr; } }
.troubleshoot-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem; }
.troubleshoot-card__header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1rem; }
.troubleshoot-card__icon { width: 2.5rem; height: 2.5rem; background: var(--nl-blue-50); border-radius: var(--nl-radius-md); display: flex; align-items: center; justify-content: center; color: var(--nl-blue-600); }
.troubleshoot-card__icon svg { width: 1.25rem; height: 1.25rem; }
.troubleshoot-card__header h3 { font-size: 1rem; font-weight: 700; color: var(--nl-gray-900); }
.troubleshoot-steps { padding-left: 1.25rem; margin: 0; }
.troubleshoot-steps li { font-size: 0.875rem; color: var(--nl-gray-700); padding: 0.3rem 0; line-height: 1.6; }
.troubleshoot-cta { text-align: center; padding: 2.5rem; background: var(--nl-blue-50); border-radius: var(--nl-radius-xl); border: 1px solid var(--nl-blue-100); }
.troubleshoot-cta p { font-size: 1.0625rem; color: var(--nl-blue-900); margin-bottom: 1rem; font-weight: 600; }
.troubleshoot-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Downloads */
.downloads-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 768px) { .downloads-grid { grid-template-columns: 1fr; } }
.download-item { display: flex; align-items: center; gap: 1rem; padding: 1.125rem 1.25rem; background: var(--nl-white); border: 1px solid var(--nl-gray-200); border-radius: var(--nl-radius-lg); transition: all var(--nl-transition); }
.download-item:hover { box-shadow: var(--nl-shadow-sm); border-color: var(--nl-blue-200); }
.download-item__icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; background: var(--nl-blue-50); border-radius: var(--nl-radius-md); display: flex; align-items: center; justify-content: center; color: var(--nl-blue-600); }
.download-item__icon svg { width: 1rem; height: 1rem; }
.download-item__content { flex: 1; }
.download-item__cat { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nl-blue-400); margin-bottom: 0.15rem; }
.download-item__content h4 { font-size: 0.875rem; font-weight: 600; color: var(--nl-gray-900); margin: 0 0 0.15rem; }
.download-item__meta { font-size: 0.75rem; color: var(--nl-gray-400); }
.download-item__btn { width: 2rem; height: 2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--nl-blue-500); border-radius: 50%; transition: all var(--nl-transition); }
.download-item__btn:hover { background: var(--nl-blue-50); color: var(--nl-blue-700); }
.download-item__btn svg { width: 1rem; height: 1rem; }

/* Cancellation box */
.cancellation-info-box { background: var(--nl-blue-50); border: 1px solid var(--nl-blue-100); border-radius: var(--nl-radius-xl); padding: 2rem; }
.cancellation-info-box h4 { font-size: 0.9rem; font-weight: 700; color: var(--nl-blue-800); margin-bottom: 0.5rem; }
.cancellation-info-box p { font-size: 0.875rem; color: var(--nl-gray-700); margin-bottom: 1rem; line-height: 1.6; }
.cancellation-info-box hr { border: none; border-top: 1px solid var(--nl-blue-200); margin: 1rem 0; }

/* =========================================================
   BUNDLES PAGE
   ========================================================= */
.bundle-benefits-bar { background: var(--nl-blue-700); color: #fff; padding: 1rem 0; }
.bundle-benefits-bar__inner { display: flex; gap: 2rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.bundle-benefit { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; }
.bundle-benefit svg { width: 1rem; height: 1rem; opacity: 0.85; }
.bundle-tab-intro { font-size: 1rem; color: var(--nl-gray-600); margin-bottom: 2.5rem; }
.bundle-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.bundle-plan-grid--double { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
@media (max-width: 900px) { .bundle-plan-grid, .bundle-plan-grid--double { grid-template-columns: 1fr; } }
.bundle-plan-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem; position: relative; display: flex; flex-direction: column; transition: all var(--nl-transition); }
.bundle-plan-card:hover { box-shadow: var(--nl-shadow-lg); border-color: var(--nl-blue-300); }
.bundle-plan-card--featured { border-color: var(--nl-blue-600); box-shadow: var(--nl-shadow-md); }
.bundle-plan-card__badge { position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%); background: var(--nl-blue-600); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 1rem; border-radius: 999px; white-space: nowrap; }
.bundle-plan-card__badge--gold { background: #d97706; }
.bundle-plan-card__header { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--nl-gray-100); }
.bundle-plan-card__header h3 { font-size: 1.2rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 0.4rem; }
.bundle-plan-card__header p { font-size: 0.875rem; color: var(--nl-gray-600); line-height: 1.6; margin: 0; }
.bundle-plan-card__includes { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.bundle-plan-card__includes li { display: flex; align-items: flex-start; gap: 0.625rem; padding: 0.4rem 0; font-size: 0.875rem; color: var(--nl-gray-700); border-bottom: 1px solid var(--nl-gray-50); }
.bundle-plan-card__includes li svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; color: var(--nl-blue-500); margin-top: 0.15rem; }
.bundle-plan-card__note { font-size: 0.75rem; color: var(--nl-gray-400); text-align: center; margin-top: 0.75rem; }
.btn--block { width: 100%; justify-content: center; }
.biz-bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .biz-bundle-grid { grid-template-columns: 1fr; } }
.biz-bundle-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--nl-radius-xl); padding: 2.5rem 2rem; color: #fff; position: relative; transition: all var(--nl-transition); }
.biz-bundle-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); }
.biz-bundle-card--featured { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.biz-bundle-card__badge { position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%); background: var(--nl-blue-400); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 1rem; border-radius: 999px; }
.biz-bundle-card__icon { width: 2.75rem; height: 2.75rem; background: rgba(255,255,255,0.12); border-radius: var(--nl-radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.biz-bundle-card__icon svg { width: 1.25rem; height: 1.25rem; }
.biz-bundle-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.625rem; }
.biz-bundle-card > p { font-size: 0.875rem; opacity: 0.8; line-height: 1.6; margin-bottom: 1.5rem; }
.biz-bundle-card__list { list-style: none; padding: 0; margin: 0 0 2rem; }
.biz-bundle-card__list li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.875rem; opacity: 0.88; border-bottom: 1px solid rgba(255,255,255,0.07); }
.biz-bundle-card__list li svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; color: var(--nl-blue-300); margin-top: 0.15rem; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; } }
.promo-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2.5rem 2rem; text-align: center; position: relative; }
.promo-card__ribbon { position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%); background: #059669; color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 1rem; border-radius: 999px; }
.promo-card__icon { width: 3rem; height: 3rem; background: var(--nl-blue-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--nl-blue-600); }
.promo-card__icon svg { width: 1.5rem; height: 1.5rem; }
.promo-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 0.625rem; }
.promo-card > p { font-size: 0.875rem; color: var(--nl-gray-600); line-height: 1.7; margin-bottom: 0.75rem; }
.promo-card__terms { font-size: 0.75rem !important; color: var(--nl-gray-400) !important; margin-bottom: 1.5rem !important; }
.custom-bundle-cta { display: grid; grid-template-columns: 1fr 360px; gap: 5rem; align-items: center; }
@media (max-width: 1024px) { .custom-bundle-cta { grid-template-columns: 1fr; gap: 3rem; } }
.custom-bundle-cta h2 { font-size: 2rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 1rem; }
.custom-bundle-cta p { font-size: 1rem; color: var(--nl-gray-600); line-height: 1.7; margin-bottom: 1rem; }
.custom-bundle-cta__points { list-style: none; padding: 0; margin: 0 0 2rem; }
.custom-bundle-cta__points li { display: flex; align-items: center; gap: 0.625rem; padding: 0.35rem 0; font-size: 0.9rem; color: var(--nl-gray-700); }
.custom-bundle-cta__points li svg { width: 1rem; height: 1rem; color: var(--nl-blue-500); }
.custom-bundle-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.bundle-builder-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem; box-shadow: var(--nl-shadow-lg); }
.bundle-builder-card h4 { font-size: 1rem; font-weight: 800; color: var(--nl-blue-900); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--nl-gray-100); }
.bundle-builder-service { display: flex; align-items: center; gap: 0.875rem; padding: 0.75rem 0; border-bottom: 1px solid var(--nl-gray-100); }
.bundle-builder-service svg { width: 1.1rem; height: 1.1rem; color: var(--nl-blue-500); }
.bundle-builder-service span:nth-child(2) { flex: 1; font-size: 0.9rem; font-weight: 600; color: var(--nl-blue-900); }
.toggle-switch { position: relative; display: inline-block; width: 2.75rem; height: 1.5rem; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--nl-gray-300); border-radius: 999px; cursor: not-allowed; }
.toggle-track::before { content: ''; position: absolute; width: 1.1rem; height: 1.1rem; background: #fff; border-radius: 50%; top: 50%; left: 0.2rem; transform: translateY(-50%); transition: transform var(--nl-transition); }
.toggle-switch input:checked + .toggle-track { background: var(--nl-blue-600); }
.toggle-switch input:checked + .toggle-track::before { transform: translate(1.25rem, -50%); }
.bundle-builder-cta { margin-top: 1.5rem; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.value-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem; text-align: center; transition: all var(--nl-transition); }
.value-card:hover { box-shadow: var(--nl-shadow-md); border-color: var(--nl-blue-200); }
.value-card__icon { font-size: 2.25rem; margin-bottom: 1rem; }
.value-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card__text { font-size: 0.875rem; color: var(--nl-gray-600); line-height: 1.6; }

/* =========================================================
   RESIDENTIAL / BUSINESS HOMEPAGES
   ========================================================= */
.res-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .res-services-grid { grid-template-columns: 1fr; } }
.res-service-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; transition: all var(--nl-transition); }
.res-service-card:hover { box-shadow: var(--nl-shadow-xl); transform: translateY(-6px); border-color: var(--nl-blue-200); }
.res-service-card--internet { border-top: 4px solid var(--nl-blue-600); }
.res-service-card--phone { border-top: 4px solid var(--nl-teal); }
.res-service-card--tv { border-top: 4px solid #6366f1; }
.res-service-card__icon { color: var(--nl-blue-600); }
.res-service-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--nl-gray-900); margin: 0; }
.res-service-card p { font-size: 0.9375rem; color: var(--nl-gray-600); line-height: 1.7; margin: 0; }
.res-service-card__features { list-style: none; padding: 0; margin: 0; flex: 1; }
.res-service-card__features li { font-size: 0.875rem; color: var(--nl-gray-700); padding: 0.3rem 0; border-bottom: 1px solid var(--nl-gray-50); }
.bundle-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 768px) { .bundle-highlights { grid-template-columns: 1fr; } }
.bundle-highlight-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2.5rem 2rem; text-align: center; position: relative; transition: all var(--nl-transition); }
.bundle-highlight-card:hover { box-shadow: var(--nl-shadow-lg); transform: translateY(-4px); }
.bundle-highlight-card--featured { border-color: var(--nl-blue-600); box-shadow: var(--nl-shadow-md); }
.bundle-highlight-card__badge { position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%); background: var(--nl-blue-600); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 1rem; border-radius: 999px; }
.bundle-highlight-card__icons { font-size: 2rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.bundle-highlight-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 0.5rem; }
.bundle-highlight-card p { font-size: 0.875rem; color: var(--nl-gray-600); margin-bottom: 1.5rem; line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card { text-align: center; padding: 2rem 1.5rem; }
.why-card__icon { width: 4.5rem; height: 4.5rem; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--nl-blue-300); border: 1.5px solid rgba(255,255,255,0.1); }
.why-card__icon svg { width: 2rem; height: 2rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.biz-home-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .biz-home-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .biz-home-services-grid { grid-template-columns: 1fr; } }
.biz-home-service-card { background: var(--nl-white); border: 1.5px solid var(--nl-gray-200); border-radius: var(--nl-radius-xl); padding: 2rem 1.75rem; transition: all var(--nl-transition); }
.biz-home-service-card:hover { box-shadow: var(--nl-shadow-lg); border-color: var(--nl-blue-300); transform: translateY(-4px); }
.biz-home-service-card__icon { color: var(--nl-blue-600); margin-bottom: 1rem; }
.biz-home-service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--nl-gray-900); margin-bottom: 0.5rem; }
.biz-home-service-card p { font-size: 0.875rem; color: var(--nl-gray-600); line-height: 1.6; margin-bottom: 1rem; }
.biz-home-service-card__link { font-weight: 700; color: var(--nl-blue-600); font-size: 0.9rem; }
.biz-home-service-card__link:hover { color: var(--nl-blue-800); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
#back-to-top { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; width: 2.75rem; height: 2.75rem; background: var(--nl-blue-600); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--nl-shadow-lg); opacity: 0; transform: translateY(12px); pointer-events: none; transition: all 0.3s ease; font-size: 1.1rem; }
#back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--nl-blue-800); transform: translateY(-2px); }


@media (max-width: 1100px) {
  .site-topbar__inner {
    align-items: flex-start;
  }
  .site-topbar__left {
    width: 100%;
    justify-content: space-between;
  }
  .topbar-contact {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .site-topbar {
    padding: 0.7rem 0;
  }
  .site-topbar__left,
  .site-topbar__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .section-switcher {
    width: 100%;
    justify-content: space-between;
  }
  .section-switcher__link {
    flex: 1;
    min-width: 0;
  }
  .topbar-contact,
  .topbar-links {
    justify-content: space-between;
  }
  .topbar-contact a,
  .topbar-links a {
    font-size: 0.76rem;
  }
  .nav-cta .btn--ghost {
    display: none;
  }
}
@media (max-width: 640px) {
  .topbar-contact,
  .topbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .site-header__inner {
    height: 100px;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; }
  .hero-service-showcase__track { min-height: 190px; }
  .hero-service-card { padding: 1.35rem 1.25rem; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero-service-showcase { max-width: 100%; }
  .hero-service-showcase__track { min-height: 210px; }
  .page-hero__actions { flex-direction: column; }
}

/* =========================================================
   LOGO
   ========================================================= */
.site-logo__img { height: 100px; width: auto; object-fit: contain; display: block; }
.custom-logo { height: 100px; width: auto; display: block; }

/* nl_icon helper fallback */
.nl-icon { display: inline-flex; align-items: center; justify-content: center; }
.nl-icon svg { width: 1em; height: 1em; }

/* Path cards hover */
.path-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(11,31,58,0.35); }

/* Mobile nav parent item */
.mobile-nav-item--parent { border-bottom: 1px solid var(--nl-gray-100); }


/* =========================================================
   HEADER REFINEMENT + BELL-STYLE NAV LAYER
   ========================================================= */
.site-topbar {
  position: relative;
  z-index: 520;
}
.site-topbar__inner {
  min-height: 36px;
  justify-content: flex-start;
}
.topbar-links {
  gap: 0.75rem;
  margin-left: 1.35rem;
  justify-content: flex-start;
}
.toolbar-dropdown {
  position: relative;
}
.toolbar-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all var(--nl-transition);
}
.toolbar-dropdown__toggle:hover,
.toolbar-dropdown.is-open .toolbar-dropdown__toggle {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}
.toolbar-dropdown__label {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.toolbar-dropdown__value {
  color: #fff;
}
.toolbar-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 80px;
  padding: 0.25rem;
  border-radius: 10px;
  border: 1px solid var(--nl-gray-200);
  background: #fff;
  box-shadow: 0 12px 28px rgba(11,31,58,0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--nl-transition);
}
.toolbar-dropdown.is-open .toolbar-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toolbar-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.38rem 0.7rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--nl-gray-800);
  background: transparent;
}
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item,
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item:visited {
  color: var(--nl-gray-800);
}
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item:hover,
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item:focus-visible,
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item.is-active,
.topbar-links .toolbar-dropdown__menu .toolbar-dropdown__item.is-active:visited {
  background: var(--nl-blue-50);
  color: var(--nl-blue-700);
}

.site-header {
  z-index: 510;
}
.site-header__inner {
  height: 100px;
  min-height: 100px;
  gap: 1.25rem;
}
.site-logo__img,
.custom-logo {
  height: 74px;
  max-height: 74px;
  width: auto;
}
.primary-nav {
  justify-content: center;
  margin-left: -96px;
}
.nav-menu--section {
  gap: 0.1rem;
}
.nav-link {
  height: 94px;
  padding: 0 1rem;
  font-size: 0.95rem;
}
.nav-link--button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-link--button:focus-visible,
.toolbar-dropdown__toggle:focus-visible,
.services-category:focus-visible,
.mobile-nav-parent-toggle:focus-visible {
  outline: 2px solid var(--nl-blue-500);
  outline-offset: 2px;
}
.nav-mega--services {
  width: 760px;
  padding: 0;
  overflow: hidden;
}
.services-mega {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 390px;
}
.services-mega__sidebar {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-right: 1px solid var(--nl-gray-200);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.services-category {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  text-align: left;
  color: var(--nl-gray-800);
  transition: all var(--nl-transition);
}
.services-category:hover,
.services-category.is-active {
  background: #fff;
  border-color: var(--nl-blue-200);
  box-shadow: 0 10px 24px rgba(11,31,58,0.08);
}
.services-category__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nl-blue-600);
  color: #fff;
  flex-shrink: 0;
}
.services-category__icon svg {
  width: 22px;
  height: 22px;
}
.services-category__text {
  display: flex;
  flex-direction: column;
}
.services-category__text strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--nl-gray-900);
}
.services-category__text small {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--nl-gray-500);
}
.services-mega__panels {
  position: relative;
  padding: 1.35rem 1.35rem 1.25rem;
  background: #fff;
}
.services-panel {
  display: none;
}
.services-panel.is-active {
  display: block;
}
.services-panel__header {
  padding-bottom: 1rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--nl-gray-200);
}
.services-panel__header p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--nl-blue-900);
}
.services-panel__header span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--nl-gray-500);
}
.services-panel__submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.services-panel__submenu a {
  min-height: 110px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--nl-gray-200);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  transition: all var(--nl-transition);
}
.services-panel__submenu a:hover {
  border-color: var(--nl-blue-300);
  box-shadow: 0 12px 26px rgba(11,31,58,0.08);
  transform: translateY(-1px);
}
.services-panel__submenu-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--nl-gray-900);
}
.services-panel__submenu small {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.77rem;
  line-height: 1.55;
  color: var(--nl-gray-500);
}
.nav-cta {
  gap: 0.75rem;
}
.nav-cta .btn--sm {
  min-height: 44px;
  padding-inline: 1.1rem;
}
.mobile-nav-logo {
  height: 52px;
  width: auto;
}
.mobile-nav-phone {
  text-align: center;
  font-size: 0.9rem;
  color: var(--nl-blue-600);
  font-weight: 700;
}
.mobile-nav-submenu-group + .mobile-nav-submenu-group {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--nl-gray-100);
}
.mobile-nav-submenu-heading {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nl-blue-600);
  margin-bottom: 0.35rem;
}

@media (max-width: 1180px) {
  .primary-nav {
    margin-left: -48px;
  }
  .nav-mega--services {
    width: 700px;
  }
}

@media (max-width: 1100px) {
  .primary-nav {
    margin-left: 0;
  }
  .topbar-links {
    width: 100%;
    justify-content: flex-end;
  }
  .services-panel__submenu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-topbar__left,
  .site-topbar__inner {
    gap: 0.8rem;
  }
  .topbar-links {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  .topbar-contact--inline {
    width: 100%;
    justify-content: flex-start;
    padding: 0.15rem 0;
  }
  .topbar-contact--inline a + a {
    padding-left: 0.8rem;
  }
  .toolbar-dropdown,
  .toolbar-dropdown__toggle {
    width: 100%;
  }
  .toolbar-dropdown__toggle {
    justify-content: space-between;
  }
  .toolbar-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 14px;
  }
  .toolbar-dropdown.is-open .toolbar-dropdown__menu {
    display: block;
  }
  .site-header__inner {
    height: 100px;
    min-height: 100px;
  }
  .site-logo__img,
  .custom-logo {
    height: 66px;
    max-height: 66px;
  }
}


/* =========================================================
   HEADER UPDATE: compact locale selectors + support dropdown
   ========================================================= */
.topbar-links {
  gap: 0.55rem;
}
.topbar-contact--inline {
  order: 1;
  gap: 0.75rem;
}
.topbar-contact--inline a {
  font-size: 0.78rem;
}
.topbar-contact--inline a + a {
  padding-left: 0.85rem;
}
.toolbar-dropdown {
  order: 2;
}
.toolbar-dropdown__toggle {
  min-height: 30px;
  padding: 0.32rem 0.58rem;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.toolbar-dropdown__value {
  font-size: 0.72rem;
  font-weight: 800;
}
.toolbar-dropdown__menu--compact {
  min-width: 88px;
  padding: 0.35rem;
}
.toolbar-dropdown__item--compact {
  justify-content: center;
  padding: 0.52rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-mega--simple {
  min-width: 220px;
  padding: 0.4rem;
  left: 0;
}
.simple-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.simple-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--nl-gray-800);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--nl-transition);
  letter-spacing: 0.01em;
}
.simple-dropdown-menu a:hover,
.simple-dropdown-menu a:focus-visible {
  background: var(--nl-blue-50);
  color: var(--nl-blue-700);
  border-color: var(--nl-blue-100);
  box-shadow: none;
}
.simple-dropdown-menu__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nl-blue-600);
  color: #fff;
  flex-shrink: 0;
}
.simple-dropdown-menu__icon svg {
  width: 15px;
  height: 15px;
}
.simple-dropdown-menu__label {
  display: block;
  white-space: nowrap;
  line-height: 1.2;
  color: var(--nl-gray-900);
}

.nav-cta {
  gap: 0;
}

@media (max-width: 1100px) {
  .topbar-links {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .topbar-links {
    flex-direction: column;
    align-items: stretch;
  }
  .topbar-contact--inline {
    order: 0;
    justify-content: flex-start;
  }
  .toolbar-dropdown {
    order: 0;
  }
  .toolbar-dropdown__toggle {
    min-height: 38px;
    font-size: 0.82rem;
  }
  .toolbar-dropdown__value {
    font-size: 0.82rem;
  }
  .toolbar-dropdown__item--compact {
    justify-content: flex-start;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
  }
}


/* =========================================================
   HEADER REFINEMENT: nav-like locale menus + about dropdown
   ========================================================= */
.topbar-links {
  align-items: center;
}
.topbar-contact--inline {
  gap: 0.85rem;
}
.toolbar-dropdown__menu--compact {
  min-width: unset;
  width: max-content;
  padding: 0.25rem;
}
.toolbar-dropdown__menu--navlike {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(11,31,58,0.14);
}
.toolbar-dropdown__item--compact {
  justify-content: flex-start;
  padding: 0.38rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-radius: 8px;
}
.toolbar-dropdown__item--navlike {
  min-width: 100%;
}
.nav-item--simple-dropdown {
  position: relative;
}
.nav-item--simple-dropdown .nav-link--button.is-current {
  color: var(--nl-blue-700);
}
.nav-item--simple-dropdown .nav-link--button.is-current::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--nl-blue-600);
}
.nav-item--simple-dropdown .nav-mega--simple {
  min-width: 220px;
  padding: 0.4rem;
}
.simple-dropdown-menu a {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .toolbar-dropdown__menu--compact {
    width: 100%;
  }
  .toolbar-dropdown__item--compact {
    justify-content: flex-start;
  }
}

/* =========================================================
   HEADER SCALE TUNE: normalize desktop sizing at 100% zoom
   ========================================================= */
@media (min-width: 769px) {
  .site-header__inner {
    height: 100px;
    min-height: 100px;
    gap: 1rem;
  }

  .site-logo__img,
  .custom-logo {
    height: 100px;
    max-height: 100px;
  }

  .primary-nav {
    margin-left: -72px;
  }

  .nav-link {
    height: 84px;
    padding: 0 0.82rem;
    font-size: 0.89rem;
  }

  .nav-item--simple-dropdown .nav-link--button.is-current::after {
    left: 0.82rem;
    right: 0.82rem;
    bottom: 22px;
  }

  .nav-mega--services {
    width: 720px;
  }

  .services-mega {
    grid-template-columns: 270px minmax(0, 1fr);
    min-height: 360px;
  }

  .services-mega__sidebar {
    padding: 0.85rem;
    gap: 0.45rem;
  }

  .services-category {
    gap: 0.75rem;
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
  }

  .services-category__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .services-category__icon svg {
    width: 19px;
    height: 19px;
  }

  .services-category__text strong {
    font-size: 0.91rem;
  }

  .services-category__text small {
    font-size: 0.72rem;
  }

  .services-mega__panels {
    padding: 1.1rem 1.1rem 1rem;
  }

  .services-panel__header {
    padding-bottom: 0.8rem;
    margin-bottom: 0.72rem;
  }

  .services-panel__header p {
    font-size: 1.02rem;
  }

  .services-panel__header span {
    font-size: 0.76rem;
  }

  .services-panel__submenu {
    gap: 0.6rem;
  }

  .services-panel__submenu a {
    min-height: 96px;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .services-panel__submenu-title {
    font-size: 0.9rem;
  }

  .services-panel__submenu small {
    margin-top: 0.35rem;
    font-size: 0.73rem;
    line-height: 1.45;
  }

  .nav-item--simple-dropdown .nav-mega--simple {
    min-width: 210px;
    padding: 0.35rem;
  }

  .simple-dropdown-menu a {
    gap: 0.6rem;
    padding: 0.52rem 0.65rem;
    border-radius: 9px;
    font-size: 0.8rem;
  }

  .simple-dropdown-menu__icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .simple-dropdown-menu__icon svg {
    width: 14px;
    height: 14px;
  }

  .simple-dropdown-menu__label {
    font-size: 0.86rem;
  }

  .nav-cta .btn--sm {
    min-height: 40px;
    padding-inline: 1rem;
  }

  .topbar-contact--inline a {
    font-size: 0.75rem;
  }

  .toolbar-dropdown__toggle {
    min-height: 28px;
    padding: 0.28rem 0.52rem;
    font-size: 0.68rem;
  }

  .toolbar-dropdown__value {
    font-size: 0.7rem;
  }

  .toolbar-dropdown__item--compact {
    padding: 0.68rem 0.82rem;
    font-size: 0.76rem;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .primary-nav {
    margin-left: -36px;
  }

  .nav-mega--services {
    width: 680px;
  }
}


/* =========================================================
   HOME SELF-SERVE PORTAL HUB
   ========================================================= */
.res-feature-hub {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 300px;
  gap: clamp(1.8rem, 2vw, 2.45rem);
  align-items: center;
}

.res-feature-hub__title {
  font-family: 'Oswald', var(--nl-font);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.res-feature-hub__desc {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--nl-gray-700);
  max-width: 18.5rem;
}

.res-feature-hub__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.btn--portal {
  min-width: 260px;
  justify-content: center;
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: none;
}

.btn--portal:hover {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: translateY(-1px);
}

.res-feature-hub__signup {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  color: var(--nl-gray-900);
  white-space: nowrap;
}

.res-feature-hub__signup a {
  color: var(--nl-gray-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.res-feature-hub__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.res-feature-card {
  position: relative;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--nl-white);
  border: 1px solid rgba(201, 235, 235, 0.9);
  border-radius: 1.35rem;
  padding: 1.2rem 1.08rem 1rem;
  box-shadow: 0 8px 22px rgba(145, 215, 213, 0.18);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition), border-color var(--nl-transition);
}

.res-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.1);
  border-color: rgba(145, 215, 213, 1);
  color: inherit;
}

.res-feature-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--nl-blue-50);
  color: var(--nl-blue-600);
  border: 1px solid var(--nl-blue-100);
}

.res-feature-card__icon svg,
.res-feature-card__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.res-feature-card__title {
  display: block;
  max-width: 12ch;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
}

.res-feature-card__title--single {
  max-width: none;
  white-space: nowrap;
  font-size: 0.96rem;
}

.res-feature-card__arrow {
  align-self: flex-end;
  color: #7A7A7A;
  transition: transform var(--nl-transition), color var(--nl-transition);
}

.res-feature-card:hover .res-feature-card__arrow {
  transform: translateX(4px);
  color: #4a4a4a;
}

.res-feature-hub__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 360px;
  overflow: visible;
}

.res-feature-hub__visual--portal {
  justify-content: flex-start;
}

.res-feature-portal-figure {
  width: 100%;
  max-width: 520px;
  transform: translateX(14px);
}

.res-feature-portal-figure svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(26, 95, 180, 0.08));
}

.res-feature-portal-figure--duo {
  max-width: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.75rem;
}

.res-feature-portal-illustration {
  flex: 0 0 50%;
  max-width: 260px;
}

.res-feature-portal-photo {
  flex: 0 0 44%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.res-feature-portal-photo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  object-fit: contain;
}

.res-feature-portal-photo--solo {
  width: 370px;
  max-width: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: 0;
  transform: translateX(28px);
}

.res-feature-portal-photo--solo img {
  width: 370px;
  max-width: none;
  filter: drop-shadow(0 14px 26px rgba(11, 31, 58, 0.08));
}

@media (max-width: 1180px) {
  .res-feature-hub {
    grid-template-columns: 1fr;
  }

  .res-feature-hub__intro {
    max-width: 720px;
  }

  .res-feature-hub__desc {
    max-width: 32rem;
  }

  .res-feature-hub__actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .res-feature-hub__visual {
    min-height: 0;
    justify-content: flex-start;
  }

  .res-feature-portal-photo--solo {
    width: 100%;
    max-width: 320px;
    transform: none;
  }

  .res-feature-portal-photo--solo img {
    width: 100%;
    max-width: 320px;
  }

  .res-feature-portal-figure {
    transform: none;
  }

  .res-feature-portal-figure--duo {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .res-feature-hub__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .res-feature-portal-figure--duo {
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  .res-feature-hub__title {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .res-feature-hub__cards {
    grid-template-columns: 1fr;
  }

  .res-feature-card {
    min-height: 150px;
  }

  .res-feature-portal-figure--duo {
    flex-direction: column;
    align-items: center;
  }

  .res-feature-portal-illustration,
  .res-feature-portal-photo,
  .res-feature-portal-photo--solo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
  }

  .res-feature-hub__actions {
    align-items: stretch;
  }

  .res-feature-hub__signup {
    white-space: normal;
  }

  .btn--portal {
    min-width: 0;
    width: 100%;
  }
}

/* =========================================================
   DESKTOP NORMALIZATION PASS: balanced sizing at browser zoom 100%
   ========================================================= */
@media (min-width: 1024px) {
  html {
    font-size: 15px;
  }

  .container {
    max-width: 1180px;
  }

  .container--wide {
    max-width: 1360px;
  }

  .section {
    padding: 4.35rem 0;
  }

  .section--sm {
    padding: 2.6rem 0;
  }

  .section--lg {
    padding: 6rem 0;
  }

  .site-topbar {
    padding: 0.4rem 0;
  }

  .site-topbar__inner {
    min-height: 36px;
  }

  .topbar-contact--inline {
    gap: 0.72rem;
  }

  .topbar-contact--inline a {
    font-size: 0.72rem;
  }

  .topbar-contact--inline a + a {
    padding-left: 0.72rem;
  }

  .toolbar-dropdown__toggle {
    min-height: 26px;
    padding: 0.22rem 0.46rem;
    font-size: 0.64rem;
  }

  .toolbar-dropdown__value {
    font-size: 0.66rem;
  }

  .toolbar-dropdown__item--compact {
    padding: 0.62rem 0.75rem;
    font-size: 0.72rem;
  }

  .site-header__inner {
    height: 100px;
    min-height: 100px;
    gap: 0.85rem;
  }

  .site-logo__img,
  .custom-logo {
    height: 56px;
    max-height: 56px;
  }

  .primary-nav {
    margin-left: -52px;
  }

  .nav-menu--section {
    gap: 0;
  }

  .nav-link {
    height: 76px;
    padding: 0 0.72rem;
    font-size: 0.84rem;
  }

  .nav-item--simple-dropdown .nav-link--button.is-current::after {
    left: 0.72rem;
    right: 0.72rem;
    bottom: 20px;
  }

  .nav-mega--services {
    width: 670px;
  }

  .services-mega {
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 338px;
  }

  .services-mega__sidebar {
    padding: 0.78rem;
    gap: 0.4rem;
  }

  .services-category {
    gap: 0.68rem;
    padding: 0.74rem 0.82rem;
    border-radius: 14px;
  }

  .services-category__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .services-category__icon svg {
    width: 17px;
    height: 17px;
  }

  .services-category__text strong {
    font-size: 0.86rem;
  }

  .services-category__text small {
    font-size: 0.68rem;
  }

  .services-mega__panels {
    padding: 0.95rem 0.95rem 0.9rem;
  }

  .services-panel__header {
    padding-bottom: 0.7rem;
    margin-bottom: 0.65rem;
  }

  .services-panel__header p {
    font-size: 0.96rem;
  }

  .services-panel__header span {
    font-size: 0.72rem;
  }

  .services-panel__submenu {
    gap: 0.52rem;
  }

  .services-panel__submenu a {
    min-height: 88px;
    padding: 0.78rem 0.82rem;
    border-radius: 14px;
  }

  .services-panel__submenu-title {
    font-size: 0.85rem;
  }

  .services-panel__submenu small {
    margin-top: 0.28rem;
    font-size: 0.69rem;
    line-height: 1.38;
  }

  .nav-item--simple-dropdown .nav-mega--simple {
    min-width: 200px;
    padding: 0.3rem;
  }

  .simple-dropdown-menu a {
    gap: 0.55rem;
    padding: 0.48rem 0.6rem;
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .simple-dropdown-menu__icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .simple-dropdown-menu__icon svg {
    width: 13px;
    height: 13px;
  }

  .simple-dropdown-menu__label {
    font-size: 0.81rem;
  }

  .nav-cta .btn--sm {
    min-height: 36px;
    padding-inline: 0.9rem;
    font-size: 0.79rem;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .primary-nav {
    margin-left: -18px;
  }

  .nav-mega--services {
    width: 630px;
  }
}


/* ==========================================================================
   FULL-PAGE HERO SLIDESHOW (fp-hero)
   Replaces the embedded .hero block on the home page template.
   All other pages are unaffected — this class is only used in template-home.php
   ========================================================================== */

/* ── Container ── */
.fp-hero {
  position: relative;
  width: 100vw;
  height: calc(var(--fp-hero-vh, 100vh) - 212px);
  max-height: 580px;
  min-height: 390px;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ── Each slide ── */
.fp-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #fff;
  /* Default gradient — overridden per-slide below */
  background: linear-gradient(135deg, #0b1f3a 0%, #154a87 55%, #2172cc 100%);
  /* Transition: incoming slide fades + slides in from right */
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.7s;
  will-change: opacity, transform;
}

/* Outgoing slide slides to left */
.fp-hero__slide.is-leaving {
  opacity: 0;
  transform: translateX(-60px);
  visibility: hidden;
}

.fp-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Per-slide colour themes */
.fp-hero__slide--internet { background: linear-gradient(135deg, #0b1f3a 0%, #154a87 55%, #2172cc 100%); }
.fp-hero__slide--phone    { background: linear-gradient(135deg, #0b1f3a 0%, #0d3065 55%, #1861b8 100%); }
.fp-hero__slide--tv       { background: linear-gradient(135deg, #0b1f3a 0%, #0e2e5c 55%, #155ba0 100%); }
.fp-hero__slide--wifi     { background: linear-gradient(135deg, #081829 0%, #0a3060 55%, #0f52a0 100%); }

/* ── Decorative background icon ── */
.fp-hero__slide-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fp-hero__bg-icon {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 700px);
  height: min(55vw, 700px);
  opacity: 0.045;
  color: #fff;
}

/* ── Slide content wrapper ── */
.fp-hero__slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge / eyebrow above title */
.fp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  width: fit-content;
}

/* Main heading */
.fp-hero__title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.07;
  color: #fff;
  margin: 0 0 0.8rem;
  max-width: 780px;
}

.fp-hero__title span {
  color: #7eb8f7;
}

/* Lead paragraph */
.fp-hero__lead {
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 1rem;
}

/* Service label chip */
.fp-hero__service-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  margin-bottom: 1rem;
}

.fp-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.fp-hero__service-name {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
}

.fp-hero__service-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* Stats row */
.fp-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 680px;
}

.fp-hero__stat-value {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
}

.fp-hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ── Arrow buttons ── */
.fp-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fp-hero__arrow:hover,
.fp-hero__arrow:focus-visible {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  outline: none;
}

.fp-hero__arrow:active {
  transform: translateY(-50%) scale(0.93);
}

.fp-hero__arrow--prev { left: clamp(1rem, 3vw, 2.5rem); }
.fp-hero__arrow--next { right: clamp(1rem, 3vw, 2.5rem); }

/* ── Dot navigation ── */
.fp-hero__dots {
  position: absolute;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fp-hero__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.fp-hero__dot.is-active {
  width: 2rem;
  background: #fff;
}

/* ── Scroll hint ── */
.fp-hero__scroll-hint {
  position: absolute;
  bottom: 1.15rem;
  right: clamp(1rem, 3vw, 2.5rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fp-bounce 2s ease-in-out infinite;
}

@keyframes fp-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .fp-hero__slide {
    transition: opacity 0.3s ease, visibility 0.3s;
    transform: none !important;
  }
  .fp-hero__scroll-hint { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .fp-hero {
    height: auto;
    min-height: calc(100svh - 100px);
  }

  .fp-hero__slide {
    /* On mobile, slides stack and min-height is used */
    position: relative;
    min-height: calc(100svh - 100px);
    transform: none;
  }

  .fp-hero__slide:not(.is-active) {
    display: none;
  }

  .fp-hero__slide.is-leaving {
    display: none;
  }

  .fp-hero__bg-icon {
    width: 80vw;
    height: 80vw;
    opacity: 0.03;
  }

  .fp-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fp-hero__arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 540px) {
  .fp-hero__arrow--prev { left: 0.75rem; }
  .fp-hero__arrow--next { right: 0.75rem; }

  .fp-hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .fp-hero__service-label { width: 100%; }
}

/* ── fp-hero CTA buttons ── */
.fp-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.fp-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.fp-hero__btn--primary {
  background: #fff;
  color: var(--nl-blue-800, #0b1f3a);
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.fp-hero__btn--primary:hover,
.fp-hero__btn--primary:focus-visible {
  background: var(--nl-blue-50, #e8f1fb);
  border-color: var(--nl-blue-50, #e8f1fb);
  color: var(--nl-blue-800, #0b1f3a);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.fp-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}

.fp-hero__btn--outline:hover,
.fp-hero__btn--outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 540px) {
  .fp-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    margin-top: 1.5rem;
  }
  .fp-hero__btn {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   FP-HERO SPLIT-SCREEN PHOTO LAYOUT
   Overrides the original single-column slide layout with a two-column
   split: blue gradient content left, photo panel right with diagonal blend.
   ========================================================================== */

/* Make each slide a flex row */
.fp-hero__slide {
  flex-direction: row;
  align-items: stretch;
}

/* ── Left content panel ── */
.fp-hero__slide-content {
  position: relative;
  z-index: 2;
  flex: 0 0 56%;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.5vw, 1.95rem) clamp(1.25rem, 3.4vw, 2.6rem) clamp(0.8rem, 1.6vw, 1.2rem) clamp(6rem, 12vw, 14rem);
  overflow-y: auto;
  overflow-x: hidden;
  background: inherit;
  justify-content: flex-start;
  padding-top: max(0.9rem, 1.8vh);
}

/* ── Right photo panel ── */
.fp-hero__slide-photo {
  position: relative;
  flex: 0 0 44%;
  overflow: hidden;
}

.fp-hero__slide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

/* Diagonal blend overlay — creates the seamless merge from gradient into photo */
.fp-hero__photo-blend {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Left edge: solid slide colour. Right edge: transparent. Diagonal cut. */
  background: linear-gradient(
    105deg,
    var(--fp-slide-color, #0f3d7a) 0%,
    var(--fp-slide-color, #0f3d7a) 12%,
    rgba(11, 31, 58, 0.55) 38%,
    rgba(11, 31, 58, 0.18) 58%,
    transparent 75%
  );
  pointer-events: none;
}

/* Per-slide colour variables for the blend */
.fp-hero__slide--internet { --fp-slide-color: #154a87; }
.fp-hero__slide--phone    { --fp-slide-color: #0d3065; }
.fp-hero__slide--tv       { --fp-slide-color: #0e2e5c; }
.fp-hero__slide--wifi     { --fp-slide-color: #0a3060; }

/* Bottom gradient on photo — ties into page below */
.fp-hero__slide-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  z-index: 2;
  background: linear-gradient(to top, rgba(11,31,58,0.5) 0%, transparent 100%);
  pointer-events: none;
}

/* Remove the old bg-icon approach (no longer needed) */
.fp-hero__slide-bg { display: none; }

/* ── Slide transition: keep existing translate logic ── */
.fp-hero__slide {
  transform: translateX(60px);
}
.fp-hero__slide.is-active {
  transform: translateX(0);
}
.fp-hero__slide.is-leaving {
  transform: translateX(-60px);
}

/* ── Scroll hint — keep on the left side ── */
.fp-hero__scroll-hint {
  left: clamp(1.25rem, 5vw, 3rem);
  right: auto;
  color: rgba(255,255,255,0.45);
}

/* ── Arrows — push outside the photo ── */
.fp-hero__arrow--prev { left: 1rem; }
.fp-hero__arrow--next { right: 1rem; }

/* ── Responsive: stack vertically on tablet/mobile ── */
@media (max-width: 900px) {
  .fp-hero__slide {
    flex-direction: column;
  }

  .fp-hero__slide-content {
    flex: 0 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .fp-hero__slide-photo {
    flex: 1;
    min-height: 240px;
    max-height: 320px;
  }

  .fp-hero__slide-photo img {
    object-position: center 20%;
  }

  .fp-hero__photo-blend {
    background: linear-gradient(
      180deg,
      var(--fp-slide-color, #0f3d7a) 0%,
      rgba(11,31,58,0.5) 30%,
      transparent 60%
    );
  }

  .fp-hero__scroll-hint { display: none; }
}

@media (max-width: 540px) {
  .fp-hero__slide-content {
    padding: 2rem 1.25rem 1.25rem;
  }
  .fp-hero__slide-photo {
    min-height: 200px;
    max-height: 260px;
  }
}

/* =========================================================
   HEADER TWEAK: smaller language + location dropdowns
   ========================================================= */
.site-topbar .toolbar-dropdown__toggle {
  min-height: 26px;
  padding: 0.2rem 0.42rem;
  gap: 0.2rem;
  border-radius: 999px;
}
.site-topbar .toolbar-dropdown__value {
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.site-topbar .toolbar-dropdown__toggle .caret {
  font-size: 0.5rem;
}
.site-topbar .toolbar-dropdown__menu--compact {
  min-width: 54px;
  width: auto;
  padding: 0.2rem;
}
.site-topbar .toolbar-dropdown__item--compact {
  padding: 0.32rem 0.48rem;
  font-size: 0.68rem;
  line-height: 1.1;
  justify-content: center;
}
.site-topbar .topbar-links {
  gap: 0.42rem;
}

@media (max-width: 768px) {
  .site-topbar .toolbar-dropdown__toggle {
    min-height: 34px;
    padding: 0.4rem 0.65rem;
  }

  .site-topbar .toolbar-dropdown__value {
    font-size: 0.8rem;
  }

  .site-topbar .toolbar-dropdown__item--compact {
    justify-content: flex-start;
    font-size: 0.82rem;
    padding: 0.55rem 0.7rem;
  }
}


/* =========================================================
   TOPBAR + FOOTER TWEAKS: tighter topbar grouping and footer cleanup
   ========================================================= */
@media (min-width: 1101px) {
  .site-topbar__inner {
    justify-content: flex-end;
  }

  .site-topbar__left {
    margin-right: 0.7rem;
  }

  .site-topbar .topbar-links {
    margin-left: 0;
  }
}

.site-footer .footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
}

.site-footer .footer-bottom__links {
  gap: 0.75rem;
}

.site-footer .footer-bottom__links a {
  display: inline-flex;
  align-items: center;
}

.site-footer .footer-bottom__links a + a::before {
  content: '|';
  margin-right: 0.75rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TOPBAR ALIGNMENT FIX: switcher left, contact cluster right
   ========================================================= */
@media (min-width: 1101px) {
  .site-topbar__inner {
    justify-content: space-between;
  }

  .site-topbar__left {
    margin-right: 0;
  }

  .site-topbar .topbar-links {
    margin-left: 0;
  }
}

/* =========================================================
   TOPBAR + HEADER POSITION TUNE: switcher slightly right, account under phone
   ========================================================= */
@media (min-width: 1101px) {
  .site-topbar__left {
    margin-left: 7mm;
  }

  .site-header__inner {
    justify-content: flex-start;
  }

  .nav-cta {
    margin-left: auto;
  }
}


/* =========================================================
   USER REQUEST TWEAKS: thinner switcher, tighter intros
   ========================================================= */
@media (min-width: 1101px) {
  .section-switcher,
  .mobile-section-switcher {
    padding: 0.15rem;
  }

  .section-switcher__link,
  .mobile-section-switcher__link {
    min-width: 108px;
    padding: 0.26rem 0.85rem;
    font-size: 0.77rem;
  }
}

.section--services-intro {
  padding-top: 2.2rem;
  padding-bottom: 4.5rem;
}

.section--commitment {
  padding-top: 3rem;
}

.section-header--tight {
  margin-bottom: 2.5rem;
}

.section-header--services-intro .section-title,
.section-header--commitment .section-title {
  margin-top: 0;
}


/* =========================================================
   USER REQUEST TWEAKS: slimmer topbar, tighter path + commitment spacing
   ========================================================= */
.site-topbar {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

@media (min-width: 1101px) {
  .section-switcher,
  .mobile-section-switcher {
    padding: 0.12rem;
  }

  .section-switcher__link,
  .mobile-section-switcher__link {
    min-width: 108px;
    padding: 0.2rem 0.85rem;
    font-size: 0.76rem;
  }

  .topbar-contact--inline a,
  .topbar-links a,
  .toolbar-dropdown__toggle {
    font-size: 0.78rem;
  }
}

.section--commitment {
  padding-top: 2.4rem;
  padding-bottom: 2.6rem;
}

.section-header--commitment {
  margin-bottom: 1.75rem;
}

.section--commitment .feature-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section--path-choice {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.section--path-choice .section-header {
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   NEED EXTRA HARDWARE — 3-column feature cards
   ========================================================================== */

.section--hardware {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.section--hardware .section-header {
  margin-bottom: 2rem;
}

.hardware-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hardware-card {
  background: #fff;
  border: 1px solid var(--nl-gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hardware-card:hover {
  box-shadow: 0 8px 28px rgba(11,31,58,0.12);
  transform: translateY(-3px);
}

.hardware-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nl-blue-50, #e8f1fb);
  color: var(--nl-blue-600, #1a5fb4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hardware-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nl-gray-900);
  margin: 0;
  line-height: 1.3;
}

.hardware-card__desc {
  font-size: 0.9rem;
  color: var(--nl-gray-600);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.hardware-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nl-blue-600, #1a5fb4);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.hardware-card__link:hover {
  color: var(--nl-blue-800, #0b1f3a);
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .hardware-cards { grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .hardware-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FOOTER — Connect With Us social column
   ========================================================================== */

.footer-social-col__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  max-width: 200px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-icons a:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
