/* ============================================================
   THE IT EXPERIENCE — SITE-WIDE DESIGN SYSTEM
   Shared across all pages. Edit here to update everywhere.
   Fonts loaded via <link> tags in each HTML file for performance.
   ============================================================ */

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds */
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1420;
  --bg-card: #141a28;
  --bg-card-hover: #1a2236;

  /* Brand Colors */
  --accent: #3b8ff5;
  --accent-hover: #5aa3f0;
  --accent-light: #6cb4ff;
  --accent-glow: rgba(59, 143, 245, 0.15);
  --accent-glow-strong: rgba(59, 143, 245, 0.25);
  --accent-border: rgba(59, 143, 245, 0.2);
  --accent-border-strong: rgba(59, 143, 245, 0.3);

  /* Text */
  --text-primary: #e8ecf4;
  --text-secondary: #8892a8;
  --text-muted: #7e8a9e;

  /* Borders */
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(59, 143, 245, 0.2);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Radii */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SKIP LINK (a11y) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 10000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll-triggered */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.scrolled {
  background: rgba(10, 14, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 100;
}
.nav-links > li:hover > .dropdown-menu,
.nav-links > li:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Dropdown caret */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-links > li:hover .caret,
.nav-links > li:focus-within .caret { transform: rotate(180deg); }

/* Nested submenu (desktop flyout) */
.has-submenu { position: relative; }
.submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sub-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 4.5px solid currentColor;
  margin-left: auto;
  padding-left: 12px;
  transition: transform 0.2s;
}
.submenu {
  position: absolute;
  left: calc(100% + 4px);
  top: -8px;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 101;
}
.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.has-submenu:hover > .submenu-trigger .sub-caret {
  transform: translateX(2px);
}
.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.submenu li a:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Nav right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 143, 245, 0.3);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.07rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 24px 0 8px;
  border-bottom: none;
}

/* Mobile accordion groups */
.mobile-group {
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-group-toggle {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1.07rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s;
  text-align: left;
}
.mobile-menu .mobile-group-toggle:hover { color: var(--accent); }
.mobile-group-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 12px;
}
.mobile-menu .mobile-group-toggle[aria-expanded="true"] .mobile-group-caret {
  transform: rotate(180deg);
}
.mobile-menu .mobile-group-items {
  display: none;
  padding-bottom: 4px;
}
.mobile-menu .mobile-group-items.open {
  display: block;
}
.mobile-menu .mobile-group-items a {
  padding: 11px 0 11px 20px;
  font-size: 0.98rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mobile-menu .mobile-group-items a:last-child {
  border-bottom: none;
}
.mobile-menu .mobile-group-items a:hover {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 143, 245, 0.3);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(59, 143, 245, 0.35);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: var(--accent-glow);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* ===== SECTION HEADINGS ===== */
.section-eyebrow {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.17rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 143, 245, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 180, 255, 0.04) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.22rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  background: var(--bg-card-hover);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.card:hover .card-icon {
  background: var(--accent-glow-strong);
  transform: scale(1.05);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== STARS (testimonials) ===== */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo img { height: 56px; }
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--accent-glow-strong);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-legal {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-remote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.footer-remote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 143, 245, 0.3);
  color: #fff;
}

/* ===== CTA BANNER (reusable) ===== */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  background: linear-gradient(135deg, rgba(59, 143, 245, 0.08), rgba(108, 180, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 143, 245, 0.1), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}
.cta-banner-inner p {
  font-size: 1.17rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.97rem;
  text-decoration: none;
  transition: color 0.3s;
}
.cta-contact-item:hover { color: var(--accent); }
.cta-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ===== IFRAME CONTAINER (reusable) ===== */
.iframe-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.iframe-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ===== GET STARTED MODAL ===== */
.gs-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 8, 14, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gs-overlay.open {
  opacity: 1;
  visibility: visible;
}
.gs-modal {
  max-width: 680px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}
.gs-overlay.open .gs-modal {
  transform: translateY(0) scale(1);
}
.gs-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--text-muted);
}
.gs-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}
.gs-close svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.gs-heading {
  text-align: center;
  margin-bottom: 28px;
}
.gs-heading h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.gs-heading p {
  font-size: 0.97rem;
  color: var(--text-muted);
}
.gs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.gs-card:hover {
  border-color: var(--accent-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  background: var(--bg-card-hover);
}
.gs-card:hover::before { opacity: 1; }
.gs-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.gs-card:hover .gs-card-icon {
  background: var(--accent-glow-strong);
  transform: scale(1.08);
}
.gs-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gs-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.gs-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.gs-card-arrow {
  margin-top: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.gs-card:hover .gs-card-arrow {
  background: var(--accent);
}
.gs-card-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.gs-card:hover .gs-card-arrow svg {
  stroke: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-right .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  .page-hero { padding: 120px 0 60px; }
  .cta-banner-inner { padding: 48px 28px; }
  .cta-contact-info { flex-direction: column; align-items: center; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gs-cards { grid-template-columns: 1fr; }
  .gs-close { top: -44px; }
}

/* ===== FOCUS VISIBLE (a11y) ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) {
  outline: none;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible,
.footer-remote-btn:focus-visible {
  outline-offset: 4px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s, border-color 0.3s;
  color: var(--text-secondary);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-glow);
  border-color: var(--accent-border);
  color: var(--accent);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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