/* ═══════════════════════════════════════════════════════
   COWBOY MSP — Main Stylesheet
   cowboymsp.com
═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-dark: #4c1d95;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-dark: #1e3a8a;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --black: #060612;
  --dark: #0d0d1a;
  --dark2: #13132a;
  --dark3: #1a1a35;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(124,58,237,0.25);
  --glow: 0 0 40px rgba(124,58,237,0.4);
  --glow-blue: 0 0 40px rgba(37,99,235,0.4);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── CANVAS BACKGROUND ── */
#sparkle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── GRID OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Mobile Optimized - Home Web Testomonial */
.web-design-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(37,99,235,0.06));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius);
  padding: 3rem;
}

@media (max-width: 768px) {
  .web-design-inner {
    grid-template-columns: 1fr;
  }

  .web-design-testimonial {
    margin-top: 1.5rem;
  }
} 

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,6,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(6,6,18,0.97);
  box-shadow: 0 4px 40px rgba(124,58,237,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(124,58,237,0.2);
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--blue)) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(124,58,237,0.6) !important;
}

/* ── DROPDOWNS ── */
.dropdown { position: relative; }
.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 2px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  min-width: 220px;
  padding-top: 12px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu-inner {
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.15);
}
.dropdown-menu-inner a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1rem;
  border-radius: 9px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-menu-inner a i {
  width: 16px;
  color: var(--purple-light);
  flex-shrink: 0;
}
.dropdown-menu-inner a:hover {
  background: rgba(124,58,237,0.15);
  color: #fff;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { background: rgba(124,58,237,0.15); }
.mobile-menu a img { width: 18px; height: 18px; }

/* ── MOBILE ACCORDION ── */
.mobile-accordion { display: flex; flex-direction: column; }
.mobile-accordion-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  width: 100%;
}
.mobile-accordion-toggle:hover { background: rgba(124,58,237,0.15); }
.mobile-accordion-toggle .accordion-arrow { margin-left: auto; transition: transform 0.25s ease; }
.mobile-accordion-body {
  display: none;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(124,58,237,0.3);
  margin-left: 1rem;
  margin-bottom: 0.25rem;
}
.mobile-accordion-body.open { display: flex; }
.mobile-accordion-body a { font-size: 0.95rem; padding: 0.7rem 1rem; }

/* ── PAGES ── */
.page { display: none; padding-top: 72px; position: relative; z-index: 1; min-height: 100vh; }
.page.active { display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse-ring { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.5} 50%{transform:translate(-50%,-50%) scale(1.2);opacity:0.8} }
@keyframes floatRandom {
  0%{transform:translate(0,0) rotate(0deg);opacity:0.06}
  33%{transform:translate(var(--dx,30px),var(--dy,-50px)) rotate(120deg);opacity:0.12}
  66%{transform:translate(calc(var(--dx,30px) * -1),var(--dy,-50px)) rotate(240deg);opacity:0.08}
  100%{transform:translate(0,0) rotate(360deg);opacity:0.06}
}

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.orb1 { width: 600px; height: 600px; background: var(--purple); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: var(--blue); bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.orb3 { width: 300px; height: 300px; background: var(--purple-dark); top: 30%; left: 20%; animation: float 12s ease-in-out infinite 2s; }

.orb4 { width: 600px; height: 600px; background: var(--purple); top: -300px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb5 { width: 400px; height: 400px; background: var(--blue); bottom: -500px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.orb6 { width: 300px; height: 300px; background: var(--purple-dark); bottom: 30%; left: 20%; animation: float 12s ease-in-out infinite 2s; }

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge img { width: 14px; height: 14px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--purple-light), var(--blue-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s linear infinite;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-trust {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge img { width: 14px; height: 14px; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,0.7); }
.btn-primary img { width: 16px; height: 16px; filter: brightness(10); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: var(--purple); background: rgba(124,58,237,0.1); }

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  background: var(--dark);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--dark2); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.stat-number.plus::after {
  content: "+";
}

.stat-number.percent::after {
  content: "%";
}

.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 30px;
  background: var(--purple-light);
  opacity: 0.5;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-break: break-word;
  hyphens: auto;
}
.section-title span {
  background: linear-gradient(90deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin-bottom: 3rem; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card a {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(37,99,235,0.04));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card:hover { border-color: var(--purple); transform: translateY(-6px); box-shadow: var(--glow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-icon img { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--purple), var(--blue)); box-shadow: 0 0 25px rgba(124,58,237,0.5); }
.service-card:hover .service-icon img { filter: brightness(10); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; position: relative; z-index: 1; }

/* ── TECH LOGOS SCROLL ── */
.tech-scroll-section {
  padding: 4rem 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tech-scroll-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}
.tech-track {
  display: flex;
  gap: 3rem;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}
.tech-track2 {
  animation-direction: reverse;
  animation-duration: 20s;
}
.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  opacity: 0.6;
  transition: var(--transition);
  cursor: default;
}
.tech-logo:hover { opacity: 1; }
.tech-logo-icon {
  width: 60px; height: 60px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.tech-logo-icon img { width: 36px; height: 36px; object-fit: contain; }
.tech-logo:hover .tech-logo-icon { border-color: var(--purple); box-shadow: 0 0 20px rgba(124,58,237,0.3); }
.tech-logo span { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.process-step:hover { border-color: var(--purple); transform: translateY(-4px); }
.process-step a { position: relative; z-index: 2; cursor: pointer; }
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step-icon img { width: 40px; height: 40px; }
.process-step h3 { font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ── COVERAGE ── */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.city-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  color: var(--text);
  text-decoration: none;
}
.city-tag:hover { border-color: var(--purple); background: rgba(124,58,237,0.1); color: var(--text); }
.city-tag img { width: 14px; height: 14px; }

.coverage-visual {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coverage-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}
.map-placeholder {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  display: block;
}
.map-placeholder img { width: 100%; max-width: 300px; height: auto; }
.coverage-radius {
  position: relative; z-index: 1;
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7;
}
/*disclaimer-container*/
  .disclaimer-container {
    max-width: 800px;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-company { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1px 0;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.cta-inner p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PRICING ── */
.pricing-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(37,99,235,0.05));
  box-shadow: var(--glow);
}
.pricing-card:hover { transform: translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}
.tier-range {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--purple-light);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.tier-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.tier-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.price-dollar { font-size: 1.2rem; margin-top: 8px; color: var(--text-muted); }
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.price-unit { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; align-self: flex-end; }
.tier-savings {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tier-savings img { width: 12px; height: 12px; }
.tier-features { list-style: none; margin-bottom: 2rem; }
.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.tier-features li img { width: 14px; height: 14px; flex-shrink: 0; }

/* ── PRICING TABLE ── */
.pricing-table-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-table th {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.1));
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  transition: var(--transition);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(124,58,237,0.08); }
.pricing-table .price-col {
  font-family: 'JetBrains Mono', monospace;
  color: var(--purple-light);
  font-weight: 700;
}
.pricing-table .range-col { color: var(--text-muted); }
.pricing-table .featured-row td { background: rgba(124,58,237,0.1); }

/* ── CALCULATOR ── */
.calc-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 0 2rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.calc-header {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-header img { width: 20px; height: 20px; filter: brightness(10); }
.calc-body { padding: 2rem; }
.calc-input-group { margin-bottom: 1.5rem; }
.calc-label { display: block; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 500; }
.calc-input {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.calc-input:focus { border-color: var(--purple); box-shadow: 0 0 15px rgba(124,58,237,0.2); }
.calc-slider { -webkit-appearance: none; appearance: none; height: 6px; background: var(--dark3); border-radius: 3px; border: none; padding: 0; }
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(124,58,237,0.5);
}
.calc-result {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.08));
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.calc-result-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 0.5rem; }
.calc-result-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(90deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}
.calc-result-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
}
.about-logo-display {
  text-align: center;
  margin-bottom: 1.5rem;
}
.about-logo-display img {
  width: 220px;
  height: auto;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-icon-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}
.about-icon-item:hover { border-color: var(--purple); }
.about-icon-item img { width: 28px; height: 28px; margin-bottom: 0.5rem; display: block; margin-left: auto; margin-right: auto; }
.about-icon-item span { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; }
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(245,158,11,0.3);
  animation: float 6s ease-in-out infinite;
}
.badge-tl { top: -20px; right: 20px; }
.badge-br { bottom: -20px; left: 20px; animation-delay: 3s; }

.value-list { list-style: none; margin-top: 2rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.value-item:last-child { border-bottom: none; }
.value-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon img { width: 20px; height: 20px; }
.value-item h4 { font-weight: 700; margin-bottom: 0.25rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon img { width: 22px; height: 22px; }
.contact-detail h4 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.contact-detail a:hover { color: var(--purple-light); }

.contact-form {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 15px rgba(124,58,237,0.2);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}
.form-success img { width: 48px; height: 48px; margin: 0 auto 1rem; display: block; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.legal-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.legal-date { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 3rem; }
.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-light);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.9rem; }
.legal-content ul { color: var(--text-muted); line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; font-size: 0.9rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--purple-light); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 260px; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}
.social-link img { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--purple); background: rgba(124,58,237,0.2); color: #fff; }
.footer-col h4 {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
}
.footer-links a:hover { color: var(--purple-light); }
.footer-links img { width: 10px; height: 10px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { color: var(--text-muted); font-size: 0.8rem; }
.footer-copyright a {
  color: var(--purple-light);
  text-decoration: none;
  transition: var(--transition);
}
.footer-copyright a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--purple-light); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 500;
}
.back-top img { width: 16px; height: 16px; filter: brightness(10); }
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── NOTIFICATION ── */
.notification {
  position: fixed;
  bottom: 2rem; left: 2rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 2rem 1rem 1.25rem;
  max-width: 300px;
  z-index: 600;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.notification.show { transform: translateX(0); }
.notif-close:hover { color: var(--text) !important; }
.notif-icon img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.notif-text strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.notif-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ── FLOATING ICONS ── */
.floating-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float-icon {
  position: absolute;
  opacity: 0.08;
  animation: floatRandom var(--dur, 15s) ease-in-out infinite var(--delay, 0s);
}
.float-icon img { width: 40px; height: 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .coverage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Hide decorative lines on section labels for mobile */
  .section-label::before, .section-label::after { display: none; }
  .section-label { padding: 0.25rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 0.5rem; }
  /* prevent services grid from forcing wide min-width on small screens */
  .services-grid { grid-template-columns: 1fr; }
  /* stack pricing cards */
  .pricing-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  /* hero padding tighter on tablet */
  .hero { padding: 3rem 1.25rem; }
  /* orbs must not bleed */
  .orb1 { width: 300px; height: 300px; }
  .orb2 { width: 250px; height: 250px; }
  .orb3 { width: 200px; height: 200px; }
  /* coverage visual hidden on mobile to save space */
  .coverage-visual { display: none; }
  /* cities list single column on phones */
  .cities-list { grid-template-columns: 1fr 1fr; }
  /* about visual hidden on mobile */
  .about-visual { display: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 2.5rem 1rem; }
  .section-sm { padding: 2rem 1rem; }
  .pricing-grid { padding: 0 0.75rem; }
  .back-top { bottom: 1rem; right: 1rem; }
  .notification { display: none; }
  /* hero tighter on small phones */
  .hero { padding: 2.5rem 1rem; min-height: auto; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; justify-content: center; }
  /* hide floating background icons — they can bleed on very small screens */
  .floating-icons { display: none; }
  /* cities list two columns on very small phones */
  .cities-list { grid-template-columns: 1fr 1fr; }
  /* process steps single column */
  .process-steps { grid-template-columns: 1fr; }
  /* testimonials single column */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* section label and title responsive fixes */
  .section-label { padding: 0; margin-bottom: 0.75rem; font-size: 0.7rem; letter-spacing: 1px; }
  .section-title { font-size: clamp(1.25rem, 5vw, 2.5rem); }
  .section-sub { font-size: 0.95rem; }
  /* cta banner padding */
  .cta-banner { margin: 1rem; border-radius: 16px; }
  .cta-inner { padding: 2rem 1.25rem; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 680px;
  background: var(--surface, #1a1a2e);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.15);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
  flex-wrap: wrap;
}

#cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#cookie-banner.hiding {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}

.cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text, #fff);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.cookie-text p {
  font-size: 0.78rem;
  color: var(--text-muted, #9ca3af);
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--purple-light, #a78bfa);
  text-decoration: none;
}

.cookie-text a:hover { text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--purple, #7c3aed), var(--blue, #3b82f6));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.cookie-btn-accept:hover { opacity: 0.88; transform: translateY(-1px); }

@media (max-width: 520px) {
  #cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(120px);
    border-radius: 14px 14px 0 0;
  }
  #cookie-banner.visible { transform: translateY(0); }
  #cookie-banner.hiding  { transform: translateY(120px); }
  .cookie-btns { width: 100%; justify-content: flex-end; }
}


/* ══════════════════════════════════════════════════════════════
   INTAKE FORM — shared by cowboy-intake.html & cowboy-intake-pro.html
   ══════════════════════════════════════════════════════════════ */
/* ── CSS VARIABLES (matches site) ── */
    :root {
      --purple: #7c3aed;
      --purple-light: #a855f7;
      --purple-dark: #4c1d95;
      --blue: #2563eb;
      --blue-light: #60a5fa;
      --blue-dark: #1e3a8a;
      --gold: #f59e0b;
      --gold-light: #fcd34d;
      --black: #060612;
      --dark: #0d0d1a;
      --dark2: #13132a;
      --dark3: #1a1a35;
      --text: #e2e8f0;
      --text-muted: #94a3b8;
      --border: rgba(124,58,237,0.25);
      --border-solid: rgba(124,58,237,0.4);
      --glow: 0 0 40px rgba(124,58,237,0.4);
      --radius: 16px;
      --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--black);
      color: var(--text);
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* ── SPARKLE CANVAS ── */
    #sparkle-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    /* ── GRID OVERLAY (matches site) ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── SCROLL PROGRESS ── */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--blue), var(--gold));
      z-index: 9999;
      transition: width 0.1s linear;
      width: 0%;
    }



    /* ── HERO ── */
    .intake-hero {
      padding-top: 140px; /* 72px nav + ~52px progress bar + 16px breathing room */
      position: relative;
      overflow: hidden;
      text-align: center;
      padding-bottom: 3rem;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .orb1 { width:500px;height:500px;background:var(--purple);top:-200px;right:-100px;opacity:0.3; }
    .orb2 { width:350px;height:350px;background:var(--blue);bottom:-150px;left:-80px;opacity:0.25; }
    .orb3 { width:250px;height:250px;background:var(--purple-dark);top:40%;left:10%;opacity:0.2; }
    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 3rem 2rem 1rem;
      max-width: 800px;
      margin: 0 auto;
    }
    /* .hero-badge from /assets/style.css */
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      letter-spacing: 3px;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .hero-title span {
      background: linear-gradient(90deg, var(--purple-light), var(--blue-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200%;
      animation: shimmer 4s linear infinite;
    }
    .hero-sub {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }

    /* ── PROGRESS BAR ── */
    .progress-wrap {
      position: fixed;
      top: 72px; /* sits flush under the 72px navbar */
      left: 0; right: 0;
      z-index: 999; /* just below navbar z-index 1000 */
      background: rgba(6,6,18,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0.6rem 2rem;
    }
    .progress-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.4rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .progress-pct { color: var(--gold); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
    .progress-bar-track {
      background: rgba(124,58,237,0.15);
      border-radius: 99px;
      height: 4px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .progress-bar-fill {
      background: linear-gradient(90deg, var(--purple), var(--blue), var(--gold));
      height: 100%;
      border-radius: 99px;
      transition: width 0.4s ease;
      width: 0%;
    }

    /* ── MAIN LAYOUT ── */
    .form-wrap {
      max-width: 940px;
      margin: 0 auto;
      padding: 2rem 1.5rem 5rem;
      position: relative;
      z-index: 1;
    }

    /* ── SAVE BANNER ── */
    .save-banner {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.85rem 1.25rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.85rem;
    }
    .save-left { display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); }
    .save-left i { color: var(--purple-light); }
    .save-status { color: var(--gold); font-weight: 600; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }
    .btn-clear {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 0.35rem 0.9rem;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.8rem;
      font-family: 'Outfit', sans-serif;
      transition: var(--transition);
    }
    .btn-clear:hover { border-color: var(--purple); color: var(--purple-light); }

    /* ── INSTRUCTIONS ── */
    .instructions {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-left: 3px solid var(--purple-light);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
    }
    .instructions-title {
      color: var(--purple-light);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .instructions ol {
      padding-left: 1.2rem;
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.9;
    }

    /* ── RETURN BANNER (magic link) ── */
    .return-banner {
      display: none;
      background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.08));
      border: 1px solid rgba(37,99,235,0.5);
      border-left: 4px solid var(--blue-light);
      border-radius: var(--radius);
      padding: 1.1rem 1.4rem;
      margin-bottom: 1.5rem;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .return-banner.visible { display: flex; }
    .return-banner-icon { font-size: 1.6rem; color: var(--blue-light); flex-shrink: 0; }
    .return-banner-text { flex: 1; }
    .return-banner-text strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 0.2rem; }
    .return-banner-text span { color: var(--text-muted); font-size: 0.83rem; }
    .return-token {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      color: var(--gold);
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.25);
      border-radius: 6px;
      padding: 0.15rem 0.5rem;
    }

    /* ── LOADING OVERLAY ── */
    .loading-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(6,6,18,0.85);
      backdrop-filter: blur(8px);
      z-index: 9000;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
    }
    .loading-overlay.visible { display: flex; }
    .loading-spinner {
      width: 48px; height: 48px;
      border: 3px solid var(--border);
      border-top-color: var(--purple-light);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .loading-overlay p {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-family: 'JetBrains Mono', monospace;
    }

    /* ── SETUP CALLOUT ── */
    .setup-callout {
      background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(37,99,235,0.05));
      border: 1px solid var(--border-solid);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
    .setup-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .setup-callout p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; line-height: 1.7; }
    .setup-callout ol {
      padding-left: 1.2rem;
      color: var(--text);
      font-size: 0.88rem;
      line-height: 2;
    }
    .setup-callout code {
      font-family: 'JetBrains Mono', monospace;
      background: rgba(124,58,237,0.15);
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 0.1rem 0.4rem;
      font-size: 0.82em;
      color: var(--purple-light);
    }
    .setup-phase {
      background: rgba(0,0,0,0.2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.1rem 1.25rem;
      margin: 1rem 0;
    }
    .setup-phase-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .setup-steps { padding-left: 1.2rem; color: var(--text); font-size: 0.85rem; line-height: 1.9; }
    .setup-steps li { margin-bottom: 0.4rem; }
    .setup-steps ul { color: var(--text-muted); margin: 0.3rem 0; }
    .col-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin: 0.5rem 0;
      font-size: 0.82rem;
    }
    .col-row {
      display: contents;
    }
    .col-row span {
      padding: 0.35rem 0.75rem;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid var(--border);
    }
    .col-row.col-header span {
      background: rgba(124,58,237,0.2);
      color: var(--purple-light);
      font-weight: 600;
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
    }
    .url-row {
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .url-row > div { flex: 1; min-width: 200px; }
    .url-row small { display: block; color: var(--text-muted); font-size: 0.75rem; margin-top: 0.3rem; }

    /* ── FORM SECTION ── */
    .form-section {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }
    .form-section:hover { border-color: var(--border-solid); }
    .section-header {
      background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.08));
      border-bottom: 1px solid var(--border);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    .section-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      background: rgba(245,158,11,0.1);
      border: 1px solid rgba(245,158,11,0.3);
      border-radius: 6px;
      padding: 0.2rem 0.5rem;
      white-space: nowrap;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 2px;
      color: #fff;
    }
    .section-desc {
      padding: 0.75rem 1.5rem 0;
      color: var(--text-muted);
      font-size: 0.83rem;
      font-style: italic;
    }
    .section-body { padding: 1.25rem 1.5rem 1.5rem; }

    /* ── FIELDS ── */
    .field-group { margin-bottom: 1.15rem; }
    .field-group:last-child { margin-bottom: 0; }

    .field-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.3rem;
    }
    .field-label .req { color: var(--gold); margin-left: 2px; }
    .field-hint {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
      font-style: italic;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    select,
    textarea {
      width: 100%;
      background: rgba(6,6,18,0.7);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      padding: 0.65rem 0.9rem;
      transition: var(--transition);
      outline: none;
    }
    input::placeholder, textarea::placeholder { color: rgba(148,163,184,0.5); }
    input:focus, select:focus, textarea:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.15), var(--glow);
    }
    textarea { resize: vertical; min-height: 90px; }
    select { cursor: pointer; }
    select option { background: var(--dark); }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    @media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

    /* ── RADIO / CHECKBOX ── */
    .radio-group, .check-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.3rem;
    }
    .radio-group label, .check-group label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(6,6,18,0.6);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.4rem 0.85rem;
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: var(--transition);
    }
    .radio-group label:hover, .check-group label:hover {
      border-color: var(--purple);
      color: #fff;
      background: rgba(124,58,237,0.1);
    }
    .radio-group input[type="radio"],
    .check-group input[type="checkbox"] {
      width: auto;
      accent-color: var(--purple-light);
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    /* ── SERVICES TABLE ── */
    .services-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
    .services-table th {
      background: rgba(124,58,237,0.12);
      color: var(--purple-light);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.6rem 0.75rem;
      text-align: left;
      border: 1px solid var(--border);
    }
    .services-table td {
      border: 1px solid var(--border);
      padding: 0.45rem;
      vertical-align: top;
    }
    .services-table td input, .services-table td textarea {
      font-size: 0.83rem;
      padding: 0.4rem 0.6rem;
    }
    .services-table tr:nth-child(even) td { background: rgba(124,58,237,0.03); }
    .services-table td.img-note {
      color: var(--text-muted);
      font-size: 0.82rem;
      padding: 0.55rem 0.75rem;
      vertical-align: middle;
      line-height: 1.45;
    }
    .services-table td.img-note strong { color: var(--text); }
    .row-num {
      text-align: center;
      color: var(--purple-light);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.8rem;
      vertical-align: middle !important;
      padding: 0 !important;
    }

    /* ── TESTIMONIALS ── */
    .testimonial-block {
      background: rgba(6,6,18,0.5);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      margin-bottom: 0.75rem;
    }
    .testimonial-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      color: var(--gold);
      margin-bottom: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ── DIVIDER ── */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 1.25rem 0;
    }

    /* ── BUTTONS ── */
    /* .btn-primary base from /assets/style.css — intake overrides only: */
    .btn-primary:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }
    .btn-sm {
      padding: 0.55rem 1.2rem !important;
      font-size: 0.88rem !important;
    }

    /* ── SUBMIT AREA ── */
    .submit-area {
      background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(37,99,235,0.06));
      border: 1px solid var(--border-solid);
      border-radius: var(--radius);
      padding: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .submit-area-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--purple-light);
      margin-bottom: 0.75rem;
    }
    .submit-area h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 3px;
      background: linear-gradient(90deg, #fff, var(--purple-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.75rem;
    }
    .submit-area p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; line-height: 1.7; }

    /* ── DOWNLOAD AREA ── */
    .download-area {
      background: rgba(0,0,0,0.25);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .download-area-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .download-area p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.25rem; }
    .download-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-download {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.75rem 1.75rem;
      border-radius: 10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 1.5px;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }
    .btn-pdf {
      background: linear-gradient(135deg, #dc2626, #991b1b);
      color: #fff;
    }
    .btn-pdf:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,38,38,0.4); }
    .btn-word {
      background: linear-gradient(135deg, #2563eb, #1e3a8a);
      color: #fff;
    }
    .btn-word:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }

    /* ── STATUS MESSAGES ── */
    .msg-box {
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin-top: 1rem;
      font-size: 0.9rem;
      display: none;
      text-align: left;
    }
    .msg-box.success {
      background: rgba(74,222,128,0.08);
      border: 1px solid rgba(74,222,128,0.3);
      color: #86efac;
      display: block;
    }
    .msg-box.error {
      background: rgba(239,68,68,0.08);
      border: 1px solid rgba(239,68,68,0.3);
      color: #fca5a5;
      display: block;
    }


    /* ── UPLOAD SUCCESS PANEL ── */
    .upload-panel {
      display: none;
      background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(37,99,235,0.06));
      border: 1px solid var(--border-solid);
      border-radius: var(--radius);
      padding: 2rem;
      margin-top: 1.5rem;
      text-align: center;
    }
    .upload-panel.visible { display: block; }
    .upload-panel-icon {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .upload-panel h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 2px;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .upload-panel p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .btn-upload {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #0078d4, #005a9e);
      color: #fff;
      text-decoration: none;
      padding: 1rem 2rem;
      border-radius: 12px;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 0 30px rgba(0,120,212,0.35);
      border: 1px solid rgba(0,120,212,0.5);
    }
    .btn-upload:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 50px rgba(0,120,212,0.55);
    }
    .upload-steps {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .upload-step {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .upload-step i { color: var(--purple-light); }
    .upload-folder-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.88rem;
      color: var(--gold);
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.2);
      border-radius: 8px;
      padding: 0.5rem 1rem;
      margin: 0 auto 1.25rem;
      display: block;
      width: fit-content;
    }

    /* ── SCROLL TO TOP ── */
    .scroll-top {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--purple), var(--blue));
      border: none;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow);
      z-index: 200;
      transition: var(--transition);
    }
    .scroll-top:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
    .scroll-top.visible { display: flex; }

    /* ── SUBSECTION LABEL ── */
    .sub-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 2px;
      color: var(--purple-light);
      margin: 1.25rem 0 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .sub-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
/* ── END INTAKE FORM ── */


/* ══════════════════════════════════════════════════════════════
   PAYMENT CONFIRMED — shared by payment-confirmed.html & payment-confirmed-pro.html
   ══════════════════════════════════════════════════════════════ */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
  }

  .thankyou-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }

  /* ── Success ring ─────────────────────────────────── */
  .success-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2);
    animation: pulse-ring 2s ease-in-out infinite;
  }

  .success-ring i { font-size: 3.2rem; color: #fff; }

  @keyframes pulse-ring {
    0%, 100% {
      box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 80px rgba(124,58,237,0.7), 0 0 160px rgba(124,58,237,0.3);
      transform: scale(1.04);
    }
  }

  /* ── Status badge ─────────────────────────────────── */
  .ty-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.4);
    color: #22c55e;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  /* ── Title ────────────────────────────────────────── */
  .ty-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    letter-spacing: 3px;
    color: var(--text);
    margin-bottom: 0.5rem;
  }

  .ty-title span {
    background: linear-gradient(135deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .ty-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    max-width: 540px;
  }

  /* ── Receipt box ──────────────────────────────────── */
  .ty-receipt {
    background: rgba(124,58,237,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .ty-receipt-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ty-receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(124,58,237,0.12);
    font-size: 14px;
    gap: 1rem;
  }

  .ty-receipt-row:last-child { border-bottom: none; }
  .ty-receipt-row .label { color: var(--text-muted); flex-shrink: 0; }
  .ty-receipt-row .value { color: var(--text); font-weight: 600; text-align: right; }

  /* ── What to expect cards ─────────────────────────── */
  .ty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .ty-card {
    background: rgba(124,58,237,0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: var(--transition);
  }

  .ty-card:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.12);
  }

  .ty-card i { font-size: 1.5rem; color: var(--purple-light); margin-bottom: 0.5rem; display: block; }
  .ty-card strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 0.2rem; font-weight: 600; }
  .ty-card span { font-size: 0.8rem; color: var(--text-muted); }

  /* ── Buttons ──────────────────────────────────────── */
  .ty-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .ty-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

  .ty-explore {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ty-explore a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
  }

  .ty-explore a:hover { color: var(--purple-light); }

  /* ── Next Steps section ───────────────────────────── */
  .next-steps {
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(59,130,246,0.06));
    border: 1px solid rgba(124,58,237,0.35);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .next-steps-heading {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.15rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .next-step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
  }

  .next-step-item:last-child { margin-bottom: 0; }

  .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .step-body strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .step-body p {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.55;
    margin: 0;
  }

  .step-body .step-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-top: 0.45rem;
  }

  .intake-cta-wrap {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
  }

  .btn-intake {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 24px rgba(124,58,237,0.35);
    transition: box-shadow 0.25s, transform 0.2s;
  }

  .btn-intake:hover {
    box-shadow: 0 6px 32px rgba(124,58,237,0.55);
    transform: translateY(-2px);
  }

  .zip-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: calc(var(--radius) - 4px);
    padding: 0.85rem 1rem;
    margin-top: 0.85rem;
  }

  .zip-note i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
  .zip-note span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
  .zip-note span strong { color: var(--text); }
/* ── END PAYMENT CONFIRMED ── */

/* ── INTAKE FORM v3 ADDITIONS ── */

/* Asset naming guide */
.asset-naming-guide {
  background: rgba(6,6,18,0.6);
  border: 1px solid rgba(124,58,237,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  margin: 0 0 1.25rem;
  font-size: 0.83rem;
}
.asset-name-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: nowrap;
}
.asset-name-row:last-child { border-bottom: none; }
.asset-name-row code {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold-light);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 5px;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 210px;
  line-height: 1.6;
}
.asset-name-row span {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 540px) {
  .asset-name-row { flex-wrap: wrap; gap: 0.3rem; }
  .asset-name-row code { min-width: unset; }
}

/* Service blocks */
.service-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}
.service-block .sub-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Checkbox grid */
.check-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.check-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.2rem 0;
}
.check-group label:hover { color: var(--text); }
.check-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--purple-light);
  flex-shrink: 0;
  cursor: pointer;
}

/* Section description */
.section-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0 1.5rem 0.75rem;
  line-height: 1.6;
}
/* ── END INTAKE FORM v3 ADDITIONS ── */
/* ── END PAYMENT CONFIRMED ── */

/* ── USA INTERACTIVE MAP ── */
.usa-map-section {
  width: 100%;
  padding: 0 0 2rem;
}

.usa-map-section .map-container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

.usa-map-section .map-canvas {
  position: relative;
  width: 100%;
  background: transparent;
}

.usa-map-section .state {
  position: absolute;
  cursor: pointer;
}

.usa-map-section .state a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.usa-map-section .state img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 3px rgba(124,58,237,0.25));
  transition: filter 0.18s ease, transform 0.18s ease;
  transform-origin: center center;
}

.usa-map-section .state:hover img {
  filter: drop-shadow(0 0 14px rgba(124,58,237,0.9)) drop-shadow(0 0 6px rgba(168,85,247,0.6));
  transform: scale(1.15);
  z-index: 100;
}

.usa-map-section .state .map-tooltip {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,13,26,0.95);
  border: 1px solid var(--purple-light, #a855f7);
  color: var(--purple-light, #a855f7);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 200;
}

.usa-map-section .state:hover .map-tooltip {
  opacity: 1;
}

/* Mobile: hide interactive map, show region grid instead */
@media (max-width: 767px) {
  .usa-map-section .map-container { display: none; }
  .usa-map-mobile-grid { display: grid !important; }
}

@media (min-width: 768px) {
  .usa-map-mobile-grid { display: none !important; }
}

.usa-map-mobile-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1rem 1.5rem;
}

.usa-map-mobile-grid .map-region-btn {
  background: var(--dark2, #13132a);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 10px;
  padding: 0.85rem 1rem;
  text-align: center;
  cursor: pointer;
  color: var(--purple-light, #a855f7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
  display: block;
}

.usa-map-mobile-grid .map-region-btn:hover,
.usa-map-mobile-grid .map-region-btn.active {
  border-color: var(--purple, #7c3aed);
  background: rgba(124,58,237,0.12);
  color: var(--purple-light, #a855f7);
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
}

.usa-map-mobile-grid .map-region-btn span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted, #64748b);
  font-weight: 400;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.usa-map-mobile-states {
  display: none;
  padding: 0 1rem 1.5rem;
}

.usa-map-mobile-states.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.usa-map-mobile-states a {
  background: var(--dark2, #13132a);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text, #e2e8f0);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.18s;
}

.usa-map-mobile-states a:hover {
  border-color: var(--purple, #7c3aed);
  color: var(--purple-light, #a855f7);
  box-shadow: 0 0 15px rgba(124,58,237,0.25);
}

.usa-map-mobile-states a img {
  width: 28px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(124,58,237,0.4));
  flex-shrink: 0;
}
/* ── END USA INTERACTIVE MAP ── */

/* ── SCREENSHOT CAROUSEL ── */
.cv-carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}
.cv-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
  cursor: pointer;
}
.cv-carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cv-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
}
.cv-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cv-carousel-slide span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}
.cv-carousel-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cv-carousel-btn:hover { background: rgba(124,58,237,0.2); border-color: var(--purple); }
.cv-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.cv-carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.cv-carousel-dots button.active { background: var(--purple-light); transform: scale(1.3); }
.cv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.cv-lightbox[hidden] { display: none; }
.cv-lb-img-wrap {
  max-width: min(90vw, 1100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cv-lb-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.cv-lb-caption { color: var(--text-muted); font-size: 0.875rem; margin: 0; }
.cv-lb-close {
  position: fixed;
  top: 1rem; right: 1.25rem;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10000;
}
.cv-lb-close:hover { color: var(--text); }
.cv-lb-prev, .cv-lb-next {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cv-lb-prev:hover, .cv-lb-next:hover { background: rgba(124,58,237,0.3); }
@media (max-width: 600px) {
  .cv-lb-prev, .cv-lb-next { display: none; }
}
/* ── END SCREENSHOT CAROUSEL ── */

/* ── CREDENTIAL VAULT PAGE ── */
.cv-screenshots h2,
.cv-screenshots .section-sub,
.cv-docs h2,
.cv-docs .section-sub,
.cv-pricing h2,
.cv-pricing .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* ── END CREDENTIAL VAULT PAGE ── */
