/* =========================================================
   AMPLIFIED TRAFFIC — Design System
   ========================================================= */

:root {
  --black: #080808;
  --white: #F5F0E8;
  --electric: #E8FF00;
  --electric-dim: rgba(232,255,0,0.08);
  --electric-border: rgba(232,255,0,0.2);
  --mid: #141414;
  --subtle: #222;
  --muted: #555;
  --muted-2: #777;
  --muted-3: #888;
  --border: #1E1E1E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--electric);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, transform 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(232,255,0,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s, opacity 0.25s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  background: rgba(232,255,0,0.18);
  border-color: var(--electric);
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9997; opacity: 0.5;
}

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.94); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; letter-spacing: -0.5px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--electric); }
.nav-logo img {
  height: 105px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--white); }
.nav-links .nav-cta {
  padding: 10px 24px;
  background: var(--electric);
  color: var(--black) !important;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px; letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta a {
  color: var(--black) !important;
}
.nav-links .nav-cta:hover { background: var(--white); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; cursor: none; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
}

.site-main { min-height: 70vh; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px; background: var(--electric);
  color: var(--black); font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,255,0,0.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; background: transparent;
  color: var(--white); font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--subtle); cursor: none; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--white); }
.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s; cursor: none;
}
.btn-link:hover { color: var(--white); }

/* SHARED SECTION ELEMENTS */
.section-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--electric); margin-bottom: 16px;
}
.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -2px; line-height: 0.95;
}
.section-title em { font-style: normal; color: var(--electric); }
.section-desc { font-size: 16px; line-height: 1.7; color: var(--muted-2); max-width: 320px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px; gap: 40px; flex-wrap: wrap;
}

/* HERO (base) */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 48px 80px; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift { 0% { transform: translateY(0); } 100% { transform: translateY(80px); } }
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,255,0,0.06) 0%, transparent 70%);
  top: 50%; right: -100px; transform: translateY(-50%); pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 1100px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.eyebrow-dot {
  width: 8px; height: 8px; background: var(--electric);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.eyebrow-text {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--electric);
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.88; letter-spacing: -4px; margin-bottom: 40px;
}
.hero h1 .solid { color: var(--white); display: block; }
.hero h1 .electric { color: var(--electric); display: block; }
.hero h1 .outline-electric {
  -webkit-text-stroke: 2px var(--electric);
  color: transparent; display: block;
}
.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(245,240,232,0.25); color: transparent; display: block;
}
.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.hero-desc { font-size: 18px; line-height: 1.7; color: var(--muted-3); max-width: 440px; }
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* HOMEPAGE HERO — bars (desktop) + bubbles (mobile) */
.hero--has-viz {
  min-height: 88vh;
  padding-top: 110px;
}
.hero--has-viz .hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
}
.hero--has-viz h1 {
  font-size: clamp(52px, 7.5vw, 104px);
  margin-bottom: 28px;
}
.hero--has-viz .hero-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
}
.hero--has-viz .hero-desc { margin-bottom: 0; }
.hero--has-viz .hero-eyebrow { animation: blink 2.5s ease-in-out infinite; }
.hero--has-viz .eyebrow-dot { animation: none; }

.hero-bars {
  position: absolute;
  top: 0;
  right: 2%;
  width: 60%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  opacity: 0.9;
}
.hero-bubbles { display: none; }

/* PAGE HERO */
.page-hero {
  padding: 180px 48px 100px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,255,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; }
.page-hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--electric);
  margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px;
}
.page-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9; letter-spacing: -3px; margin-bottom: 32px;
}
.page-hero h1 em { font-style: normal; color: var(--electric); }
.page-hero h1 .outline { -webkit-text-stroke: 1px rgba(245,240,232,0.25); color: transparent; }
.page-hero-desc {
  font-size: 20px; line-height: 1.6; color: var(--muted-3); max-width: 640px;
}
.page-hero-desc strong { color: var(--white); font-weight: 600; }

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 48px; border-right: 1px solid var(--border); transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--mid); }
.stat-number {
  font-family: 'Archivo Black', sans-serif; font-size: 42px;
  letter-spacing: -2px; color: var(--electric); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}

/* MARQUEE */
.marquee-wrap { overflow: hidden; background: var(--electric); padding: 16px 0; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 24px; padding: 0 32px; white-space: nowrap; }
.marquee-text { font-family: 'Archivo Black', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); }
.marquee-dot { width: 6px; height: 6px; background: rgba(0,0,0,0.3); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICES GRID (home) */
.services { padding: 120px 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.service-card {
  padding: 48px 40px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.3s; cursor: none;
  text-decoration: none; color: inherit; display: block;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--electric); transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-arrow { color: var(--black); }
.service-num {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 24px; display: block;
  position: relative; z-index: 1; transition: color 0.3s;
}
.service-name {
  font-family: 'Archivo Black', sans-serif; font-size: 22px;
  color: var(--white); margin-bottom: 16px; line-height: 1.1;
  position: relative; z-index: 1; transition: color 0.3s;
}
.service-desc {
  font-size: 14px; line-height: 1.7; color: #666; margin-bottom: 32px;
  position: relative; z-index: 1; transition: color 0.3s;
}
.service-arrow {
  font-size: 20px; color: var(--electric);
  position: relative; z-index: 1; transition: color 0.3s, transform 0.3s; display: inline-block;
}
.service-card:hover .service-arrow { transform: translate(4px, -4px); color: var(--black); }

/* WHY US */
.why {
  padding: 120px 48px; background: var(--mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px); letter-spacing: -2px; line-height: 0.9; margin-bottom: 32px;
}
.why-left h2 em { font-style: normal; color: var(--electric); }
.why-left p { font-size: 16px; line-height: 1.8; color: var(--muted-2); margin-bottom: 40px; }
.why-right { display: flex; flex-direction: column; gap: 2px; }
.why-item {
  padding: 28px 32px; background: var(--black);
  display: flex; align-items: flex-start; gap: 20px; transition: background 0.2s; cursor: none;
}
.why-item:hover { background: var(--subtle); }
.icon-box {
  width: 40px; height: 40px;
  background: var(--electric-dim); border: 1px solid var(--electric-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box svg {
  width: 20px; height: 20px;
  stroke: var(--electric); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-content h4 { font-family: 'Archivo Black', sans-serif; font-size: 16px; color: var(--white); margin-bottom: 6px; }
.why-content p { font-size: 13px; line-height: 1.6; color: #666; }

/* INDUSTRIES */
.industries { padding: 120px 48px; }
.industries-list { margin-top: 64px; display: flex; flex-direction: column; }
.industry-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  cursor: none; transition: padding 0.3s; gap: 20px;
}
.industry-row:first-child { border-top: 1px solid var(--border); }
.industry-row:hover { padding-left: 16px; }
.industry-row:hover .industry-name { color: var(--electric); }
.industry-left { display: flex; align-items: center; gap: 24px; }
.industry-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 2px; width: 30px; flex-shrink: 0; }
.industry-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 40px); letter-spacing: -1px; color: var(--white); transition: color 0.2s;
}
.industry-tag {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  padding: 6px 14px; border: 1px solid var(--border); white-space: nowrap;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 48px; background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.testimonials-list { margin-top: 64px; display: flex; flex-direction: column; gap: 2px; }
.t-row {
  background: var(--black); padding: 56px 48px;
  display: grid; grid-template-columns: 80px 1fr 280px; gap: 40px; align-items: start;
  border: 1px solid var(--border);
  transition: background 0.2s; cursor: none;
}
.t-row:hover { background: #0a0a0a; }
.t-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--electric); }
.t-quote {
  font-family: 'Archivo', sans-serif; font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4; color: var(--white); font-weight: 500; letter-spacing: -0.3px;
}
.t-quote .accent { color: var(--electric); font-weight: 600; }
.t-meta { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.t-name { font-family: 'Archivo Black', sans-serif; font-size: 15px; color: var(--white); }
.t-biz { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.t-result {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--electric);
  padding: 6px 12px; border: 1px solid var(--electric-border);
  background: var(--electric-dim); align-self: flex-start; margin-top: 12px;
}

/* CTA */
.cta-section {
  padding: 140px 48px; position: relative; overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,255,0,0.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8vw, 110px); letter-spacing: -3px; line-height: 0.9;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.cta-section h2 span { color: var(--electric); }
.cta-section p { font-size: 18px; color: var(--muted-2); margin-bottom: 48px; position: relative; z-index: 1; }
.cta-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; position: relative; z-index: 1; flex-wrap: wrap;
}

/* FOOTER */
.site-footer { padding: 64px 48px 40px; border-top: 1px solid var(--border); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 64px; gap: 40px; flex-wrap: wrap;
}
.footer-logo { font-family: 'Archivo Black', sans-serif; font-size: 24px; letter-spacing: -0.5px; color: var(--white); }
.footer-logo span { color: var(--electric); }
.footer-tagline { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: var(--white); text-decoration: none; transition: color 0.2s; cursor: none;
}
.footer-col a:hover { color: var(--electric); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border); gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.footer-signal { display: flex; align-items: center; gap: 10px; }
.signal-bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.s-bar { width: 3px; background: var(--electric); }
.s-bar:nth-child(1) { height: 4px; }
.s-bar:nth-child(2) { height: 7px; }
.s-bar:nth-child(3) { height: 10px; }
.s-bar:nth-child(4) { height: 14px; }
.signal-text { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--electric); }

/* ABOUT PAGE */
.about-intro {
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-intro-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: -2px; line-height: 0.95; margin-bottom: 32px;
}
.about-intro-left h2 em { font-style: normal; color: var(--electric); }
.about-intro-right p {
  font-size: 17px; line-height: 1.8; color: var(--muted-3); margin-bottom: 20px;
}
.about-intro-right p strong { color: var(--white); }
.about-values {
  padding: 120px 48px; background: var(--mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.value-card {
  padding: 48px 40px; background: var(--black);
  display: flex; flex-direction: column; gap: 20px;
}
.value-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--electric); }
.value-title {
  font-family: 'Archivo Black', sans-serif; font-size: 24px;
  letter-spacing: -0.5px; line-height: 1.1; color: var(--white);
}
.value-desc { font-size: 14px; line-height: 1.7; color: var(--muted-2); }
.timeline { padding: 120px 48px; }
.timeline-list { margin-top: 64px; display: flex; flex-direction: column; }
.timeline-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 60px;
  padding: 36px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.timeline-item:first-child { border-top: 1px solid var(--border); }
.timeline-year {
  font-family: 'Archivo Black', sans-serif; font-size: 36px;
  letter-spacing: -1px; color: var(--electric); line-height: 1;
}
.timeline-event h4 {
  font-family: 'Archivo Black', sans-serif; font-size: 20px;
  margin-bottom: 10px; color: var(--white);
}
.timeline-event p { font-size: 14px; line-height: 1.7; color: var(--muted-2); }

/* SERVICES PAGE */
.services-intro { padding: 100px 48px 60px; max-width: 900px; }
.services-intro p { font-size: 18px; line-height: 1.8; color: var(--muted-3); }
.services-intro p strong { color: var(--white); }
.svc-list { padding: 40px 48px 120px; display: flex; flex-direction: column; gap: 2px; }
.svc-block {
  background: var(--mid); border: 1px solid var(--border);
  padding: 56px 48px;
  display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: 40px; align-items: start;
  transition: background 0.3s;
}
.svc-block:hover { background: #181818; }
.svc-num {
  font-family: 'Archivo Black', sans-serif; font-size: 32px;
  color: var(--electric); line-height: 1; letter-spacing: -1px;
}
.svc-head h3 {
  font-family: 'Archivo Black', sans-serif; font-size: 28px;
  letter-spacing: -1px; color: var(--white); margin-bottom: 14px; line-height: 1.05;
}
.svc-head p { font-size: 14px; line-height: 1.7; color: var(--muted-2); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-tag {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white);
  padding: 8px 14px; border: 1px solid var(--border); background: var(--black);
  transition: border-color 0.2s, color 0.2s;
}
.svc-block:hover .svc-tag { border-color: var(--electric-border); }
.process { padding: 120px 48px; background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.process-step { background: var(--black); padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; }
.process-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--electric); }
.process-step h4 { font-family: 'Archivo Black', sans-serif; font-size: 20px; color: var(--white); letter-spacing: -0.5px; }
.process-step p { font-size: 13px; line-height: 1.7; color: var(--muted-2); }

/* ===== PRICING PAGE ===== */
.pricing-intro {
  padding: 100px 48px 30px;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.pricing-intro p { font-size: 18px; line-height: 1.7; color: var(--muted-3); }
.pricing-intro p strong { color: var(--white); }

.discount-wrap { text-align: center; padding: 0 48px; }
.discount-banner {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--electric);
  border: 2px solid var(--black);
  padding: 18px 36px;
  margin: 40px auto 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(232, 255, 0, 0.15);
}
.discount-banner .banner-dot {
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.pricing-grid {
  padding: 40px 48px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}
.price-card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 40px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--electric-border); transform: translateY(-4px); }
.price-card.featured { border-color: var(--electric); background: #181818; }
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 28px;
  background: var(--electric);
  color: var(--black);
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.price-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.price-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
}
.price-amount { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.price-strike { font-family: 'Archivo', sans-serif; font-size: 16px; color: var(--muted); text-decoration: line-through; }
.price-now { font-family: 'Archivo Black', sans-serif; font-size: 36px; color: var(--electric); letter-spacing: -1.5px; line-height: 1; }
.price-period { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; color: var(--muted-2); margin-bottom: 24px; }
.price-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  margin: 12px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  flex-grow: 1;
}
.price-features li { font-size: 13px; line-height: 1.5; color: var(--white); padding-left: 22px; position: relative; }
.price-features li::before { content: '+'; position: absolute; left: 0; top: 0; color: var(--electric); font-family: 'Archivo Black', sans-serif; font-size: 14px; }
.price-features li em { font-style: italic; color: var(--muted-3); font-size: 12px; }
.price-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: none;
}
.price-cta:hover { background: var(--white); color: var(--black); }
.price-card.featured .price-cta { background: var(--electric); color: var(--black); border-color: var(--electric); }
.price-card.featured .price-cta:hover { background: var(--white); border-color: var(--white); }

/* FREE SITE PROMO */
.free-site-promo {
  background: var(--electric);
  padding: 80px 48px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.free-site-promo-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.free-site-promo-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.free-site-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--black);
  margin-bottom: 24px;
}
.free-site-eyebrow .eyebrow-dot { background: var(--black); }
.free-site-promo h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -3px; line-height: 0.95;
  color: var(--black); margin-bottom: 24px;
}
.free-site-promo h2 em { font-style: normal; -webkit-text-stroke: 2px var(--black); color: transparent; }
.free-site-promo p { font-size: 18px; line-height: 1.6; color: var(--black); max-width: 640px; margin: 0 auto 36px; }
.free-site-promo p strong { font-family: 'Archivo Black', sans-serif; font-weight: 900; }
.free-site-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 44px;
  background: var(--black); color: var(--electric);
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
  transition: all 0.25s; cursor: none;
}
.free-site-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); transform: translateY(-3px); }

/* AD SPEND NOTE */
.ad-spend-note { padding: 60px 48px; background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 40px; }
.ad-spend-inner { max-width: 900px; margin: 0 auto; }
.ad-spend-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--electric);
  margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px;
}
.ad-spend-note h3 { font-family: 'Archivo Black', sans-serif; font-size: clamp(24px, 3vw, 36px); letter-spacing: -1px; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.ad-spend-note p { font-size: 15px; line-height: 1.7; color: var(--muted-2); margin-bottom: 16px; }
.ad-spend-note p strong { color: var(--white); }
.ad-spend-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px; margin: 20px 0; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ad-spend-list li { font-size: 14px; color: var(--white); font-family: 'DM Mono', monospace; letter-spacing: 1px; }
.ad-spend-list li strong { color: var(--electric); font-family: 'Archivo Black', sans-serif; font-weight: 900; letter-spacing: 0; margin-right: 8px; }
.ad-spend-footnote { font-size: 13px !important; color: var(--muted-3) !important; font-style: italic; margin-top: 16px !important; }

/* CANCELLATION NOTE */
.cancellation-note { padding: 32px 48px; }
.cancellation-inner { max-width: 900px; margin: 0 auto; }
.cancellation-note p { font-size: 13px; line-height: 1.7; color: var(--muted-3); font-style: italic; }
.cancellation-note p strong { color: var(--white); font-style: normal; font-weight: 700; }

/* BUILD YOUR OWN */
.build-own { padding: 60px 48px; background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.build-own-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.build-own h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(28px, 3vw, 44px); letter-spacing: -1px; line-height: 1.05; margin-bottom: 16px; }
.build-own h2 em { font-style: normal; color: var(--electric); }
.build-own p { font-size: 16px; line-height: 1.7; color: var(--muted-2); }
.build-own .build-cta { justify-self: end; }

/* ADD-ON */
.addon-section { padding: 100px 48px; }
.addon-section .section-header { margin-bottom: 48px; }
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.addon-card { background: var(--mid); border: 1px solid var(--border); padding: 32px 28px; display: flex; flex-direction: column; transition: border-color 0.3s; }
.addon-card:hover { border-color: var(--electric-border); }
.addon-name { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: var(--white); letter-spacing: -0.5px; margin-bottom: 8px; }
.addon-price { font-family: 'Archivo Black', sans-serif; font-size: 24px; color: var(--electric); letter-spacing: -1px; margin-bottom: 4px; }
.addon-price-period { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--muted-2); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.addon-desc { font-size: 13px; line-height: 1.6; color: var(--muted-2); }

/* ===== WEB DESIGN PAGE ===== */
.web-intro { padding: 80px 48px 40px; max-width: 900px; text-align: center; margin: 0 auto; }
.web-intro p { font-size: 18px; line-height: 1.7; color: var(--muted-3); }
.web-intro p strong { color: var(--white); }

.web-tiers { padding: 40px 48px 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1300px; margin: 0 auto; }
.web-card { background: var(--mid); border: 1px solid var(--border); padding: 48px 36px; display: flex; flex-direction: column; position: relative; transition: border-color 0.3s, transform 0.3s; }
.web-card:hover { border-color: var(--electric-border); transform: translateY(-4px); }
.web-card.featured { border-color: var(--electric); background: #181818; }
.web-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 36px; background: var(--electric); color: var(--black); font-family: 'Archivo Black', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; }
.web-name { font-family: 'Archivo Black', sans-serif; font-size: 26px; color: var(--white); letter-spacing: -0.5px; margin-bottom: 8px; }
.web-tagline { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 28px; }
.web-price { font-family: 'Archivo Black', sans-serif; font-size: 44px; color: var(--electric); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.web-price-note { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; color: var(--muted-2); margin-bottom: 8px; }
.web-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0 0 32px; padding: 24px 0 0; border-top: 1px solid var(--border); flex-grow: 1; }
.web-features li { font-size: 14px; line-height: 1.55; color: var(--white); padding-left: 24px; position: relative; }
.web-features li::before { content: '+'; position: absolute; left: 0; top: 0; color: var(--electric); font-family: 'Archivo Black', sans-serif; font-size: 16px; }
.web-cta { display: inline-flex; align-items: center; justify-content: center; padding: 16px 24px; background: transparent; border: 1px solid var(--white); color: var(--white); font-family: 'Archivo Black', sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; cursor: none; }
.web-cta:hover { background: var(--white); color: var(--black); }
.web-card.featured .web-cta { background: var(--electric); color: var(--black); border-color: var(--electric); }
.web-card.featured .web-cta:hover { background: var(--white); border-color: var(--white); }

/* Web Design discount line */
.web-price-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 28px;
  padding: 10px 14px;
  background: var(--electric-dim);
  border: 1px solid var(--electric-border);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.4;
}
.web-price-discount strong {
  color: var(--electric);
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-right: 2px;
}
.discount-arrow {
  color: var(--electric);
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
}

/* Enterprise tier additions */
.web-price-custom {
  font-size: 32px !important;
  letter-spacing: -1px !important;
}
.enterprise-note { padding: 0 48px 80px; }
.enterprise-note-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 32px;
  background: var(--mid);
  border: 1px solid var(--electric-border);
}
.enterprise-note p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-2);
  font-style: italic;
  margin: 0;
}
.enterprise-note p strong {
  color: var(--white);
  font-style: normal;
  font-weight: 700;
}

/* FREE WEBSITE OFFER TABLE */
.free-offer-section { padding: 100px 48px; background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.free-offer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.free-offer-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--electric); margin-bottom: 24px; }
.free-offer-section h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(40px, 6vw, 72px); letter-spacing: -2px; line-height: 0.95; color: var(--white); margin-bottom: 24px; }
.free-offer-section h2 em { font-style: normal; color: var(--electric); }
.free-offer-section > .free-offer-inner > p { font-size: 17px; line-height: 1.7; color: var(--muted-2); max-width: 680px; margin: 0 auto 48px; }
.offer-table { display: grid; gap: 2px; margin: 0 auto; max-width: 800px; background: var(--border); border: 1px solid var(--border); }
.offer-row { display: grid; grid-template-columns: 1fr 1.4fr; background: var(--black); padding: 24px 32px; text-align: left; align-items: center; gap: 24px; }
.offer-row.header { background: var(--subtle); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.offer-plan { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: var(--white); letter-spacing: -0.5px; }
.offer-value { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--electric); letter-spacing: 1px; }
.offer-value strong { font-family: 'Archivo Black', sans-serif; font-size: 15px; color: var(--white); letter-spacing: 0; margin-right: 8px; }
.free-offer-footnote { margin-top: 40px; padding: 24px; background: var(--black); border: 1px solid var(--electric-border); max-width: 680px; margin-left: auto; margin-right: auto; }
.free-offer-footnote p { font-size: 14px; line-height: 1.7; color: var(--muted-2); font-style: italic; }
.free-offer-footnote p strong { color: var(--white); font-style: normal; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: var(--black); color: var(--white); }
.contact-hero { padding: 140px 40px 80px; border-bottom: 1px solid var(--border); }
.contact-hero__inner { max-width: 900px; margin: 0 auto; }
.contact-hero__heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0; letter-spacing: -0.02em; margin: 16px 0 24px; color: var(--white);
}
.contact-hero__sub { font-size: 1.15rem; color: rgba(245, 240, 232, 0.65); max-width: 520px; line-height: 1.6; }
.contact-body { padding: 80px 40px 100px; }
.contact-body__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.contact-form-wrap { background: var(--mid); border: 1px solid var(--border); border-radius: 4px; padding: 48px 40px; }
.contact-form-wrap .ff-el-group { margin-bottom: 24px; }
.contact-form-wrap .ff-el-form-control {
  background: var(--black) !important; border: 1px solid var(--border) !important;
  border-radius: 3px !important; color: var(--white) !important;
  font-family: 'Archivo', sans-serif !important; font-size: 0.95rem !important;
  padding: 14px 16px !important; width: 100% !important; transition: border-color 0.2s ease;
}
.contact-form-wrap .ff-el-form-control:focus { border-color: var(--electric) !important; outline: none !important; }
.contact-form-wrap .ff-el-form-label, .contact-form-wrap label {
  font-family: 'DM Mono', monospace !important; font-size: 0.75rem !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  color: rgba(245, 240, 232, 0.55) !important; margin-bottom: 8px !important; display: block;
}
.contact-form-wrap select.ff-el-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8FF00' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 16px center !important; padding-right: 40px !important;
}
.contact-form-wrap textarea.ff-el-form-control { min-height: 130px; resize: vertical; }
.contact-form-wrap .ff-btn-submit, .contact-form-wrap button[type="submit"] {
  background: var(--electric) !important; color: var(--black) !important;
  font-family: 'Archivo Black', sans-serif !important; font-size: 0.9rem !important;
  letter-spacing: 0.06em !important; text-transform: uppercase !important;
  border: none !important; border-radius: 3px !important; padding: 16px 36px !important;
  cursor: pointer !important; transition: opacity 0.2s ease, transform 0.15s ease !important; width: 100% !important;
}
.contact-form-wrap .ff-btn-submit:hover, .contact-form-wrap button[type="submit"]:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }
.contact-form-wrap .error, .contact-form-wrap .ff-el-is-error .ff-el-form-control { border-color: #ff4444 !important; }
.contact-form-wrap .error small { color: #ff6b6b !important; font-size: 0.8rem !important; font-family: 'DM Mono', monospace !important; }
.contact-form-wrap .ff-message-success {
  background: rgba(232, 255, 0, 0.08) !important; border: 1px solid var(--electric) !important;
  border-radius: 3px !important; color: var(--electric) !important; font-family: 'Archivo', sans-serif !important; padding: 20px 24px !important;
}
.contact-info-col { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 32px; }
.contact-info-block { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 240, 232, 0.45); margin: 0; }
.contact-info-value { font-family: 'Archivo', sans-serif; font-size: 1rem; color: var(--white); line-height: 1.5; margin: 0; }
a.contact-info-value { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.2s ease, color 0.2s ease; width: fit-content; }
a.contact-info-value:hover { color: var(--electric); border-color: var(--electric); }
.contact-divider { height: 1px; background: var(--border); width: 100%; }
.contact-promise { background: var(--mid); border-left: 3px solid var(--electric); padding: 24px 28px; border-radius: 0 3px 3px 0; }
.contact-promise__text { font-family: 'Archivo', sans-serif; font-size: 0.95rem; line-height: 1.65; color: rgba(245, 240, 232, 0.8); font-style: italic; margin: 0 0 12px; }
.contact-promise__attr { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--electric); margin: 0; }
.contact-bottom-strip { border-top: 1px solid var(--border); padding: 32px 40px; }
.contact-bottom-strip__inner { max-width: 1100px; margin: 0 auto; }
.contact-bottom-strip__text { font-family: 'Archivo', sans-serif; font-size: 0.95rem; color: rgba(245, 240, 232, 0.6); margin: 0; }
.underline-link { color: var(--electric); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .t-row { grid-template-columns: 1fr; gap: 24px; }
  .about-intro { grid-template-columns: 1fr; gap: 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 60px 1fr; }
  .svc-block .svc-tags { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .build-own-inner { grid-template-columns: 1fr; gap: 32px; }
  .build-own .build-cta { justify-self: start; }
  .addon-grid { grid-template-columns: 1fr; }
  .web-tiers { grid-template-columns: 1fr; max-width: 600px; }
  .contact-body__inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-info-col { position: static; }

  /* Hero on tablet: bars smaller + faint, content full width */
  .hero-bars { width: 55%; opacity: 0.4; }
  .hero--has-viz .hero-content { max-width: 100%; }
}

@media (max-width: 720px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--black); border-bottom: 1px solid var(--border);
    padding: 24px; gap: 24px; align-items: flex-start;
  }
  .nav-toggle { display: block; }
  .hero, .page-hero, .services, .why, .industries, .testimonials,
  .cta-section, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); letter-spacing: -2px; }
  .page-hero { padding-top: 120px; padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:not(:last-child) { border-bottom: 1px solid var(--border); }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
  body * { cursor: auto !important; }
  .industry-tag { display: none; }
  .about-intro, .timeline-item { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-intro { padding: 60px 24px 40px; }
  .svc-list { padding: 24px 24px 80px; }
  .process { padding-left: 24px; padding-right: 24px; }
  .pricing-grid { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .pricing-intro { padding: 60px 24px 20px; }
  .build-own, .addon-section { padding-left: 24px; padding-right: 24px; }
  .ad-spend-note { padding: 40px 24px; }
  .ad-spend-list { grid-template-columns: 1fr; }
  .cancellation-note { padding: 24px; }
  .free-site-promo { padding: 60px 24px; }
  .web-tiers { padding: 40px 24px 60px; }
  .web-intro { padding: 60px 24px 30px; }
  .free-offer-section { padding: 60px 24px; }
  .offer-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; }
  .enterprise-note { padding: 0 24px 60px; }
  .contact-hero { padding: 100px 24px 60px; }
  .contact-body { padding: 60px 24px 80px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-bottom-strip { padding: 28px 24px; }

  /* Homepage hero on mobile: bubbles fill behind text, content pinned to top */
  .hero--has-viz {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero--has-viz .hero-content { max-width: 100%; }
  .hero--has-viz h1 { font-size: clamp(40px, 12vw, 60px); margin-bottom: 20px; }
  .hero--has-viz .hero-desc { font-size: 15px; }
  .hero-bars { display: none; }
  .hero-bubbles {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-grid, .page-hero-grid, .marquee-track, .eyebrow-dot { animation: none !important; }
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
  body * { cursor: auto !important; }
}
@media (max-width: 720px) {
  .hero--has-viz .hero-content {
    max-width: 74%;
  }
}
@media (max-width: 720px) {
  .hero--has-viz h1 {
    font-size: clamp(34px, 10vw, 52px);
  }
}
@media (max-width: 720px) {
  .hero--has-viz .hero-content {
    max-width: 100%;
  }
  .hero--has-viz h1 {
    font-size: clamp(34px, 10vw, 56px);
    white-space: nowrap;
  }
}
@media (max-width: 720px) {
  .hero--has-viz .hero-content { pointer-events: none; }
  .hero--has-viz .hero-content a,
  .hero--has-viz .hero-actions a { pointer-events: auto; }
}
.industries-open {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.industries-open p {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -1px;
  line-height: 1.2;
}
.industries-open a {
  color: var(--electric);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.industries-open a:hover {
  opacity: 0.7;
}
.page-hero { padding-bottom: 30px; }
.services-intro { padding-top: 20px; }
.services-intro { padding-bottom: 20px; }
.svc-list { padding-top: 20px; }

.services-intro p:first-child {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
}
.services-intro p:first-child strong {
  color: var(--electric);
}
.services-intro p {
  max-width: 760px;
}
.footer-soon {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 720px) {
  .page-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
/* ===== MOBILE VERTICAL SPACING FIX ===== */
@media (max-width: 720px) {
  .about-intro,
  .about-values,
  .timeline,
  .services,
  .why,
  .industries,
  .testimonials,
  .cta-section,
  .process,
  .addon-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .about-intro,
  .about-values,
  .timeline {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-header { margin-bottom: 32px; }
  .timeline-list { margin-top: 32px; }
  .values-grid { margin-top: 32px; }
}