/*
Theme Name: Tech Parts LLC
Theme URI: https://techpartsllc.com
Author: Tech Parts LLC
Author URI: https://techpartsllc.com
Description: Professional TV & Internet Package Consultation theme for Tech Parts LLC
Version: 6.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techpartsllc
Tags: business, one-page, responsive, professional
*/

/* ============================================================
   CSS VARIABLES — WCAG AA compliant palette
   ============================================================ */
:root {
  --primary:        #0a1628;   /* dark navy   */
  --primary-mid:    #112240;   /* mid navy    */
  --primary-light:  #1b3a6e;   /* lighter navy */
  --accent:         #2563eb;   /* electric blue — passes AA on white */
  --accent-hover:   #1d4ed8;
  --accent-light:   #eff6ff;
  --white:          #ffffff;
  --off-white:      #f8fafc;
  --light-bg:       #f1f5fa;
  --border:         #d1d9e8;
  --text-dark:      #0a1628;   /* 19.2:1 on white */
  --text-mid:       #334671;   /* 7.1:1 on white  */
  --text-muted:     #5a6e94;   /* 4.7:1 on white  */
  --card-shadow:    0 4px 28px rgba(10,22,40,0.09);
  --card-shadow-lg: 0 12px 48px rgba(10,22,40,0.16);
  --radius:         10px;
  --radius-sm:      6px;
  --radius-lg:      16px;
  --transition:     0.22s ease;
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  font-size: 0.76rem;
  font-family: var(--font-head);
  padding: 8px 0;
  letter-spacing: 0.03em;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-inner strong { color: var(--white); }
.top-bar a {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-bar a:hover { color: #fff; }

/* ============================================================
   SITE HEADER / NAVIGATION  — Clean Professional v3
   ============================================================ */
#site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
#site-header.scrolled {
  background: rgba(255,255,255,0.99);
  border-bottom-color: rgba(10,22,40,0.08);
  box-shadow: 0 8px 40px rgba(10,22,40,0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 32px;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img { height: 42px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }

/* ── Primary Nav ── */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
#primary-nav ul li {
  position: relative;
}
#primary-nav ul li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 8px 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  position: relative;
  transition: color var(--transition);
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
}

#primary-nav ul li a:hover { color: var(--primary); }

#primary-nav ul li.current-menu-item a {
  color: var(--primary);
  font-weight: 700;
}

/* ── Right CTA area ── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Phone — clean text link with icon, no border/box */
.nav-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--primary-light); background: none !important; }
.nav-phone svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-light);
  flex-shrink: 0;
  transition: fill var(--transition);
}
.nav-phone:hover svg { fill: var(--primary); }

/* CTA button — filled, pill shape, no outline */
.nav-cta-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  border: none !important;
  outline: none !important;
  box-shadow: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.28);
}

/* ── Hamburger ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
#mobile-nav {
  display: none;
  background: var(--white);
  padding: 8px 0 20px;
  border-top: 1px solid rgba(10,22,40,0.06);
}
#mobile-nav.open { display: block; }
#mobile-nav ul { flex-direction: column; gap: 0; }
#mobile-nav ul li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  padding: 13px 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  background: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(10,22,40,0.05) !important;
  border-radius: 0;
}
#mobile-nav ul li:last-child a { border-bottom: none !important; }
#mobile-nav ul li a:hover { color: var(--primary); }
#mobile-nav ul li.current-menu-item a { color: var(--primary); font-weight: 700; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  color: var(--white);
}
/* Subtle geometric accent shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(27,58,110,0.5) 100%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37,99,235,0.40);
  color: #93c5fd;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  background: rgba(37,99,235,0.12);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-section h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.13;
  font-weight: 800;
}
.hero-section h1 em {
  color: var(--accent);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 52px;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: #93c5fd;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section { padding: 84px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(37,99,235,0.20);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.section-dark .section-eyebrow {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.30);
  color: #93c5fd;
}
.section-header h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.68); }

/* ============================================================
   WHY CHOOSE — FEATURE GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.22);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,0.12);
}
.feature-icon svg {
  width: 22px; height: 22px;
  fill: var(--accent);
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   SERVICES / PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 22px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--card-shadow-lg);
  border-top: 3px solid var(--accent);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-card.featured ul li { color: rgba(255,255,255,0.82); }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }

.pricing-card:hover:not(.featured) {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.35);
}

.pricing-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(37,99,235,0.15);
}
.pricing-card.featured .pricing-card-tag {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.pricing-card h3 {
  font-size: 1.02rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.pricing-card ul { flex: 1; margin-bottom: 26px; }
.pricing-card ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.55;
}
.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-card.featured ul li::before { background: rgba(37,99,235,0.7); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--primary);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.18) 0%, rgba(27,58,110,0.5) 60%, transparent 100%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 14px;
  font-weight: 800;
}
.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-available {
  margin-top: 18px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}

/* ============================================================
   DISCLAIMER SECTION
   ============================================================ */
.disclaimer-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.disclaimer-section h3 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.disclaimer-section p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 880px;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-logo .logo-text { color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; }
.footer-logo .logo-text span { color: var(--accent); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(37,99,235,0.45);
  display: inline-block;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  fill: var(--accent);
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.38); margin-left: 16px; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,110,0.5), transparent);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 10px; position: relative; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
  font-family: var(--font-head);
  position: relative;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.60); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.35; }

.page-content-section { padding: 72px 0; }

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
}
.about-image-wrap svg {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  fill: var(--accent);
  opacity: 0.9;
}
.about-text h2 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); margin-bottom: 18px; font-weight: 800; }
.about-text p { color: var(--text-mid); margin-bottom: 14px; font-size: 0.97rem; }
.about-list { margin-top: 22px; }
.about-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: sticky;
  top: 92px;
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 800;
}
.contact-info-card .subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 0.90rem;
  margin-bottom: 36px;
  line-height: 1.65;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail .icon-wrap {
  width: 40px; height: 40px;
  background: rgba(37,99,235,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.20);
}
.contact-detail .icon-wrap svg {
  width: 17px; height: 17px;
  fill: var(--accent);
}
.contact-detail .label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
}
.contact-detail .value {
  color: rgba(255,255,255,0.80);
  font-size: 0.93rem;
}
.contact-detail a { color: rgba(255,255,255,0.80); }
.contact-detail a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--card-shadow);
}
.contact-form-wrap h3 { font-size: 1.35rem; margin-bottom: 5px; font-weight: 800; }
.contact-form-wrap .subtitle { color: var(--text-muted); font-size: 0.90rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; }
.form-success {
  display: none;
  background: #eaf5ea;
  border: 1px solid #9dcf9e;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #2a6e2c;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
}
.form-error {
  display: none;
  background: #fdf0ec;
  border: 1px solid #f0b0a0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #c0392b;
  font-size: 0.88rem;
  margin-top: 12px;
}

/* Policy Pages */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--primary); font-weight: 800; }
.policy-content h3 { font-size: 1.05rem; margin: 24px 0 8px; font-weight: 700; }
.policy-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; font-size: 0.96rem; }
.policy-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.policy-content ul li { color: var(--text-mid); margin-bottom: 6px; font-size: 0.94rem; line-height: 1.7; }

/* Services Page */
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all var(--transition);
}
.service-full-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.service-icon-lg {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-lg svg { width: 26px; height: 26px; fill: var(--accent); }
.service-full-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.service-full-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 14px; }
.service-full-card .price { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--accent); margin-bottom: 5px; }
.service-full-card .price-note { font-size: 0.80rem; color: var(--text-muted); margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  #primary-nav, .nav-phone, .nav-cta-btn { display: none; }
  .menu-toggle { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-section { padding: 60px 0 56px; }
  .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HERO V3 — Rich Animated Layout
   ============================================================ */

/* Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(27,58,110,0.7) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: orbDrift 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  bottom: -60px; left: 10%;
  animation: orbDrift 11s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(96,165,250,0.10) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,30px) scale(1.05); }
}

/* Layout: two-column */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Copy */
.hero-copy {
  animation: heroFadeUp 0.7s ease both;
}
@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-copy .hero-eyebrow { margin-bottom: 22px; }
.hero-copy h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); color: var(--white); margin-bottom: 20px; line-height: 1.13; font-weight: 800; }
.hero-copy h1 em { color: var(--accent); font-style: normal; }
.hero-copy .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }

/* Hero Buttons */
.btn-hero { font-size: 0.93rem; padding: 14px 28px; border-radius: 50px; gap: 8px; }
.btn-hero svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-hero.btn-primary svg { stroke: currentColor; fill: none; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 40px; }

/* Trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-trust-item svg { width: 14px; height: 14px; fill: #60a5fa; flex-shrink: 0; }
.hero-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ── Device Mockup ── */
.hero-device-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp 0.7s 0.2s ease both;
}

/* Signal rings */
.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.18);
  pointer-events: none;
  animation: signalExpand 3.6s ease-out infinite;
}
.signal-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.signal-ring-2 { width: 300px; height: 300px; animation-delay: 0.9s; }
.signal-ring-3 { width: 400px; height: 400px; animation-delay: 1.8s; }
.signal-ring-4 { width: 500px; height: 500px; animation-delay: 2.7s; }
@keyframes signalExpand {
  0%   { opacity: 0.7; transform: scale(0.3); }
  100% { opacity: 0;   transform: scale(1); }
}

/* Floating device frame */
.device-mockup {
  position: relative;
  width: 340px;
  background: rgba(17,34,64,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 0 0 1px rgba(37,99,235,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: deviceFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

.device-screen { padding: 0; }
.device-status-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.device-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.device-dot-red    { background: #ff5f56; }
.device-dot-yellow { background: #ffbd2e; }
.device-dot-green  { background: #27c93f; }
.device-url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Courier New', monospace;
}

.device-hero-content {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.device-wifi-icon svg { width: 64px; height: 64px; }
.device-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.device-speed-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.device-speed-block { text-align: center; }
.device-speed-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.device-speed-unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.device-speed-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
}
.device-bar-wrap { width: 100%; }
.device-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}
.device-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: 3px;
  animation: barGrow 2s ease both;
}
@keyframes barGrow { from { width: 0 !important; } }
.device-bar-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
.device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.device-tag {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(37,99,235,0.15);
  color: #93c5fd;
  border: 1px solid rgba(37,99,235,0.25);
}

/* Floating badges */
.device-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.69rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.device-badge-live {
  top: -16px; right: -16px;
  background: rgba(39,201,63,0.2);
  color: #27c93f;
  border-color: rgba(39,201,63,0.3);
  animation: deviceFloat 4s ease-in-out infinite;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulseGreen 1.5s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,201,63,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(39,201,63,0); }
}
.device-badge-secure {
  bottom: -16px; left: -16px;
  background: rgba(17,34,64,0.9);
  color: rgba(255,255,255,0.75);
  animation: deviceFloat 5s 1s ease-in-out infinite;
}
.device-badge-secure svg { width: 12px; height: 12px; fill: #60a5fa; }

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 32px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(12px);
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  min-width: 120px;
}
.hero-stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: #93c5fd;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — GLASSMORPHISM SECTION
   ============================================================ */
.services-glass-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.services-glass-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sgb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.sgb-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,58,110,0.7) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.sgb-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}
.sgb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.services-glass-section .container { position: relative; z-index: 1; }
.services-glass-section .section-header { margin-bottom: 52px; }
.text-white   { color: var(--white) !important; }
.text-white-muted { color: rgba(255,255,255,0.65) !important; }
.section-eyebrow-white {
  background: rgba(37,99,235,0.15) !important;
  border-color: rgba(37,99,235,0.30) !important;
  color: #93c5fd !important;
}

/* Cards grid */
.glass-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Glass card */
.glass-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover { transform: translateY(-8px); }
.glass-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.glass-card:hover .glass-card-glow { border-color: rgba(37,99,235,0.35); }

.glass-card-inner {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.glass-card:hover .glass-card-inner { box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08); }

/* Featured card */
.glass-card-featured .glass-card-glow {
  background: linear-gradient(135deg, rgba(37,99,235,0.22) 0%, rgba(96,165,250,0.08) 100%);
  border-color: rgba(37,99,235,0.40);
}
.glass-card-featured .glass-card-inner {
  background: rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.22);
  box-shadow: 0 12px 48px rgba(37,99,235,0.20), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Icon */
.gc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.gc-icon-wrap svg { width: 24px; height: 24px; fill: currentColor; }
.gc-icon-tv       { background: rgba(99,179,237,0.15); color: #63b3ed; }
.gc-icon-internet { background: rgba(37,99,235,0.15); color: #93c5fd; }
.gc-icon-bundle   { background: rgba(154,117,235,0.15); color: #b794f4; }
.gc-icon-support  { background: rgba(72,187,120,0.15); color: #68d391; }

/* Tag */
.gc-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.gc-tag-tv       { background: rgba(99,179,237,0.15); color: #63b3ed; border: 1px solid rgba(99,179,237,0.2); }
.gc-tag-popular  { background: rgba(37,99,235,0.18); color: #93c5fd; border: 1px solid rgba(37,99,235,0.30); }
.gc-tag-bundle   { background: rgba(154,117,235,0.15); color: #b794f4; border: 1px solid rgba(154,117,235,0.25); }
.gc-tag-support  { background: rgba(72,187,120,0.15); color: #68d391; border: 1px solid rgba(72,187,120,0.25); }

/* Title & price */
.gc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.gc-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.gc-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.gc-price-cents {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.gc-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-left: 4px;
}
.gc-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

/* Features list */
.gc-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  list-style: none;
}
.gc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.gc-check {
  width: 16px;
  height: 16px;
  fill: #60a5fa;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Glass card button */
.gc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.22s ease;
  text-decoration: none;
  margin-top: auto;
}
.gc-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.gc-btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.gc-btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,99,235,0.40);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .glass-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-device-wrap { order: -1; }
  .device-mockup { width: 300px; }
  .signal-ring-3, .signal-ring-4 { display: none; }
  .hero-orb-1 { width: 300px; height: 300px; }
}
@media (max-width: 640px) {
  .hero-stats-bar { gap: 0; padding: 16px; }
  .hero-stat-item { min-width: 80px; padding: 0 10px; }
  .hero-stat-item strong { font-size: 1.2rem; }
  .glass-cards-grid { grid-template-columns: 1fr; }
  .hero-trust-row { gap: 12px; }
  .hero-trust-sep { display: none; }
  .device-mockup { width: 260px; }
  .hero-layout { padding-bottom: 40px; }
}

/* ============================================================
   HERO — TOP BAR ADDITIONS
   ============================================================ */
.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,169,97,0.15);
  border: 1px solid rgba(240,169,97,0.3);
  color: #f0a961;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-bar-badge .dot { width: 6px; height: 6px; background: #f0a961; border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   HERO — FADE-UP ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fade-up 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* hero eyebrow gold override for homepage two-column layout */
.hero-layout .hero-eyebrow {
  background: rgba(240,169,97,0.12);
  border: 1px solid rgba(240,169,97,0.3);
  color: #f0a961;
}

/* ============================================================
   WHERE WE WORK — LOCATIONS
   ============================================================ */
.locations-section { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.location-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.25);
}
.location-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.location-icon svg { width: 24px; height: 24px; fill: #fff; }
.loc-residential { background: var(--accent); }
.loc-commercial  { background: #7c3aed; }
.loc-highrise    { background: #d97706; }
.loc-satellite   { background: #059669; }
.location-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.location-card p  { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0; }

/* ============================================================
   WARRANTY / FOLLOW-UP SECTION
   ============================================================ */
.warranty-section {
  background: var(--primary);
  padding: 64px 0;
}
.warranty-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.warranty-badge-wrap { display: flex; justify-content: center; }
.warranty-badge {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(37,99,235,0.18);
  border: 2px solid rgba(37,99,235,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 0 40px rgba(37,99,235,0.18);
  flex-shrink: 0;
}
.warranty-badge-num   { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: #f0a961; line-height: 1; }
.warranty-badge-unit  { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: #f0a961; letter-spacing: 0.1em; text-transform: uppercase; }
.warranty-badge-label { font-family: var(--font-head); font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.warranty-content h2  { color: var(--white); font-size: 1.65rem; margin-bottom: 12px; }
.warranty-content p   { color: rgba(255,255,255,0.65); margin-bottom: 22px; }
.warranty-items { display: flex; flex-direction: column; gap: 14px; }
.warranty-item  { display: flex; align-items: flex-start; gap: 12px; }
.warranty-item svg { width: 18px; height: 18px; fill: #f0a961; flex-shrink: 0; margin-top: 2px; }
.warranty-item span { color: rgba(255,255,255,0.75); font-size: 0.93rem; }

/* ============================================================
   PRICING — ICON & AMOUNT ADDITIONS (new plan layout)
   ============================================================ */
.pricing-icon {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.pricing-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.pricing-card.featured .pricing-icon { background: rgba(37,99,235,0.25); }
.pricing-card.featured .pricing-icon svg { fill: #93c5fd; }
.pricing-dollar { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-mid); align-self: flex-start; margin-top: 8px; }
.pricing-amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-card.featured .pricing-dollar,
.pricing-card.featured .pricing-amount { color: var(--white); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 960px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .warranty-badge { margin: 0 auto; }
  .warranty-item  { justify-content: center; text-align: left; }
}
@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-badge  { display: none; }
}
@media (max-width: 420px) {
  .locations-grid { grid-template-columns: 1fr; }
}
