/* ================================================
   ZVMS Industries LLC — styles.css
   Base: #4f46e5 (Indigo) + #ffffff (White)
   ================================================ */

:root {
  --indigo: #4b4be1;
  --indigo-dark: #3232a0;
  --indigo-light: #6464ea;
  --indigo-xlight: #a5a5f5;
  --indigo-pale: #eeeeff;
  /* Logo accent colors */
  --accent-yellow: #fac84b;
  --accent-yellow-light: #fef3c7;
  --accent-red: #fa4b32;
  --accent-red-light: #fee2e2;
  --accent-green: #00c87d;
  --accent-green-light: #d1fae5;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #10b981;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(75,75,225,0.10);
  --shadow-lg: 0 12px 48px rgba(75,75,225,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 80px; /* mobile nav height */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ================================================
   LOAD SCREEN
   ================================================ */
.load-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.load-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.load-inner { text-align: center; }
.load-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: loadPulse 1s ease-in-out infinite alternate;
}
.load-logo svg { filter: drop-shadow(0 0 12px rgba(75,75,225,0.2)); }
.load-z { color: var(--white); }
.load-vms { color: rgba(255,255,255,0.6); }
@keyframes loadPulse { from { transform: scale(1); } to { transform: scale(1.04); } }
.load-bar-wrap {
  width: 240px;
  height: 4px;
  background: var(--indigo-pale);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}
.load-bar {
  height: 100%;
  background: var(--indigo);
  border-radius: 99px;
  animation: loadBar 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
.load-tagline {
  color: var(--gray-400);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(75,75,225,0.1);
  background: rgba(255,255,255,0.98);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.88; }
.nav-logo svg { display: block; }
.logo-z { color: var(--indigo); }
.logo-vms { color: var(--gray-900); }
.logo-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  margin-left: 0.25rem;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--indigo);
  background: var(--indigo-pale);
}
.nav-cta {
  background: var(--indigo);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--indigo-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(75,75,225,0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================
   MOBILE DRAWER
   ================================================ */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  z-index: 1100;
  background: var(--white);
  padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gray-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--gray-200); }
.drawer-logo {
  display: block;
  margin-bottom: 2rem;
  padding-top: 0.25rem;
  transition: opacity 0.2s;
}
.drawer-logo:hover { opacity: 0.85; }
.drawer-logo svg { display: block; }
.drawer-links { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 2rem; }
.drawer-links a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.drawer-links a:hover { background: var(--indigo-pale); color: var(--indigo); }
.drawer-cta {
  background: var(--indigo) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px !important;
  margin-top: 0.5rem;
}
.drawer-cta:hover { background: var(--indigo-dark) !important; }
.drawer-contact {
  border-top: 1px solid var(--gray-100);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.drawer-contact p + p { margin-top: 0.75rem; }

/* ================================================
   MOBILE BOTTOM NAV
   ================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  flex: 1;
  transition: background 0.2s;
}
.mbn-item span:last-child {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.2s;
}
.mbn-icon { font-size: 1.25rem; }
.mbn-item.active span:last-child,
.mbn-item:hover span:last-child { color: var(--indigo); }
.mbn-item.active { background: var(--indigo-pale); }
.mbn-cta {
  background: var(--indigo) !important;
  border-radius: 12px;
}
.mbn-cta span:last-child { color: var(--white) !important; }
.mbn-cta:hover { background: var(--indigo-dark) !important; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 4rem;
}
.hero-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(75,75,225,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,75,225,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(75,75,225,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo-pale);
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(75,75,225,0.2);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--indigo);
}
.hero-stats .stat:nth-child(1) .stat-num { color: var(--indigo); }
.hero-stats .stat:nth-child(3) .stat-num { color: var(--accent-green); }
.hero-stats .stat:nth-child(5) .stat-num { color: var(--accent-red); }
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* HERO VISUAL */
.hero-visual { flex: 0 0 auto; width: min(420px, 45vw); display: flex; justify-content: center; }
.hero-device {
  width: 340px;
  position: relative;
  animation: deviceFloat 6s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.device-screen {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}
.screen-row { display: flex; gap: 0.5rem; align-items: center; }
.screen-pill {
  height: 10px;
  border-radius: 99px;
  background: var(--gray-200);
  flex: 1;
}
.screen-pill.indigo { background: var(--indigo); }
.screen-pill.wide { flex: 3; }
.screen-pill.medium { flex: 2; }
.screen-pill.short { flex: 1; }
.screen-card {
  flex: 1;
  background: var(--off-white);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--gray-100);
}
.card-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.card-dot { width: 8px; height: 8px; border-radius: 50%; }
.card-dot.green { background: var(--green); }
.card-label { font-size: 0.7rem; font-weight: 600; color: var(--gray-600); font-family: var(--font-display); }
.card-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.bar { flex: 1; background: var(--indigo); border-radius: 4px 4px 0 0; opacity: 0.8; animation: barGrow 2s ease infinite alternate; }
.bar:nth-child(even) { animation-delay: 0.3s; background: var(--indigo-xlight); }
@keyframes barGrow { from { opacity: 0.5; } to { opacity: 1; } }
.screen-icon-card {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gray-600);
  font-family: var(--font-display);
  transition: all 0.2s;
  cursor: default;
}
.screen-icon-card:hover { background: var(--indigo-pale); border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.si { font-size: 1.1rem; }
.device-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(75,75,225,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.ring-2 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.5s; }
.ring-3 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 1s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.03); } }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gray-300);
  border-bottom: 2px solid var(--gray-300);
  transform: rotate(45deg);
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ================================================
   SERVICES STRIP (ticker)
   ================================================ */
.services-strip {
  background: var(--indigo);
  overflow: hidden;
  padding: 1rem 0;
}
.strip-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.strip-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.strip-sep { color: var(--accent-yellow); flex-shrink: 0; opacity: 0.8; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.alt-bg { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo);
  background: var(--indigo-pale);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.highlight {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo-pale), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75,75,225,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 54px; height: 54px;
  background: var(--indigo-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--indigo); }
.service-card:nth-child(1):hover .service-icon-wrap { background: var(--indigo); }
.service-card:nth-child(2):hover .service-icon-wrap { background: var(--accent-green); }
.service-card:nth-child(3):hover .service-icon-wrap { background: var(--accent-red); }
.service-card:nth-child(4):hover .service-icon-wrap { background: var(--accent-yellow); }
.service-card:nth-child(5):hover .service-icon-wrap { background: var(--indigo); }
.service-card:nth-child(6):hover .service-icon-wrap { background: var(--accent-green); }
.service-icon { font-size: 1.5rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-600);
  flex: 1;
}
.service-arrow {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--indigo);
  font-weight: 700;
  transition: transform 0.2s;
}
.service-card:hover .service-arrow { transform: translateX(4px); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ================================================
   WHITE GLOVE BANNER
   ================================================ */
.white-glove-banner {
  background: var(--indigo);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.wg-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.wg-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wg-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  display: block;
  width: fit-content;
}
.wg-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.highlight-white {
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wg-left p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.wg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wg-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.wg-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.wg-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.wg-card h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.wg-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ================================================
   WHY SECTION
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--indigo-pale);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card:nth-child(1) .why-num { color: var(--indigo-pale); }
.why-card:nth-child(2) .why-num { color: var(--accent-yellow-light); }
.why-card:nth-child(3) .why-num { color: var(--accent-red-light); }
.why-card:nth-child(4) .why-num { color: var(--accent-green-light); }
.why-card:nth-child(1):hover { border-top: 3px solid var(--indigo); }
.why-card:nth-child(2):hover { border-top: 3px solid var(--accent-yellow); }
.why-card:nth-child(3):hover { border-top: 3px solid var(--accent-red); }
.why-card:nth-child(4):hover { border-top: 3px solid var(--accent-green); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.why-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card:nth-child(1) { border-top: 3px solid var(--indigo); }
.testimonial-card:nth-child(2) { border-top: 3px solid var(--accent-green); }
.testimonial-card:nth-child(3) { border-top: 3px solid var(--accent-yellow); }
.stars { color: var(--accent-yellow); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--gray-900); }
.t-author span { font-size: 0.75rem; color: var(--gray-400); }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo) 50%, var(--indigo-light) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
}
.btn-primary:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75,75,225,0.35); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--indigo);
  transition: background 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: var(--indigo-pale); transform: translateY(-2px); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-white-solid {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-full {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 50px;
  border: 2px solid var(--indigo);
  transition: background 0.2s, transform 0.2s;
}
.btn-outline-full:hover { background: var(--indigo-pale); transform: translateY(-2px); }
.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 50px;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary-full:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75,75,225,0.35); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--gray-900);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.85; }
.footer-logo svg { display: block; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--indigo); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   SERVICES PAGE — DETAIL SECTIONS
   ================================================ */
.service-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.stab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.stab:hover, .stab.active { color: var(--indigo); border-bottom-color: var(--indigo); }

.service-detail { }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail-grid.reverse .sd-text { order: 2; }
.service-detail-grid.reverse .sd-visual { order: 1; }
.sd-icon-big { font-size: 2.5rem; margin-bottom: 1rem; }
.sd-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--gray-900);
}
.sd-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.sd-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.sd-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding-left: 1rem;
  position: relative;
}
.sd-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-weight: 700;
}
.sd-card-stack { display: flex; flex-direction: column; gap: 1rem; }
.sd-feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.alt-bg .sd-feature-card { background: var(--white); }
.sd-feature-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(75,75,225,0.12); }
.sd-feature-card > span { font-size: 1.75rem; flex-shrink: 0; }
.sd-feature-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}
.sd-feature-card p { font-size: 0.8rem; color: var(--gray-500); }

/* ================================================
   PRICING PAGE
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px var(--indigo), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--indigo), var(--accent-red));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--indigo);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
}
.price-dollar {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-500);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.35rem;
}
.price-main {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}
.price-cents {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-500);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.35rem;
}
.price-per {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  display: block;
  width: 100%;
  margin-top: 0.4rem;
}
.enterprise-price {
  font-size: 2.5rem !important;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.faq-item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.faq-item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.am-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
  line-height: 1.15;
}
.am-text > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.am-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.am-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}
.av-icon { font-size: 1.5rem; flex-shrink: 0; }
.am-value h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--gray-900); }
.am-value p { font-size: 0.8rem; color: var(--gray-500); }
.am-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.am-stat-card {
  background: var(--indigo);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.am-stat-card:nth-child(2) { background: var(--accent-green); }
.am-stat-card:nth-child(3) { background: var(--accent-red); }
.am-stat-card:nth-child(4) { background: var(--accent-yellow); }
.am-stat-card:nth-child(4) .am-num,
.am-stat-card:nth-child(4) > span:last-child { color: #1a1a1a; }
.am-stat-card:nth-child(5) { background: var(--indigo-dark); }
.am-stat-card:nth-child(6) { background: var(--gray-800); }
.am-stat-card:hover { transform: scale(1.03); }
.am-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.am-stat-card > span:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.diff-card:nth-child(1):hover { border-left: 4px solid var(--indigo); }
.diff-card:nth-child(2):hover { border-left: 4px solid var(--accent-yellow); }
.diff-card:nth-child(3):hover { border-left: 4px solid var(--accent-red); }
.diff-card:nth-child(4):hover { border-left: 4px solid var(--accent-green); }
.diff-card:nth-child(5):hover { border-left: 4px solid var(--indigo); }
.diff-card:nth-child(6):hover { border-left: 4px solid var(--accent-yellow); }
.diff-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.diff-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--gray-900); }
.diff-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.loc-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.loc-icon { font-size: 1.5rem; flex-shrink: 0; }
.loc-detail h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--gray-900); }
.loc-detail p, .loc-detail a {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.loc-detail a { color: var(--indigo); }
.location-map-placeholder { display: flex; align-items: center; justify-content: center; }
.map-card {
  background: linear-gradient(135deg, var(--indigo-pale), var(--white));
  border: 1px solid rgba(75,75,225,0.15);
  border-radius: var(--radius);
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.map-pin-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.map-pin-pulse {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(75,75,225,0.15);
  border-radius: 50%;
  animation: pinPulse 2s ease-in-out infinite;
}
.map-pin-icon { font-size: 2.5rem; position: relative; z-index: 1; }
@keyframes pinPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.4); opacity: 0.2; } }
.map-label { text-align: center; }
.map-label strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.map-label span { font-size: 0.85rem; color: var(--gray-500); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(75,75,225,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
/* checkbox-item styles replaced by .svc-card system */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.submit-icon { transition: transform 0.2s; }
.form-submit:hover .submit-icon { transform: translateX(4px); }
.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #065f46;
}
.form-success.show { display: flex; }
.form-success span { font-size: 1.5rem; flex-shrink: 0; }
.form-success strong { display: block; font-weight: 700; margin-bottom: 0.25rem; }

/* Contact info sidebar */
.ci-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.ci-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ci-icon { font-size: 1.25rem; flex-shrink: 0; }
.ci-item h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 0.3rem; }
.ci-item p, .ci-item a { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }
.ci-item a { color: var(--indigo); }
.ci-promise {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--indigo-pale);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(75,75,225,0.15);
  margin-bottom: 1rem;
}
.ci-promise-icon { font-size: 1.5rem; flex-shrink: 0; }
.ci-promise h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--gray-900); }
.ci-promise p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }
.cr-badge {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}
.ci-services-list h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.ci-services-list ul { display: flex; flex-direction: column; gap: 0.5rem; }
.ci-services-list li { font-size: 0.85rem; color: var(--gray-700); }

/* ================================================
   SOLUTIONS PAGE
   ================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75,75,225,0.2);
}
.sol-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.solution-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--gray-900); }
.solution-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.sol-tags li {
  background: var(--indigo-pale);
  color: var(--indigo);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-family: var(--font-display);
}
.solution-card:nth-child(2) .sol-tags li { background: var(--accent-yellow-light); color: #7a5c00; }
.solution-card:nth-child(3) .sol-tags li { background: var(--accent-green-light); color: #00613c; }
.solution-card:nth-child(4) .sol-tags li { background: var(--accent-red-light); color: #b91c1c; }
.solution-card:nth-child(6) .sol-tags li { background: var(--accent-yellow-light); color: #7a5c00; }
.solution-card:nth-child(7) .sol-tags li { background: var(--accent-green-light); color: #00613c; }
.solution-card:nth-child(8) .sol-tags li { background: var(--accent-red-light); color: #b91c1c; }
.sol-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--indigo);
  transition: gap 0.2s;
}
.sol-link:hover { text-decoration: underline; }

/* Integrations */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.int-badge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.int-badge:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ================================================
   RESPONSIVE — Tablet (768–1024px)
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .wg-content { grid-template-columns: 1fr; gap: 3rem; }
  .wg-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero { flex-direction: column; padding-top: calc(var(--nav-h) + 3rem); gap: 3rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 360px; }
  .hero-scroll-indicator { display: none; }
  .hero-device { width: 100%; max-width: 320px; margin: 0 auto; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-grid.reverse .sd-text { order: unset; }
  .service-detail-grid.reverse .sd-visual { order: unset; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .am-stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ================================================
   RESPONSIVE — Mobile (<768px)
   ================================================ */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-bottom-nav { display: flex; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 200px; height: 200px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .am-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .wg-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .device-ring { display: none; }
  .sd-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-device { width: 280px; }
  .page-hero h1 { font-size: 2rem; }
  .am-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}

/* Accent eyebrows for service detail sections */
#it .section-eyebrow { background: var(--accent-green-light); color: #00613c; }
#security .section-eyebrow { background: var(--accent-red-light); color: #b91c1c; }
#internet .section-eyebrow { background: var(--accent-yellow-light); color: #7a5c00; }
#web .section-eyebrow { background: var(--accent-green-light); color: #00613c; }
/* Cr-badge keep green */
.cr-badge { background: var(--accent-green); }
/* Map pin pulse use accent */
.map-pin-pulse { background: rgba(75,75,225,0.15); }
/* About diff icons */
.diff-card:nth-child(2) .diff-icon { filter: drop-shadow(0 0 6px var(--accent-yellow)); }
.diff-card:nth-child(3) .diff-icon { filter: drop-shadow(0 0 6px var(--accent-red)); }
.diff-card:nth-child(4) .diff-icon { filter: drop-shadow(0 0 6px var(--accent-green)); }
/* Hero bar in device */
.bar:nth-child(odd) { background: var(--indigo); }
.bar:nth-child(even) { background: var(--accent-yellow); }
.bar:nth-child(3n) { background: var(--accent-green); }
.bar:nth-child(6n) { background: var(--accent-red); }
/* WG card accent icons */
.wg-card:nth-child(1) .wg-card-icon { filter: drop-shadow(0 0 4px var(--accent-yellow)); }
.wg-card:nth-child(2) .wg-card-icon { filter: drop-shadow(0 0 4px var(--accent-red)); }
.wg-card:nth-child(3) .wg-card-icon { filter: drop-shadow(0 0 4px var(--accent-green)); }
.wg-card:nth-child(4) .wg-card-icon { filter: drop-shadow(0 0 4px var(--accent-yellow)); }

/* ================================================
   MONOCHROMATIC ICONS
   ================================================ */
/* Render emoji as text (monochromatic) via font variation */
.service-icon,
.si,
.sd-icon-big,
.sol-icon,
.diff-icon,
.wg-card-icon,
.ci-icon,
.loc-icon,
.av-icon,
.mbn-icon,
.strip-item,
.am-value .av-icon,
.ci-promise-icon {
  font-style: normal;
  filter: grayscale(1) contrast(0);
  /* Force monochrome using invert trick for dark icons */
}

/* Use a pseudo-element approach for section icons */
.service-icon { filter: grayscale(1) brightness(0.3); opacity: 0.85; }
.si { filter: grayscale(1) brightness(0.3); }
.sd-icon-big { filter: grayscale(1) brightness(0.35); font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.sol-icon { filter: grayscale(1) brightness(0.3); }
.diff-icon { filter: none !important; color: var(--indigo); font-style: normal; }
.wg-card-icon { filter: grayscale(1) brightness(2.5); }
.ci-icon { filter: grayscale(1) brightness(0.35); }
.loc-icon { filter: grayscale(1) brightness(0.35); }
.av-icon { filter: grayscale(1) brightness(0.35); }
.ci-promise-icon { filter: grayscale(1) brightness(0.35); }

/* Strip items keep icon but desaturate */
.strip-item { filter: none; }

/* Mobile nav icons - keep them clean monochrome */
.mbn-icon { filter: grayscale(1) brightness(0.4); font-size: 1.25rem; }
.mbn-cta .mbn-icon { filter: grayscale(1) brightness(10); }
.mbn-item.active .mbn-icon { filter: grayscale(1) brightness(0.3); }

/* WG cards on indigo bg need light icons */
.wg-card .wg-card-icon { filter: grayscale(1) brightness(10) !important; }

/* Feature cards (sd-feature-card) icons */
.sd-feature-card > span:first-child { filter: grayscale(1) brightness(0.3); font-size: 1.75rem; flex-shrink: 0; }

/* Screen icon cards in hero device */
.screen-icon-card .si { filter: grayscale(1) brightness(0.35); }

/* Form checkboxes */
.checkbox-item span:first-of-type { filter: grayscale(1) brightness(0.35); }

/* Location / contact icons */
.footer-contact-list li,
.drawer-contact p { filter: none; } /* keep context text normal */

/* Solution card and CI service list icons */
.ci-services-list li { filter: none; }

/* ================================================
   LEGAL PAGES (Privacy, Terms, Accessibility)
   ================================================ */
.legal-hero { padding-bottom: 3rem; }
.legal-hero p { color: var(--gray-400); font-size: 0.9rem; }

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

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sticky TOC Sidebar */
.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.legal-toc h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.legal-toc ol li { counter-increment: toc; }
.legal-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}
.legal-toc ol li a::before {
  content: counter(toc);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-pale);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-toc ol li a:hover {
  background: var(--indigo-pale);
  color: var(--indigo);
}

/* Article body */
.legal-body { max-width: 800px; }

.legal-intro-card {
  background: var(--indigo-pale);
  border-left: 4px solid var(--indigo);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}
.legal-intro-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
}

.legal-body section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
.legal-body section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  letter-spacing: -0.02em;
}
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 1.5rem 0 0.6rem;
}
.legal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.legal-body a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-body a:hover { color: var(--indigo-dark); }
.legal-body strong { color: var(--gray-800); font-weight: 700; }

.legal-contact-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 2;
  color: var(--gray-700);
  margin: 1rem 0;
}

/* Footer active link */
.footer-bottom-links a.active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ADA page specific */
.ada-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.ada-intro-card { border-left-color: var(--indigo); }

.ada-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.ada-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ada-feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ada-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  filter: grayscale(1) brightness(0.3);
}
.ada-feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.4rem !important;
}
.ada-feature-card p {
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  color: var(--gray-500) !important;
  margin: 0 !important;
}

.ada-compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.ada-compat-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.ada-compat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}
.ada-compat-item ul {
  padding-left: 1rem;
  gap: 0.35rem;
}
.ada-compat-item li { font-size: 0.825rem !important; }

/* Responsive legal pages */
@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 200px 1fr; gap: 2.5rem; }
  .ada-features-grid { grid-template-columns: 1fr 1fr; }
  .ada-compat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; margin-bottom: 2rem; }
  .ada-features-grid { grid-template-columns: 1fr; }
  .ada-compat-grid { grid-template-columns: 1fr; }
}

/* ================================================
   CONTACT FORM — Redesigned Service Cards &
   New Form Elements
   ================================================ */

/* Form section blocks */
.form-section {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.2s;
}
.form-section:focus-within { border-color: rgba(75,75,225,0.25); }
.form-section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-section-hint {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: -0.5rem 0 0;
  line-height: 1.4;
}

/* Required star */
.req { color: var(--accent-red); font-weight: 700; }

/* Field hint text */
.field-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
  display: block;
}

/* Field error */
.field-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-red);
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: -0.25rem;
}

/* Input error state */
.input-error {
  border-color: var(--accent-red) !important;
  box-shadow: 0 0 0 3px rgba(250,75,50,0.1) !important;
}

/* Narrower state col */
.form-group-sm { flex: 0 0 80px !important; min-width: 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row:has(.form-group-sm) { grid-template-columns: 1fr 80px 1fr; }

/* Form error banner */
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #991b1b;
  margin-bottom: 1.5rem;
}
.form-error > span { font-size: 1.25rem; flex-shrink: 0; }
.form-error strong { display: block; font-weight: 700; margin-bottom: 0.25rem; }
.form-error p { font-size: 0.8rem; color: #b91c1c; margin: 0; }

/* Seats section animate in */
.section-entering {
  animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Service checkbox cards ── */
.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--white);
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  user-select: none;
  text-align: center;
}
.svc-card:hover {
  border-color: var(--indigo-light);
  background: var(--indigo-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.svc-card:active { transform: translateY(0); }

/* Hidden native checkbox */
/* Hidden visually — pointer-events must stay enabled so
   the <label> wrapper can natively toggle the checkbox on click */
.svc-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  /* NO pointer-events:none here — removing it lets the label work */
}

/* Floating check badge (top-right corner) */
.svc-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.svc-check-icon {
  width: 10px; height: 10px;
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--white);
}

/* Service SVG icon */
.svc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.svc-svg {
  width: 24px; height: 24px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.svc-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-800);
  transition: color 0.2s;
  line-height: 1.2;
}
.svc-sub {
  font-size: 0.68rem;
  color: var(--gray-400);
  transition: color 0.2s;
  line-height: 1;
}

/* Selected state */
.svc-card.svc-selected {
  border-color: var(--indigo);
  background: var(--indigo-pale);
  box-shadow: 0 0 0 3px rgba(75,75,225,0.12), var(--shadow);
}
.svc-card.svc-selected .svc-check {
  border-color: var(--indigo);
  background: var(--indigo);
}
.svc-card.svc-selected .svc-check-icon { opacity: 1; }
.svc-card.svc-selected .svc-icon-wrap {
  background: var(--indigo);
}
.svc-card.svc-selected .svc-svg { color: var(--white); }
.svc-card.svc-selected .svc-name { color: var(--indigo); }
.svc-card.svc-selected .svc-sub  { color: var(--indigo-light); }

/* Per-service accent colors on selected */
.svc-card[data-service="it"].svc-selected       { border-color: var(--accent-green); background: var(--accent-green-light); box-shadow: 0 0 0 3px rgba(0,200,125,0.12), var(--shadow); }
.svc-card[data-service="it"].svc-selected .svc-check { border-color: var(--accent-green); background: var(--accent-green); }
.svc-card[data-service="it"].svc-selected .svc-icon-wrap { background: var(--accent-green); }
.svc-card[data-service="it"].svc-selected .svc-name { color: #00613c; }
.svc-card[data-service="it"].svc-selected .svc-sub  { color: #00a066; }

.svc-card[data-service="security"].svc-selected  { border-color: var(--accent-red); background: var(--accent-red-light); box-shadow: 0 0 0 3px rgba(250,75,50,0.12), var(--shadow); }
.svc-card[data-service="security"].svc-selected .svc-check { border-color: var(--accent-red); background: var(--accent-red); }
.svc-card[data-service="security"].svc-selected .svc-icon-wrap { background: var(--accent-red); }
.svc-card[data-service="security"].svc-selected .svc-name { color: #b91c1c; }
.svc-card[data-service="security"].svc-selected .svc-sub  { color: #dc2626; }

.svc-card[data-service="internet"].svc-selected  { border-color: var(--accent-yellow); background: var(--accent-yellow-light); box-shadow: 0 0 0 3px rgba(250,200,75,0.18), var(--shadow); }
.svc-card[data-service="internet"].svc-selected .svc-check { border-color: #b8861e; background: var(--accent-yellow); }
.svc-card[data-service="internet"].svc-selected .svc-check-icon { color: #7a5c00; }
.svc-card[data-service="internet"].svc-selected .svc-icon-wrap { background: var(--accent-yellow); }
.svc-card[data-service="internet"].svc-selected .svc-svg { color: #7a5c00; }
.svc-card[data-service="internet"].svc-selected .svc-name { color: #7a5c00; }
.svc-card[data-service="internet"].svc-selected .svc-sub  { color: #b8861e; }

.svc-card[data-service="web"].svc-selected { border-color: var(--accent-green); background: var(--accent-green-light); box-shadow: 0 0 0 3px rgba(0,200,125,0.12), var(--shadow); }
.svc-card[data-service="web"].svc-selected .svc-check { border-color: var(--accent-green); background: var(--accent-green); }
.svc-card[data-service="web"].svc-selected .svc-icon-wrap { background: var(--accent-green); }
.svc-card[data-service="web"].svc-selected .svc-name { color: #00613c; }
.svc-card[data-service="web"].svc-selected .svc-sub  { color: #00a066; }

/* ── Terms checkbox ── */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}
.terms-checkbox:hover { border-color: var(--indigo-light); background: var(--indigo-pale); }
.terms-checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.terms-box {
  width: 22px; height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}
.terms-check-icon {
  width: 12px; height: 12px;
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--white);
}
.terms-checkbox:has(input:checked) .terms-box {
  border-color: var(--indigo);
  background: var(--indigo);
}
.terms-checkbox:has(input:checked) .terms-check-icon { opacity: 1; }
.terms-checkbox:has(input:checked) { border-color: var(--indigo); background: var(--indigo-pale); }

.terms-error { border-color: var(--accent-red) !important; background: #fef2f2 !important; }

.terms-text {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.terms-text a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }

/* Submit button spinner */
.submit-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.35rem;
}
.submit-spinner svg { animation: spin 0.75s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 768px) {
  .service-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row:has(.form-group-sm) { grid-template-columns: 1fr 1fr; }
  .form-row:has(.form-group-sm) .form-group-sm { grid-column: span 1; }
}
@media (max-width: 480px) {
  .service-checkbox-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .form-section { padding: 1.25rem; }
  .svc-card { padding: 1rem 0.5rem 0.85rem; }
  .svc-icon-wrap { width: 38px; height: 38px; }
  .svc-svg { width: 20px; height: 20px; }
}
