/* ═══════════════════════════════════════════════
   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;
}

*, *::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 hero is full-viewport behind transparent nav */
.mainContent:has(.hero) {
  padding-top: 0;
}


/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  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; }
  .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; }
  .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; }
}

@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; }
}
