/* 
   Threewaves Premium Modern Website - Style Architecture 
   Cinematic Storytelling & System-Aware Theme
*/

:root {
  /* Core Spacings & Typography */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --container-width: 1200px;
  --section-padding: 8rem;

  /* LIGHT THEME (Default) */
  --bg-main: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-elevated: #FFFFFF;
  
  --text-main: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  
  --primary: #111827;
  --primary-hover: #374151;
  --accent: #2563EB;
  --accent-light: rgba(37, 99, 235, 0.1);
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.05);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.05);
  
  /* SVG Streaming Paths */
  --path-color: rgba(0, 0, 0, 0.05);
  --path-active: #2563EB;
  --path-glow: rgba(37, 99, 235, 0.4);
  --node-bg: #FFFFFF;
  --node-border: rgba(0, 0, 0, 0.1);
  --node-icon: #4B5563;
  --firewall-node: #F6F8FB;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* PREMIUM GRAPHITE DARK THEME */
    --bg-main: #0B0E14; /* Deep graphite */
    --bg-soft: #11151C;
    --bg-elevated: #161B26;
    
    --text-main: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --primary: #FFFFFF;
    --primary-hover: #D1D5DB;
    --accent: #3B82F6;
    --accent-light: rgba(59, 130, 246, 0.15);
    --accent-cyan: #22D3EE;
    --accent-green: #34D399;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.03);

    --glass-bg: rgba(17, 21, 28, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 15px 35px -5px rgba(0, 0, 0, 0.8);
    
    /* SVG Streaming Paths Dark Mode - Electric Blue & Cyan */
    --path-color: rgba(255, 255, 255, 0.04);
    --path-active: #22D3EE;
    --path-glow: rgba(34, 211, 238, 0.9);
    --node-bg: #161B26;
    --node-border: rgba(255, 255, 255, 0.1);
    --node-icon: #E5E7EB;
    --firewall-node: #11151C;
  }
}

/* Manual theme override */
:root[data-theme="light"] {
  --bg-main: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-elevated: #FFFFFF;
  --text-main: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --primary: #111827;
  --primary-hover: #374151;
  --accent: #2563EB;
  --accent-light: rgba(37, 99, 235, 0.1);
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.05);
  --path-color: rgba(0, 0, 0, 0.05);
  --path-active: #2563EB;
  --path-glow: rgba(37, 99, 235, 0.4);
  --node-bg: #FFFFFF;
  --node-border: rgba(0, 0, 0, 0.1);
  --node-icon: #4B5563;
  --firewall-node: #F6F8FB;
}

:root[data-theme="dark"] {
  --bg-main: #0B0E14;
  --bg-soft: #11151C;
  --bg-elevated: #161B26;
  --text-main: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --primary: #FFFFFF;
  --primary-hover: #D1D5DB;
  --accent: #3B82F6;
  --accent-light: rgba(59, 130, 246, 0.15);
  --accent-cyan: #22D3EE;
  --accent-green: #34D399;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(17, 21, 28, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 15px 35px -5px rgba(0, 0, 0, 0.8);
  --path-color: rgba(255, 255, 255, 0.04);
  --path-active: #22D3EE;
  --path-glow: rgba(34, 211, 238, 0.9);
  --node-bg: #161B26;
  --node-border: rgba(255, 255, 255, 0.1);
  --node-icon: #E5E7EB;
  --firewall-node: #11151C;
}

/* Reset & Global */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
  color: var(--text-main);
}
h1 { font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; }

p { color: var(--text-secondary); margin-bottom: 1.25em; font-size: 1.05rem; }
a { text-decoration: none; color: var(--accent); transition: all 0.2s ease; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10; }
.section { padding: var(--section-padding) 0; position: relative; }
.text-center { text-align: center; }
.section-intro { max-width: 760px; margin: 0 auto 4rem; text-align: center; }

/* Utilities */
.bg-soft { background-color: var(--bg-soft); }
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-weight: 500; font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer; gap: 0.5rem; border: 1px solid transparent;
  border-radius: var(--radius-pill);
}
.btn-primary {
  background-color: var(--primary); color: var(--bg-main);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background-color: transparent; color: var(--text-main);
  border-color: var(--border);
}
.btn-secondary:hover {
  background-color: var(--bg-soft);
}

/* Typography Enhancements */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; }

/* NAVBAR */
#navbar {
  position: fixed; top: 1.5rem; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center; padding: 0 1.5rem;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1000px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md); border: 1px solid var(--glass-border);
}
.brand-logo {
  display: flex;
  align-items: center;
  flex: 0 0 178px;
  height: 32px;
  overflow: visible;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.brand-logo img { display: block; width: 178px; height: auto; max-height: none; object-fit: contain; object-position: left center; }
@media (prefers-color-scheme: dark) {
  .brand-logo img {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(34, 211, 238, 0.28));
  }
}
:root[data-theme="dark"] .brand-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(34, 211, 238, 0.28));
}
:root[data-theme="light"] .brand-logo img {
  filter: none;
}
.nav-menu { display: flex; gap: 2.5rem; }
.nav-menu a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.nav-menu a:hover { color: var(--text-main); }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* THE STORY CONTAINER (Stages 1, 2, 3) */
.story-container {
  position: relative;
  min-height: 300vh; /* Allow enough scroll distance */
  width: 100%;
}
.story-content-layer {
  position: relative;
  z-index: 10;
}
.story-svg-layer {
  position: fixed; /* Fix to viewport during scroll */
  top: 0; left: 0; width: 100%; height: 100vh; height: 100svh;
  z-index: 1; pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.story-svg-layer.active { opacity: 1; }

/* Data Stream SVG Path Styles */
.data-path {
  fill: none;
  stroke: var(--path-color);
  stroke-width: 2px;
  stroke-linecap: round;
}
.data-path-glow {
  fill: none;
  stroke: var(--path-active);
  stroke-width: 2px;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px var(--path-glow));
  /* We will manipulate stroke-dasharray and dashoffset in JS */
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000; 
  transition: stroke-dashoffset 0.1s linear; /* Smooth scrub */
}
.node-circle {
  fill: var(--node-bg);
  stroke: var(--node-border);
  stroke-width: 2px;
}
.firewall-core {
  fill: var(--firewall-node);
  stroke: var(--border);
  stroke-width: 1px;
}

/* Stage Elements */
.stage-hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stage-converge { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; }
.stage-flow { min-height: 100vh; min-height: 100svh; padding-top: 10vh; }

.hero-text { text-align: center; max-width: 800px; padding: 0 1.5rem; opacity: 1; transition: opacity 0.5s, transform 0.5s; }
.hero-text.fade-out { opacity: 0; transform: translateY(-50px); }
.service-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: -0.75rem auto 0;
  max-width: 760px;
}
.service-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Protection Core UI */
.protection-ui {
  text-align: center; max-width: 600px; margin: 0 auto;
  opacity: 0; transform: scale(0.9); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 3rem; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 32px; box-shadow: var(--shadow-lg);
}
.protection-ui.active { opacity: 1; transform: scale(1); }
.protection-ui i { font-size: 4rem; color: var(--accent-cyan); filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.5)); margin-bottom: 1rem; }

/* Grid / Outcomes */
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.flow-grid.active { opacity: 1; transform: translateY(0); }
.flow-card {
  background: var(--bg-elevated); padding: 2.5rem 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
}
.flow-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.flow-card .icon-bx { width: 50px; height: 50px; background: var(--bg-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--text-main); margin-bottom: 1.5rem; }
.security-grid { grid-template-columns: 1fr 1fr; }

/* Standard Sections */
.partners-section {
  position: relative;
  z-index: 20;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0;
}
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5.5rem;
  margin-top: 3.5rem;
}
.partner-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5) brightness(0);
  transition: all 0.3s ease;
}

/* Optical Balancing */
.logo-google { height: 72px; }
.logo-microsoft { height: 52px; } /* Squares have more visual weight, need smaller height */
.logo-aws { height: 76px; }
.logo-malwarebytes { height: 64px; }
.logo-acronis { 
  height: 46px; 
  margin-left: -4.5rem; /* Extremely aggressive optical kerning to eliminate SVG internal padding */
}
.partner-logo:hover {
  filter: grayscale(0) opacity(1) brightness(1);
}
@media (prefers-color-scheme: dark) {
  .partner-logo {
    filter: grayscale(1) opacity(0.5) brightness(0) invert(1);
  }
}
:root[data-theme="dark"] .partner-logo {
  filter: grayscale(1) opacity(0.4) brightness(0) invert(1);
}
:root[data-theme="light"] .partner-logo {
  filter: grayscale(1) opacity(0.5) brightness(0);
}
:root[data-theme="dark"] .partner-logo:hover {
  filter: grayscale(1) opacity(1) brightness(0) invert(1);
}

/* Services Section */
.services-section { background: var(--bg-main); border-top: 1px solid var(--border-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  min-height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { margin-bottom: 0; font-size: 0.98rem; }
.service-card .icon-bx { width: 48px; height: 48px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--accent); margin-bottom: 1.25rem; }
.areas-section { background: var(--bg-soft); border-top: 1px solid var(--border-light); }
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 4rem;
  align-items: center;
}
.areas-layout .subtitle { margin-left: 0; margin-bottom: 0; }
.area-list {
  display: grid;
  gap: 0.85rem;
}
.area-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text-main);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.area-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.expertise-section { background: var(--bg-soft); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.expertise-features { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.expertise-features li { display: flex; gap: 1rem; align-items: flex-start; }
.expertise-features li i { font-size: 1.5rem; color: var(--accent); margin-top: 4px; }
.expertise-features h4 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.expertise-features p { margin: 0; font-size: 0.95rem; }

/* Contact CTA */
.cta-section { background: var(--bg-main); text-align: center; border-top: 1px solid var(--border); }
.cta-box { max-width: 600px; margin: 0 auto; }
.cta-input-group { display: flex; gap: 1rem; margin-top: 2rem; }
.cta-input-group input { flex: 1; padding: 1rem 1.5rem; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text-main); font-size: 1rem; outline: none; transition: border-color 0.2s; }
.cta-input-group input:focus { border-color: var(--accent); }

/* Reviews Section */
.reviews-section { background: var(--bg-main); border-top: 1px solid var(--border-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--text-main);
  font-size: 1.15rem;
  letter-spacing: 3px;
}
.review-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}
.review-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}
.review-author {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}
.trustpilot-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.trustpilot-rating {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}
.trustpilot-rating .stars {
  color: var(--text-main);
  margin-right: 2px;
}
.trustpilot-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-section { background: var(--bg-soft); border-top: 1px solid var(--border-light); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}
.faq-list summary {
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  list-style-position: outside;
}
.faq-list p {
  max-width: 760px;
  margin: 1rem 0 0;
  font-size: 1rem;
}

/* Animation Utils */
.fade-up-element { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up-element.visible { opacity: 1; transform: translateY(0); }

/* Footer */
footer { position: relative; z-index: 20; padding: 4rem 1.5rem 2rem; border-top: 1px solid var(--border); margin-top: 4rem; background: var(--bg-main); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: var(--container-width); margin: 0 auto 4rem; padding-left: clamp(2rem, 7vw, 6rem); }
.footer-grid h4 { font-size: 1rem; margin-bottom: 1.5rem; color: var(--text-main); }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; max-width: var(--container-width); margin: 0 auto; color: var(--text-muted); font-size: 0.9rem; }

/* Local Landing Pages */
.local-page main { padding-top: 8rem; }
.local-hero {
  padding: 5rem 0 4rem;
  background: var(--bg-main);
}
.local-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 4rem;
  align-items: center;
}
.local-hero h1 { max-width: 820px; }
.local-hero .subtitle { margin-left: 0; }
.local-proof {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.local-proof h2 { font-size: 1.3rem; }
.local-proof ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}
.local-proof li {
  color: var(--text-secondary);
  font-size: 0.98rem;
}
.local-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}
.local-checklist {
  display: grid;
  gap: 1rem;
  list-style: none;
}
.local-checklist li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-secondary);
}
.local-checklist i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}
.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.local-links a {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.local-links a:hover { color: var(--accent); border-color: var(--accent); }

/* Responsive View */
@media (max-width: 900px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .flow-grid { grid-template-columns: 1fr; gap: 1rem; }
  .security-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-layout,
  .local-hero-grid,
  .local-content { grid-template-columns: 1fr; gap: 2rem; }
  .split-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-input-group { flex-direction: column; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem;
  }
  #navbar { padding: 0 1rem; }
  .nav-container { gap: 0.75rem; }
  .brand-logo { flex-basis: 154px; }
  .brand-logo img { width: 154px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .local-page main { padding-top: 6.5rem; }
  .local-hero { padding-top: 3rem; }
  .service-strip { gap: 0.5rem; }
  .service-strip span { min-height: 34px; padding: 0.45rem 0.75rem; font-size: 0.84rem; }
  .partners-logo-grid { gap: 3rem; margin-top: 2.5rem; }
  .partner-logo { height: 48px; }
  .logo-google { height: 54px; }
  .logo-microsoft { height: 40px; }
  .logo-aws { height: 56px; }
  .logo-malwarebytes { height: 48px; }
  .logo-acronis { height: 36px; margin-left: -2rem; }
  .footer-grid { grid-template-columns: 1fr; padding-left: 0; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
