/* ============================================
   ICYNET Communications — Custom Styles (Fixed)
   ============================================ */

:root {
  --icy-blue: #1E9AD6;
  --icy-blue-dark: #1679AA;
  --icy-blue-light: #5BB8E8;
  --icy-cyan: #22D3EE;
  --dark-bg: #0B1120;
  --dark-surface: #111827;
  --dark-elevated: #1E293B;
  --light-bg: #F8FAFC;
  --light-surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-inverse: #F1F5F9;
  --border-light: #E2E8F0;
  --border-dark: #334155;
  --success: #10B981;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(30, 154, 214, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, p, li {
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background: var(--icy-blue);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--icy-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 154, 214, 0.35);
}

.btn-primary:hover {
  background: var(--icy-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 154, 214, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--icy-blue);
  color: var(--icy-blue);
  background: rgba(30, 154, 214, 0.04);
}

.btn-inverse {
  background: white;
  color: var(--dark-bg);
}

.btn-inverse:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ============================================
   HEADER / NAVIGATION  [FIXED]
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header .logo-text,
.site-header .nav-link,
.site-header .mobile-menu-btn {
  color: var(--text-inverse);
  transition: color var(--transition-base), background var(--transition-fast);
}

.site-header .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.site-header .nav-link.active {
  color: var(--icy-blue-light);
}

.site-header .mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo-text,
.site-header.scrolled .mobile-menu-btn {
  color: var(--text-primary);
}

.site-header.scrolled .nav-link {
  color: var(--text-secondary);
}

.site-header.scrolled .nav-link:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.04);
}

.site-header.scrolled .nav-link.active {
  color: var(--icy-blue);
}

.site-header.scrolled .mobile-menu-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Permanent light header (for pages without a dark hero) */
.site-header.light {
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header.light .logo-text,
.site-header.light .mobile-menu-btn {
  color: var(--text-primary);
}

.site-header.light .nav-link {
  color: var(--text-secondary);
}

.site-header.light .nav-link:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.04);
}

.site-header.light .nav-link.active {
  color: var(--icy-blue);
}

.site-header.light .mobile-menu-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}



.desktop-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav-cta { margin-left: 8px; }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--light-surface);
  z-index: 999;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-nav .nav-link {
  padding: 16px;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
}

.mobile-nav .nav-link:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.04);
}

.mobile-nav .btn { margin-top: 16px; width: 100%; }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================
   HERO SECTION  [IMAGE + SVG OVERLAY]
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, 
    rgba(11, 17, 32, 0.97) 0%, 
    rgba(11, 17, 32, 0.92) 25%,
    rgba(11, 17, 32, 0.78) 45%, 
    rgba(11, 17, 32, 0.40) 65%, 
    rgba(11, 17, 32, 0.12) 85%,
    rgba(11, 17, 32, 0.02) 100%
  );
}

.hero-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-svg-overlay svg {
  width: 100%;
  height: 100%;
}

/* Animated network paths */
.net-path {
  fill: none;
  stroke: rgba(30, 154, 214, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
}

.net-path-glow {
  fill: none;
  stroke: rgba(34, 211, 238, 0.6);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 40 200;
  animation: path-flow 6s linear infinite;
}

.net-path-glow-slow {
  fill: none;
  stroke: rgba(34, 211, 238, 0.4);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 20 150;
  animation: path-flow 8s linear infinite;
}

@keyframes path-flow {
  to { stroke-dashoffset: -240; }
}



/* Pulsing nodes */
.net-node {
  fill: rgba(34, 211, 238, 0.8);
  animation: node-pulse 4s ease-in-out infinite;
}

.net-node-delay-1 { animation-delay: 1s; }
.net-node-delay-2 { animation-delay: 2s; }
.net-node-delay-3 { animation-delay: 3s; }
.net-node-delay-4 { animation-delay: 0.5s; }

@keyframes node-pulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Node glow rings */
.net-node-glow {
  fill: none;
  stroke: rgba(30, 154, 214, 0.2);
  stroke-width: 1;
  animation: glow-ring 4s ease-in-out infinite;
}

@keyframes glow-ring {
  0%, 100% { opacity: 0; r: 4; }
  50% { opacity: 0.6; r: 10; }
}

/* Wireless arcs near tower */
.wireless-arc {
  fill: none;
  stroke: rgba(34, 211, 238, 0.25);
  stroke-width: 1.5;
  stroke-linecap: round;
  animation: arc-fade 5s ease-in-out infinite;
}

.wireless-arc-delay-1 { animation-delay: 1.5s; }
.wireless-arc-delay-2 { animation-delay: 3s; }

@keyframes arc-fade {
  0%, 100% { opacity: 0; }
  30% { opacity: 0.6; }
  70% { opacity: 0.6; }
}

/* Small sparkles along paths */
.net-sparkle {
  fill: rgba(255, 255, 255, 0.6);
  animation: sparkle-move 5s linear infinite;
}

@keyframes sparkle-move {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .net-path-glow,
  .net-path-glow-slow,
  .net-node,
  .net-node-glow,
  .wireless-arc,
  .net-sparkle {
    animation: none;
  }
  .net-path-glow,
  .net-path-glow-slow {
    stroke-dasharray: none;
    opacity: 0.5;
  }
  .net-node { opacity: 0.6; }
  .wireless-arc { opacity: 0.3; }
  .net-sparkle { opacity: 0; }
}

/* Mobile: simplify overlay */
@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(11, 17, 32, 0.92) 0%, 
      rgba(11, 17, 32, 0.85) 30%, 
      rgba(11, 17, 32, 0.65) 55%, 
      rgba(11, 17, 32, 0.35) 100%
    );
  }
  .net-path-glow,
  .net-path-glow-slow {
    animation-duration: 10s;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 64px;
    align-items: flex-start;
  }
  .hero-trust-line {
    margin-top: 32px;
    padding-top: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .page-header {
    padding: 120px 0 48px;
  }
  .footer-grid {
    text-align: center;
    gap: 40px;
  }
  .footer-col h4 {
    margin-bottom: 16px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(30, 154, 214, 0.1);
  border: 1px solid rgba(30, 154, 214, 0.2);
  border-radius: 100px;
  color: var(--icy-blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--icy-blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--text-inverse);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--icy-blue-light);
  font-style: normal;
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px;
  margin-bottom: 40px;
}

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

.hero-trust-line {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ============================================
   SECTION BASE
   ============================================ */

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

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--icy-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }

/* ============================================
   SERVICES NETWORK SECTION
   ============================================ */

.services-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.services-grid.single,
.services-grid.single > * {
  grid-template-columns: 1fr !important;
}

.service-card {
  position: relative;
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--icy-blue), var(--icy-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  border-color: rgba(30, 154, 214, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 154, 214, 0.1), rgba(34, 211, 238, 0.1));
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--icy-blue);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--icy-blue);
  transition: gap var(--transition-fast);
}

.service-link:hover { gap: 12px; }

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg { transform: translateX(3px); }

.services-connector { display: none; }

@media (min-width: 768px) {
  .services-connector {
    display: block;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    height: 2px;
    z-index: 0;
    pointer-events: none;
  }
  .services-connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .services-connector path {
    stroke: var(--border-light);
    stroke-width: 2;
    fill: none;
  }
  .services-connector .flow-line {
    stroke: var(--icy-blue);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 8;
    opacity: 0.4;
    animation: flow-line 2s linear infinite;
  }
}

@keyframes flow-line {
  to { stroke-dashoffset: -16; }
}

/* ============================================
   ABOUT / CREDIBILITY SECTION
   ============================================ */

.about-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30, 154, 214, 0.08), transparent 70%);
  pointer-events: none;
}

.about-section h2,
.about-section .section-label {
  color: var(--text-inverse);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark-surface);
  border: 1px solid var(--border-dark);
}

.about-visual .network-map {
  position: absolute;
  inset: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.value-pill {
  padding: 10px 18px;
  background: rgba(30, 154, 214, 0.1);
  border: 1px solid rgba(30, 154, 214, 0.2);
  border-radius: 100px;
  color: var(--icy-blue-light);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   FEATURE SECTIONS  [FIXED reverse layout]
   ============================================ */

.feature-section {
  position: relative;
  overflow: hidden;
}

.feature-section:nth-child(even) { background: var(--light-surface); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .feature-grid.reverse .feature-visual { order: 2; }
  .feature-grid.reverse .feature-content { order: 1; }
}

.feature-visual {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-surface));
  border: 1px solid var(--border-light);
}

.feature-visual .feature-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231E9AD6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center no-repeat;
}

/* ============================================
   RURAL PLANS
   ============================================ */

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}

.plan-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.plan-card:hover {
  border-color: rgba(30, 154, 214, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.plan-card.featured {
  border-color: var(--icy-blue);
  box-shadow: var(--shadow-glow);
}

.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--icy-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.plan-speed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.plan-speed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
}

.plan-speed-row strong {
  color: var(--text-primary);
  font-size: 1.125rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   CABLING SERVICES LIST
   ============================================ */

.cabling-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .cabling-list { grid-template-columns: repeat(2, 1fr); }
}

.cabling-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.cabling-item:hover {
  border-color: rgba(30, 154, 214, 0.3);
  box-shadow: var(--shadow-sm);
}

.cabling-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 154, 214, 0.1), rgba(34, 211, 238, 0.1));
  border-radius: var(--radius-md);
  color: var(--icy-blue);
  flex-shrink: 0;
}

.cabling-icon svg { width: 24px; height: 24px; }

.cabling-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cabling-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(30, 154, 214, 0.06), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.04), transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-inverse);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 154, 214, 0.1), rgba(34, 211, 238, 0.1));
  border-radius: var(--radius-md);
  color: var(--icy-blue);
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 0.9375rem;
  margin: 0;
}

.form-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

@media (max-width: 640px) {
  .form-card { padding: 24px; }
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--light-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--icy-blue);
  box-shadow: 0 0 0 3px rgba(30, 154, 214, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   PAGE-SPECIFIC HERO OVERLAYS
   ============================================ */

.hero-rural .hero-overlay {
  background: linear-gradient(90deg, 
    rgba(11, 17, 32, 0.9) 0%, 
    rgba(11, 17, 32, 0.6) 40%, 
    rgba(11, 17, 32, 0.2) 70%, 
    rgba(11, 17, 32, 0.05) 100%
  );
}

.hero-business .hero-overlay {
  background: linear-gradient(90deg, 
    rgba(11, 17, 32, 0.92) 0%, 
    rgba(11, 17, 32, 0.7) 35%, 
    rgba(11, 17, 32, 0.3) 65%, 
    rgba(11, 17, 32, 0.1) 100%
  );
}

.hero-cabling .hero-overlay {
  background: linear-gradient(90deg, 
    rgba(11, 17, 32, 0.88) 0%, 
    rgba(11, 17, 32, 0.65) 30%, 
    rgba(11, 17, 32, 0.25) 60%, 
    rgba(11, 17, 32, 0.05) 100%
  );
}

/* Mobile hero overlays */
@media (max-width: 768px) {
  .hero-rural .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(11, 17, 32, 0.92) 0%, 
      rgba(11, 17, 32, 0.72) 50%, 
      rgba(11, 17, 32, 0.35) 100%
    );
  }
  .hero-business .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(11, 17, 32, 0.92) 0%, 
      rgba(11, 17, 32, 0.75) 50%, 
      rgba(11, 17, 32, 0.4) 100%
    );
  }
  .hero-cabling .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(11, 17, 32, 0.9) 0%, 
      rgba(11, 17, 32, 0.7) 50%, 
      rgba(11, 17, 32, 0.35) 100%
    );
  }
}

/* ============================================
   LOGO TEXT CLEANUP
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 44px;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  transition: opacity var(--transition-base);
}

/* Footer logo */

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}



.footer-col h4 {
  color: var(--text-inverse);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--icy-blue-light); }

.footer-bottom {
  padding-top: 48px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-logo-text {
  color: var(--text-inverse) !important;
}

.footer-logo-text span {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* Mobile: always show content, skip reveal animation */
@media (max-width: 768px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: var(--dark-bg);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30, 154, 214, 0.06), transparent 60%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--text-inverse);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--icy-blue-light); }

.breadcrumb span { color: var(--text-muted); }

.breadcrumb .current { color: var(--icy-blue-light); }
