/* ═══════════════════════════════════════════════
   NIC Advertising — New Look Global Styles
   ═══════════════════════════════════════════════ */

:root {
  --navy: #0d1f42;
  --navy-mid: #1c3b79;
  --navy-light: #1e3a6e;
  --blue: #549ff8;
  --blue-light: #7dbdff;
  --orange: #ed8f3a;
  --orange-light: #f5a55e;
  --white: #ffffff;
  --off-white: #f0f4fc;
  --gray: #8a9bb8;
  --dark: #070f22;
  --green: #2dd4a0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

b, strong { font-weight: bold; }

li { list-style: none; }

a { text-decoration: none; }

.clr { clear: both; }


/* ─── NAV ─────────────────────────────────────── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,15,34,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(84,159,248,0.1);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.nav-logo-name span { color: var(--blue); }

.nav-logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-light) !important; }

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue) !important;
  letter-spacing: 0.3px;
}


/* ─── HAMBURGER BUTTON ────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(84,159,248,0.08);
  border: 1px solid rgba(84,159,248,0.2);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(84,159,248,0.15);
  border-color: rgba(84,159,248,0.4);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.25s ease,
              width 0.25s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── MOBILE OVERLAY ──────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,15,34,0.75);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}


/* ─── MOBILE DRAWER ───────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #0b1730;
  border-left: 1px solid rgba(84,159,248,0.15);
  z-index: 400;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(84,159,248,0.1);
  height: 72px;
  flex-shrink: 0;
}

.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.drawer-close:hover {
  background: rgba(237,143,58,0.15);
  border-color: rgba(237,143,58,0.4);
}

.drawer-nav {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(84,159,248,0.06);
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}

.drawer-link:hover {
  color: var(--white);
  background: rgba(84,159,248,0.06);
  padding-left: 36px;
}

.drawer-footer {
  padding: 28px;
  border-top: 1px solid rgba(84,159,248,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.drawer-phone {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.drawer-phone:hover { color: var(--blue); }

.drawer-cta {
  justify-content: center;
  text-align: center;
  padding: 16px !important;
}

.drawer-section-label {
  padding: 20px 28px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
}

.drawer-divider {
  height: 1px;
  background: rgba(84,159,248,0.1);
  margin: 8px 0;
}

.drawer-link-sub {
  display: flex;
  align-items: center;
  padding: 13px 28px 13px 36px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(84,159,248,0.04);
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}

.drawer-link-sub::before {
  content: '\2014';
  margin-right: 10px;
  font-size: 11px;
  color: rgba(84,159,248,0.4);
  flex-shrink: 0;
}

.drawer-link-sub:hover {
  color: var(--white);
  background: rgba(84,159,248,0.05);
  padding-left: 42px;
}


/* ─── SHARED BUTTONS ──────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--blue); }

.btn-secondary .arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover .arrow {
  border-color: var(--blue);
  background: rgba(84,159,248,0.1);
}


/* ─── SECTION SHARED ──────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 72px;
}


/* ─── CTA BAND ────────────────────────────────── */
.cta-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,143,58,0.1) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-phone {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  text-decoration: none;
}

.cta-phone-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: right;
}


/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: #060d1e;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.footer-logo-name span { color: var(--blue); }

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-locations {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.3px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(84,159,248,0.08);
  border: 1px solid rgba(84,159,248,0.15);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


/* ─── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(84,159,248,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84,159,248,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(28,59,121,0.6) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237,143,58,0.12) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(135deg, transparent 0%, rgba(28,59,121,0.25) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  max-width: 780px;
  margin-bottom: 32px;
}

.hero-h1 .line-accent { color: var(--blue); }
.hero-h1 .line-orange { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span { color: var(--orange); }

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* Hero elements start hidden for GSAP entrance */
.hero-eyebrow, .hero-h1, .hero-sub, .hero-actions, .hero-stats { opacity: 0; }


/* ─── MARQUEE STRIP ───────────────────────────── */
.marquee-strip {
  background: var(--navy-mid);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(84,159,248,0.2);
  border-bottom: 1px solid rgba(84,159,248,0.2);
}

.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ─── SERVICES GRID ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(84,159,248,0.08);
  border: 1px solid rgba(84,159,248,0.1);
}

.service-card {
  background: var(--dark);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover { background: rgba(28,59,121,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(84,159,248,0.08);
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 36px;
  letter-spacing: -3px;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: rgba(84,159,248,0.15); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(84,159,248,0.1);
  border: 1px solid rgba(84,159,248,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(237,143,58,0.15);
  border-color: rgba(237,143,58,0.3);
}

.service-icon svg { width: 24px; height: 24px; }

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--blue);
  background: rgba(84,159,248,0.1);
  border: 1px solid rgba(84,159,248,0.2);
  padding: 5px 12px;
  border-radius: 2px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover { gap: 14px; }


/* ─── WHY NIC SECTION ─────────────────────────── */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(84,159,248,0.1);
  border: 1px solid rgba(84,159,248,0.15);
}

.why-item {
  background: var(--navy);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-item:hover::after { opacity: 1; }

.why-item-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.why-item-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.why-large-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 24px;
}

.why-large-text .accent { color: var(--blue); }

.why-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}


/* ─── PROCESS ─────────────────────────────────── */
.process-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid rgba(84,159,248,0.1);
}

.process-step {
  padding: 48px 36px;
  border-right: 1px solid rgba(84,159,248,0.1);
  position: relative;
}

.process-step:last-child { border-right: none; }

.process-connector {
  position: absolute;
  top: 64px;
  right: -16px;
  z-index: 1;
  width: 30px;
  height: 2px;
  background: var(--orange);
  opacity: 0.4;
}

.process-step:last-child .process-connector { display: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.step-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}


/* ─── SCROLL REVEAL (GSAP sets initial state) ── */
.reveal { opacity: 0; transform: translateY(30px); }


/* ─── MAIN CONTENT WRAPPER ────────────────────── */
.mainContent {
  width: 100%;
  padding-top: 72px; /* offset for fixed nav */
}

/* Homepage & page heroes are full-viewport behind transparent nav */
.mainContent:has(.hero),
.mainContent:has(.page-hero) {
  padding-top: 0;
}


/* ─── PAGE HERO (service pages) ───────────────── */
.page-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28,59,121,0.55) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-glow-orange {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237,143,58,0.12) 0%, transparent 70%);
  bottom: 0;
  right: 15%;
  pointer-events: none;
}

.hero-slash {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, transparent 0%, rgba(28,59,121,0.2) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-h1 .accent { color: var(--orange); }
.hero-h1 .accent-blue { color: var(--blue); }

.hero-proof {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero-proof { opacity: 0; }

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-icon {
  width: 40px;
  height: 40px;
  background: rgba(84,159,248,0.1);
  border: 1px solid rgba(84,159,248,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.proof-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }


/* Fake metrics dashboard decoration */
.hero-metrics-bg {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 34%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-row { display: flex; gap: 10px; }

.metric-tile {
  flex: 1;
  background: rgba(13,31,66,0.7);
  border: 1px solid rgba(84,159,248,0.12);
  border-radius: 6px;
  padding: 14px 16px;
}

.metric-tile-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 6px;
}

.metric-tile-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.metric-tile-val.green { color: var(--green); }
.metric-tile-val.blue  { color: var(--blue); }
.metric-tile-val.orange { color: var(--orange); }
.metric-tile-sub { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 4px; }

.metric-bar-row {
  background: rgba(13,31,66,0.7);
  border: 1px solid rgba(84,159,248,0.12);
  border-radius: 6px;
  padding: 14px 16px;
}

.metric-bar-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 10px;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bar-item:last-child { margin-bottom: 0; }
.bar-name { font-size: 10px; color: rgba(255,255,255,0.35); width: 52px; flex-shrink: 0; }
.bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 2px; }
.bar-pct { font-size: 10px; color: rgba(255,255,255,0.3); width: 30px; text-align: right; flex-shrink: 0; }


/* ─── BTN OUTLINE ─────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 15px 35px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(84,159,248,0.08);
  transform: translateY(-2px);
}


/* ─── SERVICE PILLAR NAV (sticky tabs) ────────── */
.pillars-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(84,159,248,0.12);
  position: sticky;
  top: 72px;
  z-index: 90;
}

.pillars-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.pillars-nav-inner::-webkit-scrollbar { display: none; }

.pillar-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.pillar-tab:hover { color: var(--white); }
.pillar-tab.active { color: var(--white); border-bottom-color: var(--orange); }
.pillar-tab-num { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--orange); opacity: 0.6; }


/* ─── SERVICE SECTION BASE ────────────────────── */
.service-section { position: relative; overflow: hidden; }
.service-section.dark { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.service-section.navy { background: var(--navy); }
.service-section.mid { background: var(--navy-mid); }

.service-section.navy::before,
.service-section.mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}


/* ─── PPC SECTION ─────────────────────────────── */
.ppc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ppc-details { display: flex; flex-direction: column; gap: 40px; }

.ppc-detail-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ppc-detail-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.ppc-detail-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.platform-card {
  background: rgba(28,59,121,0.15);
  border: 1px solid rgba(84,159,248,0.12);
  border-radius: 6px;
  padding: 24px 20px;
  transition: background 0.3s, border-color 0.3s;
}

.platform-card:hover { background: rgba(28,59,121,0.3); border-color: rgba(84,159,248,0.25); }
.platform-icon { font-size: 26px; margin-bottom: 10px; }
.platform-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; }
.platform-desc { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.45); }
.platform-tag { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); padding: 3px 10px; border-radius: 2px; }

/* PPC what's included */
.ppc-included { background: rgba(7,15,34,0.8); border: 1px solid rgba(84,159,248,0.15); padding: 40px; }
.ppc-included-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.3px; }
.included-list { display: flex; flex-direction: column; gap: 0; }
.included-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(84,159,248,0.07); }
.included-item:last-child { border-bottom: none; }
.included-check { width: 20px; height: 20px; background: rgba(45,212,160,0.12); border: 1px solid rgba(45,212,160,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.included-check svg { width: 10px; height: 10px; stroke: var(--green); }
.included-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.5; }
.included-text span { display: block; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 2px; }


/* ─── SEO GRID ────────────────────────────────── */
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(84,159,248,0.08); border: 1px solid rgba(84,159,248,0.1); }
.seo-card { background: var(--navy); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.seo-card:hover { background: rgba(28,59,121,0.5); }
.seo-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.seo-card:hover::after { transform: scaleX(1); }
.seo-icon { width: 48px; height: 48px; background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.seo-icon svg { width: 22px; height: 22px; }
.seo-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; }
.seo-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.seo-tag { font-size: 11px; font-weight: 500; color: var(--blue); background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); padding: 4px 10px; border-radius: 2px; }


/* ─── AI MENTION SECTION ──────────────────────── */
.ai-section-wrap { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.ai-pulse { position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(84,159,248,0.06) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ai-breathe 6s ease-in-out infinite; pointer-events: none; }
@keyframes ai-breathe { 0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; } }
.ai-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ai-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.25); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 24px; }
.ai-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse-dot 2s ease-in-out infinite; }
.ai-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 4vw, 54px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.0; margin-bottom: 24px; }
.ai-title .accent { color: var(--blue); }
.ai-body { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.ai-body strong { color: var(--white); font-weight: 500; }
.ai-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.ai-feature { display: flex; align-items: flex-start; gap: 16px; }
.ai-feature-icon { width: 40px; height: 40px; background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.ai-feature-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ai-feature-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.ai-chat-ui { background: rgba(13,31,66,0.8); border: 1px solid rgba(84,159,248,0.15); border-radius: 10px; overflow: hidden; }
.ai-chat-header { background: rgba(28,59,121,0.5); padding: 14px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(84,159,248,0.1); }
.ai-chat-dots { display: flex; gap: 6px; }
.ai-chat-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ai-chat-dots span:nth-child(1) { background: rgba(255,255,255,0.15); }
.ai-chat-dots span:nth-child(2) { background: rgba(255,255,255,0.1); }
.ai-chat-dots span:nth-child(3) { background: rgba(255,255,255,0.07); }
.ai-chat-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); margin-left: 4px; letter-spacing: 0.5px; }
.ai-chat-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.ai-msg { display: flex; gap: 10px; }
.ai-msg.user { flex-direction: row-reverse; }
.ai-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.ai-avatar.assistant { background: rgba(84,159,248,0.2); color: var(--blue); border: 1px solid rgba(84,159,248,0.25); }
.ai-avatar.user-av { background: rgba(237,143,58,0.2); color: var(--orange); border: 1px solid rgba(237,143,58,0.25); }
.ai-bubble { padding: 12px 16px; border-radius: 8px; font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 84%; }
.ai-bubble.assistant { background: rgba(28,59,121,0.4); border: 1px solid rgba(84,159,248,0.1); border-top-left-radius: 2px; }
.ai-bubble.user-b { background: rgba(237,143,58,0.15); border: 1px solid rgba(237,143,58,0.15); border-top-right-radius: 2px; text-align: right; }
.ai-bubble .highlight { color: var(--blue); font-weight: 500; }
.ai-typing { display: flex; align-items: center; gap: 4px; padding: 12px 16px; background: rgba(28,59,121,0.3); border: 1px solid rgba(84,159,248,0.08); border-radius: 8px; border-top-left-radius: 2px; width: fit-content; }
.ai-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: typing-dot 1.4s ease-in-out infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%,80%,100% { opacity:0.3; transform:scale(0.8); } 40% { opacity:1; transform:scale(1); } }
.ai-chat-note { padding: 12px 20px 16px; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.2); text-align: center; border-top: 1px solid rgba(84,159,248,0.07); }
.ai-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ai-platform-tag { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(13,31,66,0.8); border: 1px solid rgba(84,159,248,0.15); border-radius: 4px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); }
.ai-platform-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }


/* ─── INFLUENCER SECTION ──────────────────────── */
.influencer-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.influencer-tiers { display: flex; flex-direction: column; gap: 16px; }
.tier-card { background: var(--dark); border: 1px solid rgba(84,159,248,0.1); padding: 28px 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; transition: border-color 0.3s, background 0.3s; }
.tier-card:hover { border-color: rgba(237,143,58,0.3); background: rgba(237,143,58,0.04); }
.tier-emoji { font-size: 28px; }
.tier-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 4px; }
.tier-range { font-size: 12px; font-weight: 400; color: var(--gray); }
.tier-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.5; }
.tier-badge { padding: 5px 12px; border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.tier-badge.hot { background: rgba(237,143,58,0.15); color: var(--orange); border: 1px solid rgba(237,143,58,0.25); }
.tier-badge.best { background: rgba(84,159,248,0.12); color: var(--blue); border: 1px solid rgba(84,159,248,0.2); }
.tier-badge.wide { background: rgba(45,212,160,0.1); color: var(--green); border: 1px solid rgba(45,212,160,0.2); }
.influencer-detail { background: rgba(13,31,66,0.6); border: 1px solid rgba(84,159,248,0.12); padding: 40px; position: relative; overflow: hidden; }
.influencer-detail::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.inf-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 20px; }
.inf-list { display: flex; flex-direction: column; gap: 0; }
.inf-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(84,159,248,0.07); }
.inf-item:last-child { border-bottom: none; }
.inf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.inf-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.5; }
.inf-text strong { color: var(--white); font-weight: 500; }
.inf-note { margin-top: 28px; padding: 16px; background: rgba(84,159,248,0.06); border-left: 3px solid var(--blue); font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.55); }
.inf-note strong { color: var(--white); font-weight: 500; }


/* ─── TRACKING SECTION ────────────────────────── */
.tracking-section { background: var(--navy-mid); position: relative; overflow: hidden; }
.tracking-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.tracking-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.tracking-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.tracking-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.12); }
.tracking-metric { background: var(--navy-mid); padding: 32px 28px; transition: background 0.3s; }
.tracking-metric:hover { background: rgba(28,59,121,0.6); }
.tm-icon { font-size: 24px; margin-bottom: 12px; }
.tm-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 8px; }
.tm-desc { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.45); }


/* ─── PROCESS HORIZONTAL (5-step) ─────────────── */
.process-steps-h { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid rgba(84,159,248,0.1); margin-top: 64px; }
.process-step-h { padding: 40px 32px; border-right: 1px solid rgba(84,159,248,0.1); position: relative; transition: background 0.3s; }
.process-step-h:last-child { border-right: none; }
.process-step-h:hover { background: rgba(28,59,121,0.2); }
.psh-num { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--orange); margin-bottom: 16px; }
.psh-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 10px; }
.psh-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.45); }
.psh-arrow { position: absolute; top: 44px; right: -12px; z-index: 1; width: 22px; height: 22px; background: var(--dark); border: 1px solid rgba(237,143,58,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.psh-arrow svg { width: 10px; height: 10px; stroke: var(--orange); }
.process-step-h:last-child .psh-arrow { display: none; }


/* ─── FAQ ACCORDION ───────────────────────────── */
.faq-section { background: var(--navy); border-top: 1px solid rgba(84,159,248,0.1); position: relative; overflow: hidden; }
.faq-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.faq-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-left-sticky { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(84,159,248,0.1); }
.faq-item { border-bottom: 1px solid rgba(84,159,248,0.08); overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; transition: background 0.2s; user-select: none; }
.faq-q:hover { background: rgba(84,159,248,0.05); }
.faq-chevron { width: 24px; height: 24px; background: rgba(84,159,248,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.35s; }
.faq-item.open .faq-chevron { background: var(--orange); transform: rotate(180deg); }
.faq-a { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6); padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.4s; }
.faq-item.open .faq-a { padding: 0 28px 24px; max-height: 300px; }


/* ─── OTHER SERVICES ──────────────────────────── */
.other-services { background: #060d1e; border-top: 1px solid rgba(255,255,255,0.05); }
.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.other-card { background: #060d1e; padding: 36px 32px; text-decoration: none; color: inherit; display: block; transition: background 0.3s; position: relative; overflow: hidden; }
.other-card:hover { background: rgba(28,59,121,0.3); }
.other-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.other-card:hover::after { transform: scaleX(1); }
.other-icon { font-size: 28px; margin-bottom: 16px; }
.other-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 8px; }
.other-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; }
.other-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }

/* CTA button row */
.cta-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }


/* ─── ABOUT PAGE: HERO ────────────────────────── */
.hero-bg-word {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 800;
  letter-spacing: -8px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(84,159,248,0.07);
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.92;
  margin-bottom: 52px;
  max-width: 900px;
}
.hero-statement .line-blue { color: var(--blue); }
.hero-statement .line-orange { color: var(--orange); }
.hero-statement .line-dim { color: rgba(255,255,255,0.25); }

.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.07);
  align-items: end;
}
.hero-desc { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6); }
.hero-desc strong { color: var(--white); font-weight: 500; }
.hero-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 12px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* GSAP initial states for about hero */
.hero-eyebrow, .hero-statement, .hero-two-col { opacity: 0; }


/* ─── ABOUT: BORN DIGITAL ORIGIN ──────────────── */
.origin-section { background: var(--navy); position: relative; overflow: hidden; }
.origin-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.origin-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.origin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.origin-pull-quote { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 32px; }
.origin-pull-quote em { font-style: normal; color: var(--orange); }
.origin-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); }
.origin-body + .origin-body { margin-top: 18px; }
.origin-body strong { color: var(--white); font-weight: 500; }

/* Timeline */
.origin-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 0; position: relative; }
.timeline-item:not(:last-child) .tl-line { position: absolute; left: 39px; top: 40px; bottom: -1px; width: 2px; background: rgba(84,159,248,0.12); }
.tl-dot-col { display: flex; justify-content: center; padding-top: 4px; }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; z-index: 1; transition: border-color 0.3s; }
.tl-dot.filled { background: var(--navy-mid); border: 2px solid rgba(84,159,248,0.4); color: var(--blue); }
.tl-dot.orange { background: rgba(237,143,58,0.12); border: 2px solid rgba(237,143,58,0.4); color: var(--orange); }
.tl-body { padding: 0 0 44px 24px; }
.tl-era { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.tl-era.blue { color: var(--blue); }
.tl-era.orange { color: var(--orange); }
.tl-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; }
.tl-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.45); }


/* ─── ABOUT: PHILOSOPHY PILLARS ───────────────── */
.pillars-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(84,159,248,0.08); border: 1px solid rgba(84,159,248,0.1); margin-top: 72px; }
.pillar-card { background: var(--dark); padding: 52px 44px; position: relative; overflow: hidden; transition: background 0.3s; }
.pillar-card:hover { background: rgba(28,59,121,0.2); }
.pillar-card::after { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--orange); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.pillar-card:hover::after { transform: scaleY(1); }
.pillar-num { font-family: 'Syne', sans-serif; font-size: 80px; font-weight: 800; color: rgba(84,159,248,0.05); line-height: 1; position: absolute; top: 16px; right: 24px; letter-spacing: -4px; }
.pillar-icon { font-size: 36px; margin-bottom: 24px; }
.pillar-title { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 16px; }
.pillar-body { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.55); }
.pillar-body strong { color: var(--white); font-weight: 500; }


/* ─── ABOUT: UNDER ONE ROOF ───────────────────── */
.roof-section { background: var(--navy-mid); position: relative; overflow: hidden; }
.roof-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.roof-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.roof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.roof-diagram { display: flex; flex-direction: column; gap: 12px; }
.roof-hub { background: rgba(237,143,58,0.12); border: 2px solid rgba(237,143,58,0.3); border-radius: 10px; padding: 28px 32px; text-align: center; }
.roof-hub-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.roof-hub-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.roof-spokes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.roof-spoke { background: rgba(28,59,121,0.2); border: 1px solid rgba(84,159,248,0.12); border-radius: 6px; padding: 18px 20px; text-align: center; transition: border-color 0.3s, background 0.3s; cursor: default; }
.roof-spoke:hover { border-color: rgba(84,159,248,0.3); background: rgba(28,59,121,0.35); }
.roof-spoke-icon { font-size: 20px; margin-bottom: 6px; }
.roof-spoke-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; }
.roof-connector { height: 24px; display: flex; align-items: center; justify-content: center; }
.roof-connector-line { width: 2px; height: 100%; background: rgba(237,143,58,0.2); }
.roof-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start; margin-top: 4px; }
.roof-vs-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.roof-vs-label.bad { color: rgba(248,113,113,0.7); }
.roof-vs-label.good { color: var(--green); }
.roof-vs-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding-top: 32px; }
.roof-vs-text { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.roof-vs-item { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 7px; line-height: 1.4; }
.roof-vs-item.bad::before { content: '\2715'; color: rgba(248,113,113,0.6); font-size: 10px; flex-shrink: 0; }
.roof-vs-item.good::before { content: '\2713'; color: var(--green); font-size: 10px; flex-shrink: 0; }
.roof-pull { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 28px; }
.roof-pull .accent { color: var(--blue); }
.roof-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); }
.roof-body + .roof-body { margin-top: 16px; }
.roof-body strong { color: var(--white); font-weight: 500; }


/* ─── ABOUT: AI ORB VISUAL ────────────────────── */
.ai-visual { position: relative; }
.ai-orb { width: 100%; padding-bottom: 100%; position: relative; }
.ai-orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(84,159,248,0.12); }
.ai-orb-ring:nth-child(1) { inset: 0; }
.ai-orb-ring:nth-child(2) { inset: 12%; animation: ring-spin 20s linear infinite; border-style: dashed; border-color: rgba(84,159,248,0.08); }
.ai-orb-ring:nth-child(3) { inset: 24%; animation: ring-spin 14s linear infinite reverse; }
.ai-orb-ring:nth-child(4) { inset: 36%; border-color: rgba(237,143,58,0.15); animation: ring-spin 9s linear infinite; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ai-orb-center { position: absolute; inset: 45%; background: rgba(84,159,248,0.15); border: 1px solid rgba(84,159,248,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ai-nodes { position: absolute; inset: 0; }
.ai-node { position: absolute; width: 44px; height: 44px; background: rgba(13,31,66,0.9); border: 1px solid rgba(84,159,248,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 0 20px rgba(84,159,248,0.08); }
.ai-node-label { position: absolute; font-size: 9px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.35); text-align: center; width: 60px; }
.ai-caption { text-align: center; margin-top: 24px; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }

/* AI contrast block */
.ai-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(84,159,248,0.08); border: 1px solid rgba(84,159,248,0.1); margin-top: 36px; }
.ai-contrast-col { padding: 28px 24px; }
.ai-contrast-col.left { background: rgba(248,113,113,0.04); }
.ai-contrast-col.right { background: rgba(45,212,160,0.04); }
.ai-contrast-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.ai-contrast-label.red { color: rgba(248,113,113,0.7); }
.ai-contrast-label.green { color: var(--green); }
.ai-contrast-item { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.ai-contrast-item:last-child { border-bottom: none; }
.ai-contrast-item.bad::before { content: '\2715'; color: rgba(248,113,113,0.6); font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.ai-contrast-item.good::before { content: '\2713'; color: var(--green); font-size: 10px; flex-shrink: 0; margin-top: 2px; }

/* AI section about-page specific */
.ai-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.ai-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }


/* ─── ABOUT: UNFAIR ADVANTAGE ─────────────────── */
.advantage-section { background: var(--navy); position: relative; overflow: hidden; }
.advantage-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.advantage-statement-wrap { position: relative; z-index: 1; border-bottom: 1px solid rgba(84,159,248,0.1); }
.advantage-statement { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.adv-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.adv-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--orange); }
.adv-big-quote { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -2px; line-height: 1.0; max-width: 1000px; }
.adv-big-quote .hl { color: var(--orange); }
.adv-big-quote .hl-blue { color: var(--blue); }
.advantage-body-wrap { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.adv-body-text { font-size: 17px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); }
.adv-body-text + .adv-body-text { margin-top: 20px; }
.adv-body-text strong { color: var(--white); font-weight: 500; }
.adv-pillars { display: flex; flex-direction: column; gap: 12px; }
.adv-pillar { background: rgba(7,15,34,0.6); border: 1px solid rgba(84,159,248,0.1); padding: 24px 28px; display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.3s, background 0.3s; }
.adv-pillar:hover { border-color: rgba(84,159,248,0.25); background: rgba(28,59,121,0.2); }
.adv-pillar-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.adv-pillar-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; }
.adv-pillar-text { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.5); }


/* ─── ABOUT: NO CONTRACTS ─────────────────────── */
.nocontract-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.nocontract-inner { max-width: 1200px; margin: 0 auto; padding: 100px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.nc-headline { font-family: 'Syne', sans-serif; font-size: clamp(40px, 5vw, 68px); font-weight: 800; letter-spacing: -2px; line-height: 0.95; margin-bottom: 32px; }
.nc-headline .accent { color: var(--green); }
.nc-body { font-size: 17px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); }
.nc-body + .nc-body { margin-top: 18px; }
.nc-body strong { color: var(--white); font-weight: 500; }
.nc-card { background: rgba(45,212,160,0.05); border: 1px solid rgba(45,212,160,0.15); padding: 48px; position: relative; overflow: hidden; }
.nc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--blue)); }
.nc-reason-list { display: flex; flex-direction: column; gap: 0; }
.nc-reason { padding: 20px 0; border-bottom: 1px solid rgba(45,212,160,0.08); display: flex; align-items: flex-start; gap: 16px; }
.nc-reason:last-child { border-bottom: none; }
.nc-reason-icon { width: 36px; height: 36px; background: rgba(45,212,160,0.1); border: 1px solid rgba(45,212,160,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.nc-reason-text { font-size: 15px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.65); }
.nc-reason-text strong { color: var(--white); font-weight: 500; display: block; margin-bottom: 4px; font-size: 16px; }


/* ─── ABOUT: VALUES ───────────────────────────── */
.values-section { background: var(--navy-mid); position: relative; overflow: hidden; }
.values-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.values-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(84,159,248,0.1); margin-top: 64px; }
.value-card { padding: 48px 32px; border-right: 1px solid rgba(84,159,248,0.1); transition: background 0.3s; position: relative; overflow: hidden; }
.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(28,59,121,0.3); }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.value-card:hover::after { transform: scaleX(1); }
.value-icon { font-size: 28px; margin-bottom: 18px; }
.value-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 12px; }
.value-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.45); }


/* ─── ABOUT: CTA (centered variant) ──────────── */
.cta-phone-block { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); }


/* ─── HERO CODE DECORATION ────────────────────── */
.hero-code-bg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IBM Plex Sans', monospace;
  font-size: 13px;
  font-weight: 300;
  color: rgba(84,159,248,0.12);
  line-height: 2;
  white-space: pre;
  pointer-events: none;
  width: 36%;
  overflow: hidden;
}


/* ─── DELIVERABLES GRID ───────────────────────── */
.deliverables-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(84,159,248,0.08); border: 1px solid rgba(84,159,248,0.1); }
.deliverable-card { background: var(--dark); padding: 44px 40px; position: relative; overflow: hidden; transition: background 0.3s; }
.deliverable-card:hover { background: rgba(28,59,121,0.25); }
.deliverable-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.deliverable-card:hover::after { transform: scaleX(1); }
.del-icon { width: 48px; height: 48px; background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.del-icon svg { width: 22px; height: 22px; }
.del-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; }
.del-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
.del-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.del-list li { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); display: flex; align-items: flex-start; gap: 8px; }
.del-list li::before { content: '\2192'; color: var(--blue); font-size: 12px; margin-top: 1px; flex-shrink: 0; }


/* ─── TECH STACK ──────────────────────────────── */
.tech-section { background: var(--navy); position: relative; overflow: hidden; }
.tech-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(84,159,248,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(84,159,248,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.tech-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.tech-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.tech-categories { display: flex; flex-direction: column; gap: 40px; }
.tech-cat-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag { font-size: 12px; font-weight: 500; letter-spacing: 0.3px; padding: 8px 16px; border-radius: 3px; border: 1px solid; transition: background 0.2s, border-color 0.2s; cursor: default; }
.tech-tag.core { color: var(--blue); border-color: rgba(84,159,248,0.25); background: rgba(84,159,248,0.08); }
.tech-tag.core:hover { background: rgba(84,159,248,0.15); border-color: rgba(84,159,248,0.5); }
.tech-tag.cms { color: var(--orange); border-color: rgba(237,143,58,0.25); background: rgba(237,143,58,0.08); }
.tech-tag.cms:hover { background: rgba(237,143,58,0.15); border-color: rgba(237,143,58,0.5); }
.tech-tag.tools { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.tech-tag.tools:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

/* No builders comparison card */
.no-builders-card { background: var(--dark); border: 1px solid rgba(84,159,248,0.15); padding: 48px; position: relative; overflow: hidden; }
.no-builders-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); }
.nob-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.nob-title { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 20px; }
.nob-body { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6); }
.nob-body + .nob-body { margin-top: 16px; }
.nob-comparison { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nob-col-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.nob-col-label.bad { color: rgba(255,80,80,0.7); }
.nob-col-label.good { color: var(--blue); }
.nob-item { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 8px; }
.nob-item.bad::before { content: '\2715'; color: rgba(255,80,80,0.6); font-size: 11px; flex-shrink: 0; }
.nob-item.good::before { content: '\2713'; color: var(--blue); font-size: 11px; flex-shrink: 0; }


/* ─── PROJECT TYPES ───────────────────────────── */
.project-types-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.project-types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-type-card { background: rgba(28,59,121,0.12); border: 1px solid rgba(84,159,248,0.1); padding: 40px; position: relative; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.project-type-card:hover { border-color: rgba(84,159,248,0.3); background: rgba(28,59,121,0.25); }
.pt-num { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; color: rgba(84,159,248,0.06); line-height: 1; position: absolute; top: 20px; right: 28px; letter-spacing: -3px; }
.pt-icon { font-size: 32px; margin-bottom: 20px; }
.pt-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 12px; }
.pt-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.pt-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pt-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.3px; color: var(--blue); background: rgba(84,159,248,0.1); border: 1px solid rgba(84,159,248,0.2); padding: 4px 10px; border-radius: 2px; }


/* ─── PROCESS VERTICAL TIMELINE ───────────────── */
.process-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.process-timeline { margin-top: 64px; display: flex; flex-direction: column; gap: 0; }
.process-step-v { display: grid; grid-template-columns: 80px 1fr; gap: 0; position: relative; }
.process-step-v:not(:last-child) .step-line { position: absolute; left: 39px; top: 52px; bottom: -1px; width: 2px; background: rgba(84,159,248,0.15); }
.step-dot-col { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--dark); border: 2px solid rgba(84,159,248,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0; transition: border-color 0.3s, background 0.3s; z-index: 1; }
.process-step-v:hover .step-dot { border-color: var(--orange); background: rgba(237,143,58,0.1); color: var(--orange); }
.step-body { padding: 0 0 56px 32px; }
.step-title-v { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.step-desc-v { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 580px; }
.step-detail { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.step-pill { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--gray); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 5px 12px; border-radius: 20px; }


/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  nav.main-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-metrics-bg { display: none; }
  .hero-slash { display: none; }
  .section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(84,159,248,0.1); }
  .process-connector { display: none; }
  .cta-inner { flex-direction: column; padding: 72px 24px; }
  .cta-actions { align-items: flex-start; }
  .cta-right { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 56px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* Service page specific */
  .pillars-nav-inner { padding: 0 24px; }
  .inner, .section-inner, .tracking-inner, .faq-inner { padding-left: 24px; padding-right: 24px; }
  .ppc-layout { grid-template-columns: 1fr; gap: 48px; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .ai-layout { grid-template-columns: 1fr; gap: 48px; }
  .influencer-layout { grid-template-columns: 1fr; gap: 48px; }
  .tracking-layout { grid-template-columns: 1fr; gap: 48px; }
  .tracking-metrics { grid-template-columns: 1fr 1fr; }
  .process-steps-h { grid-template-columns: 1fr 1fr; }
  .process-step-h { border-right: none; border-bottom: 1px solid rgba(84,159,248,0.1); }
  .psh-arrow { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left-sticky { position: static; }
  .other-grid { grid-template-columns: 1fr; }

  /* About page */
  .hero-bg-word { display: none; }
  .hero-content { padding: 0 24px 80px; }
  .hero-statement { letter-spacing: -1.5px; }
  .hero-two-col { grid-template-columns: 1fr; gap: 48px; }
  .origin-inner, .roof-inner, .ai-inner, .values-inner, .advantage-statement, .advantage-body-wrap, .nocontract-inner { padding-left: 24px; padding-right: 24px; }
  .origin-layout { grid-template-columns: 1fr; gap: 56px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .roof-layout { grid-template-columns: 1fr; gap: 56px; }
  .roof-vs { display: none; }
  .ai-layout { grid-template-columns: 1fr; gap: 56px; }
  .ai-left-col { order: 2; }
  .ai-right-col { order: 1; }
  .ai-orb { padding-bottom: 80%; }
  .advantage-body-wrap { grid-template-columns: 1fr; gap: 48px; }
  .nocontract-inner { grid-template-columns: 1fr; gap: 56px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid rgba(84,159,248,0.1); }

  /* Web design page */
  .hero-code-bg { display: none; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .tech-layout { grid-template-columns: 1fr; gap: 48px; }
  .tech-inner { padding: 72px 24px; }
  .project-types-grid { grid-template-columns: 1fr; }
  .process-inner { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 32px; }
  .why-right { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps-h { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .tracking-metrics { grid-template-columns: 1fr; }
}
