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

:root {
  /* Brand colors — matched to optimized logo */
  --orange: #FF5C00;
  --orange-hot: #FF8C00;
  --cyan: #00D4FF;
  --cyan-dim: #0099CC;
  --yellow: #FFD600;

  /* Background scale — dark navy matching logo */
  --black: #04101e;       /* logo background navy */
  --off-black: #060f1a;   /* slightly lighter for cards */
  --dark: #0a1628;        /* card surfaces */
  --dark2: #0f1f38;       /* elevated elements */

  --white: #FFFFFF;
  --grey: #8899aa;        /* slightly blue-tinted grey to match navy palette */
  --border: #1a2d44;      /* navy-tinted borders */
  --green: #00E676;
  --font: 'Inter', system-ui, sans-serif;
  --max: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== INDUSTRY PAGE CONTENT WRAPPING ===== */
.content-main, .content-main p, .content-main li,
.page-h1, .page-intro, .sidebar-card, .faq-item p,
.keyword-tag {
  word-break: break-word;
  overflow-wrap: break-word;
}
.content-grid, .faq-grid, .keyword-grid, .related-grid {
  max-width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  white-space: nowrap;
  text-transform: uppercase;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn-fire, .btn-outline {
    font-size: 13px;
    padding: 14px 20px;
    white-space: normal;
    text-align: center;
  }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    word-break: break-word;
  }
}
.btn-fire {
  background: var(--orange);
  color: var(--white);
  padding: 18px 36px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-fire:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 92, 0, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 17px 35px;
  border: 2px solid #333;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-full { width: 100%; }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-nav:hover { background: var(--orange-hot); }

/* ===== LABELS ===== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

/* ===== NAV ===== */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4,16,30,0.95);   /* matches logo navy */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.12); /* subtle cyan border */
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* PNG logo — nav */
.logo-img-nav {
  height: 52px;
  width: 52px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (max-width: 768px) {
  .logo-img-nav {
    height: 44px;
    width: 44px;
  }
  .nav { padding: 0 16px; }
}
.logo-img-nav:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.5));
}

/* PNG logo — footer */
.logo-img-footer {
  height: 120px;
  width: 120px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-img-footer:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(0,212,255,0.4));
}

/* Legacy SVG — kept for questionnaire.html until updated */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo-img:hover { transform: scale(1.05); }
.logo-svg {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-svg:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 92, 0, 0.6));
}
.logo-svg-footer {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-svg-footer:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 92, 0, 0.8));
}

/* ===== LOGO MARK ===== */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-wordmark-top {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.logo-wordmark-top span { color: var(--orange); }
.logo-wordmark-bottom {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.logo-text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.logo-text-accent { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Menu Active State */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  gap: 16px;
  z-index: 99;
}

.nav-links.active li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.nav-links.active li:last-child {
  border-bottom: none;
  padding-top: 16px;
}

.nav-links.active a {
  display: block;
  padding: 8px 0;
}

/* Mobile menu hamburger animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce {
  background: var(--orange);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  position: relative;
  z-index: 101;
}
.announce strong { color: var(--yellow); }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 120px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 65% 35%, rgba(255, 92, 0, 0.11) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 15% 70%, rgba(0, 212, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 300px 200px at 80% 85%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 32px;
}
.hero-eyebrow::before { content: '▶'; font-size: 8px; }
.hero-headline {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hero-headline .line2 {
  color: var(--orange);
  display: block;
  -webkit-text-stroke: 0px;
}
.hero-headline .line3 {
  display: block;
  color: var(--white);
}
.hero-sub-head {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-top: 16px;
  margin-bottom: 32px;
}
.hero-body {
  font-size: 18px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-body strong { color: var(--white); }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
/* ── Hero 2-column grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; }

/* Locate Us link */
.hero-locate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--grey);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: fit-content;
  transition: border-color 0.2s, color 0.2s;
}
.hero-locate:hover { border-color: var(--orange); color: var(--white); }
.locate-pin { font-size: 14px; }
.locate-arrow { color: var(--orange); font-weight: 700; }

/* Right column: brand + phone */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Logo above phone */
.hero-brand-display {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.06);
}
.hero-logo-graphic {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ── Phone Mockup ── */
.phone-mockup-wrap {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
.phone-frame {
  background: #060d16;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 14px 10px 18px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.9),
    0 24px 60px rgba(0,0,0,0.5),
    0 0 48px rgba(255,92,0,0.07);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 64px;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  font-family: -apple-system, 'Roboto', sans-serif;
}

/* Search bar */
.phone-searchbar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f1f3f4;
  padding: 8px 10px;
  border-bottom: 1px solid #e0e0e0;
}
.phone-query {
  font-size: 11px;
  color: #202124;
  font-weight: 500;
  letter-spacing: 0;
}

/* Maps sub-header */
.phone-maps-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: #e8f0fe;
  border-bottom: 1px solid #d2e3fc;
}
.maps-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.maps-dot--orange { background: #FF5C00; }
.maps-dot--blue { background: #1a73e8; }
.maps-dot--grey { background: #bbb; }
.phone-maps-label { font-size: 9px; color: #1967d2; font-weight: 600; margin-left: 2px; }

/* 3-Pack container */
.maps-pack { background: #fff; }

/* Result #1 — Us */
.maps-r1 {
  border-left: 3px solid var(--orange);
  background: #fff8f5;
  padding: 9px 8px 7px;
  border-bottom: 1px solid #eee;
}
.maps-r1-top {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.maps-rank-badge {
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.maps-biz-info { flex: 1; }
.maps-biz-name { font-size: 11px; font-weight: 700; color: #202124; line-height: 1.3; }
.maps-biz-stars { font-size: 10px; color: #555; display: flex; align-items: center; gap: 3px; margin: 2px 0; }
.star-fill { color: #fbbc04; font-size: 10px; letter-spacing: -1px; }
.star-dim { color: #ccc; font-size: 10px; letter-spacing: -1px; }
.maps-rating { font-weight: 700; color: #202124; font-size: 9px; }
.maps-reviews { color: #70757a; font-size: 9px; }
.maps-biz-type { font-size: 9px; color: #1e8e3e; font-weight: 600; }
.maps-dim { color: #aaa !important; }

/* Pulsing pin */
.pin-pulse {
  font-size: 16px;
  flex-shrink: 0;
  display: inline-block;
  animation: pinPulse 1.6s ease-in-out infinite;
  margin-top: 1px;
}
@keyframes pinPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-4px) scale(1.2); }
}

/* Action buttons row */
.maps-r1-actions {
  display: flex;
  gap: 5px;
  margin-top: 7px;
}
.maps-action-call,
.maps-action-dir,
.maps-action-web {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
  cursor: default;
}
.maps-action-call { background: #1a73e8; color: #fff; }
.maps-action-dir  { background: transparent; border: 1px solid #1a73e8; color: #1a73e8; }
.maps-action-web  { background: transparent; border: 1px solid #ddd; color: #555; }

/* Results #2 and #3 */
.maps-r2,
.maps-r3 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0.55;
}
.maps-r3 { opacity: 0.35; border-bottom: none; }
.maps-rank-dim {
  font-size: 9px;
  font-weight: 800;
  color: #999;
  width: 20px;
  flex-shrink: 0;
}

/* Glow beneath phone */
.phone-glow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 32px;
  background: rgba(255,92,0,0.28);
  filter: blur(18px);
  border-radius: 50%;
  z-index: 1;
}

/* Big number strip */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #1e1e1e;
  margin-top: 80px;
}
.strip-item {
  padding: 32px;
  border-right: 1px solid #1e1e1e;
  position: relative;
}
.strip-item:last-child { border-right: none; }
.strip-num {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.strip-label {
  font-size: 13px;
  color: var(--grey);
  font-weight: 500;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== WAR SECTION ===== */
.war {
  padding: 120px 0;
  background: var(--off-black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.war-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  font-weight: 900;
  letter-spacing: -20px;
  color: rgba(255,255,255,0.015);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.war-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #1a1a1a;
  position: relative;
  z-index: 1;
}
.war-col {
  background: var(--off-black);
  padding: 56px 48px;
}
.war-col--us { background: linear-gradient(135deg, rgba(255,92,0,0.08) 0%, var(--off-black) 60%); }
.war-col-header {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 2px solid;
}
.war-col--us .war-col-header { color: var(--orange); border-color: var(--orange); }
.war-col--them .war-col-header { color: #444; border-color: #333; }
.war-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}
.war-col--us .war-item { color: var(--white); }
.war-col--them .war-item { color: #555; }
.war-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ===== PROBLEMS ===== */
.problems {
  padding: 120px 0;
  background: var(--black);
}
.problems-intro {
  max-width: 700px;
  margin-bottom: 72px;
}
.problems-intro h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.problems-intro h2 em { color: var(--orange); font-style: normal; }
.problems-intro p { font-size: 17px; color: var(--grey); line-height: 1.7; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #111;
}
.prob-card {
  background: var(--black);
  padding: 48px 40px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.prob-card:hover { border-left-color: var(--orange); background: rgba(255,92,0,0.03); }
.prob-big {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -3px;
}
.prob-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.prob-card p { font-size: 14px; color: var(--grey); line-height: 1.65; max-width: 380px; }
.prob-bottom {
  margin-top: 2px;
  background: var(--orange);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prob-bottom-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.prob-bottom-text strong { color: var(--yellow); }

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--off-black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
}
.services-header h2 em { color: var(--orange); font-style: normal; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #111;
}
.svc {
  background: var(--off-black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.svc:hover { background: #141414; }
.svc-num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
  letter-spacing: -4px;
  pointer-events: none;
}
.svc-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.svc h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.svc-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}
.svc > p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 24px;
}
.svc-list li {
  font-size: 13px;
  color: #777;
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===== AUDIT ===== */
.audit {
  padding: 120px 0;
  background: var(--black);
}
.audit-wrap {
  border: 1px solid #1e1e1e;
  display: grid;
  grid-template-columns: 1fr 400px;
}
.audit-left {
  padding: 64px 56px;
  border-right: 1px solid #1e1e1e;
}
.audit-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.audit-left h2 em { color: var(--orange); font-style: normal; display: block; }
.audit-lead {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 32px;
}
.audit-lead strong { color: var(--white); }
.audit-items {
  margin-bottom: 40px;
}
.audit-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.audit-item:last-child { border-bottom: none; }
.audit-arrow {
  color: var(--orange);
  font-weight: 900;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.audit-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.audit-item-text p { font-size: 13px; color: var(--grey); line-height: 1.5; }
.audit-price-strip {
  background: var(--orange);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.audit-price-big {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.audit-price-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 280px;
}
.audit-right {
  padding: 48px 36px;
  background: #080808;
}
.audit-right h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
}
.audit-areas {
  counter-reset: audit-counter;
}
.audit-area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #111;
  counter-increment: audit-counter;
}
.audit-area:last-child { border-bottom: none; }
.audit-area::before {
  content: counter(audit-counter, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  width: 24px;
}
.audit-area span { font-size: 13px; color: #888; word-break: break-word; overflow-wrap: break-word; }
.audit-quote-box {
  margin-top: 28px;
  background: rgba(255,92,0,0.08);
  border-left: 3px solid var(--orange);
  padding: 20px;
}
.audit-quote-box p {
  font-size: 13px;
  color: #888;
  font-style: italic;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: var(--off-black);
  border-top: 1px solid #1a1a1a;
}
.pricing-head {
  margin-bottom: 64px;
}
.pricing-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-head h2 em { color: var(--orange); font-style: normal; }
.pricing-head p { font-size: 16px; color: var(--grey); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #111;
  margin-bottom: 64px;
}
.price-card {
  background: var(--off-black);
  padding: 48px 36px;
  position: relative;
  transition: background 0.2s;
}
.price-card:hover { background: #141414; }
.price-card--hot {
  background: var(--black);
  border: 1px solid rgba(255,92,0,0.4);
  margin: -1px;
  z-index: 1;
}
.price-card--hot:hover { background: #0a0a0a; }
.price-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.price-tier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.price-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -3px;
  margin-bottom: 4px;
}
.price-num span { font-size: 24px; font-weight: 600; color: var(--grey); letter-spacing: 0; }
.price-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #222;
}
.price-features li {
  font-size: 13px;
  color: #777;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
}
.price-features li strong { color: var(--white); }
.price-cta { margin-top: 32px; }

.addons-wrap {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 48px;
  margin-bottom: 40px;
}
.addons-wrap h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.addon-row:last-child { border-bottom: none; }
.addon-name { font-size: 14px; color: #888; }
.addon-price { font-size: 14px; font-weight: 800; color: var(--orange); white-space: nowrap; }

.guarantee-box {
  background: var(--black);
  border: 1px solid #1e1e1e;
  border-left: 4px solid var(--orange);
  padding: 40px 48px;
}
.guarantee-box h3 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.guarantee-box p { font-size: 15px; color: var(--grey); line-height: 1.7; }
.guarantee-box strong { color: var(--white); }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.about-content .label { margin-bottom: 24px; }
.about-content h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 32px;
}
.about-content h2 em { color: var(--orange); font-style: normal; display: block; }
.about-content p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-content strong { color: var(--white); }
.about-quote {
  margin-top: 40px;
  padding: 32px;
  background: #0a0a0a;
  border-left: 4px solid var(--orange);
}
.about-quote p {
  font-size: 17px;
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-quote cite {
  font-size: 12px;
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 28px;
  border-left: 3px solid var(--orange);
}
.sidebar-card h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.sidebar-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }
.sidebar-card li {
  font-size: 13px;
  color: var(--grey);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li.bad::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 900;
}
.sidebar-card li.good::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.sidebar-card strong { color: var(--white); }

/* ===== SOCIAL PROOF ===== */
.proof {
  padding: 100px 0;
  background: #050505;
  border-top: 1px solid #111;
}

.proof-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.proof-header h2 { margin-bottom: 14px; }
.proof-sub { color: var(--grey); font-size: 17px; line-height: 1.6; }

/* Stats bar */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 64px;
}
.proof-stat {
  background: #0a0a0a;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}
.proof-stat:hover { background: #0f0f0f; }
.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Case study cards */
.proof-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.case-card {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.case-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}
.case-card--featured {
  border-color: var(--orange);
  background: #100900;
}
.case-card--featured:hover { border-color: var(--orange-hot); }
.case-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.case-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.case-result {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.case-story {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 24px;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
}
.metric { text-align: center; }
.metric-val {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.metric-key {
  display: block;
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.2s;
}
.testimonial:hover { border-color: #2a2a2a; }
.testi-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { border-top: 1px solid #1a1a1a; padding-top: 16px; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-biz { font-size: 12px; color: #555; margin-top: 3px; }

/* Proof CTA */
.proof-cta {
  text-align: center;
  padding: 48px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.proof-cta p {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

/* Proof responsive */
@media (max-width: 900px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-cases { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 26px; }
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 80px 0;
  background: var(--off-black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid var(--border);
}
.industries h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 32px;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.niche-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #222;
  color: var(--grey);
  transition: all 0.15s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.niche-tag:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,92,0,0.05); }
a.niche-tag { text-decoration: none; display: inline-block; }
.industries-note { font-size: 13px; color: #555; }

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.location-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.location-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,212,255,0.08);
}
.loc-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.location-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.location-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.loc-link { font-size: 13px; font-weight: 700; color: var(--cyan); }

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
  padding: 80px 0;
  background: var(--off-black);
  border-top: 1px solid var(--border);
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,92,0,0.08);
}
.blog-card-tag {
  display: inline-block;
  background: rgba(255,92,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,92,0,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}
.blog-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.4; margin-bottom: 12px; }
.blog-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.blog-card-cta { font-size: 13px; font-weight: 700; color: var(--cyan); margin-top: auto; }

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.contact-content h2 em { color: var(--orange); font-style: normal; display: block; }
.contact-content p { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-method:hover { color: var(--orange); }
.cm-icon {
  width: 44px;
  height: 44px;
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 48px;
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid #222;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group select option { background: #0a0a0a; }
.form-note { font-size: 12px; color: #555; text-align: center; margin-top: 12px; }
.form-intro { font-size: 14px; color: var(--grey); margin-bottom: 24px; margin-top: -8px; }
.label-optional { font-weight: 400; color: #555; font-size: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Checkboxes */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid #1e1e1e;
  transition: all 0.15s;
}
.check-item:hover { border-color: var(--orange); color: var(--white); }
.check-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}
.check-item input[type="checkbox"]:checked + * { color: var(--white); }

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--green);
  color: #000;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.form-success h3 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }
.form-success-sub { font-size: 14px !important; }
.form-success-link { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* Onboarding page styles */
.ob-wrap { max-width: 800px; margin: 0 auto; padding: 120px 32px 80px; }
.ob-header { margin-bottom: 56px; }
.ob-header .label { margin-bottom: 16px; }
.ob-header h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: -2px; line-height: 1.05; margin-bottom: 16px; }
.ob-header h1 em { color: var(--orange); font-style: normal; display: block; }
.ob-header p { font-size: 16px; color: var(--grey); line-height: 1.7; }
.ob-progress { display: flex; gap: 0; margin-bottom: 48px; }
.ob-step { flex: 1; padding: 12px 16px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #444; border-bottom: 2px solid #222; transition: all 0.2s; }
.ob-step.active { color: var(--orange); border-bottom-color: var(--orange); }
.ob-step.done { color: var(--green); border-bottom-color: var(--green); }
.ob-section { display: none; }
.ob-section.active { display: block; }
.ob-section-title { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid #1e1e1e; }
.ob-group { margin-bottom: 20px; }
.ob-group label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.ob-group .hint { font-size: 11px; color: #555; margin-bottom: 6px; font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; }
.ob-group input,
.ob-group select,
.ob-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid #222;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.ob-group input:focus, .ob-group select:focus, .ob-group textarea:focus { border-color: var(--orange); }
.ob-group select option { background: #111; }
.ob-group textarea { min-height: 90px; }
.ob-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ob-row { grid-template-columns: 1fr; } }
.ob-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ob-check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid #1e1e1e; font-size: 13px; color: var(--grey); cursor: pointer; transition: all 0.15s; }
.ob-check:hover { border-color: var(--orange); color: var(--white); }
.ob-check input { accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.ob-radio-group { display: flex; flex-direction: column; gap: 8px; }
.ob-radio { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid #1e1e1e; font-size: 13px; color: var(--grey); cursor: pointer; transition: all 0.15s; }
.ob-radio:hover { border-color: var(--orange); color: var(--white); }
.ob-radio input { accent-color: var(--orange); flex-shrink: 0; }
.ob-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid #1e1e1e; }
.ob-nav-right { display: flex; gap: 12px; align-items: center; }
.ob-skip { font-size: 12px; color: #555; cursor: pointer; text-decoration: underline; }
.ob-skip:hover { color: var(--grey); }
.ob-success { text-align: center; padding: 60px 20px; }
.ob-success-icon { width: 80px; height: 80px; background: var(--orange); color: var(--white); font-size: 36px; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }
.ob-success h2 { font-size: 40px; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 16px; }
.ob-success p { font-size: 16px; color: var(--grey); line-height: 1.7; max-width: 520px; margin: 0 auto 24px; }
.ob-back-link { font-size: 13px; color: #555; text-decoration: underline; cursor: pointer; }

/* ===== FOOTER ===== */
.footer {
  background: var(--off-black);
  border-top: 1px solid #1a1a1a;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 32px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo { height: 34px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--grey); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact { font-size: 13px; color: #555; margin-top: 6px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #555; transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
  align-items: start;
}
.footer-brand {}
.footer-brand .footer-tagline { font-size: 13px; color: var(--grey); font-weight: 700; margin: 12px 0 8px; }
.footer-desc { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.footer-contact { font-size: 13px; color: #555; margin-top: 6px; }
.footer-contact a { color: var(--grey); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-address { font-size: 12px; color: #444; margin-top: 6px; line-height: 1.5; }
.footer-address a { color: #444; text-decoration: none; transition: color 0.2s; }
.footer-address a:hover { color: var(--grey); }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #555; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li:not(:has(a)) { font-size: 13px; color: #444; }
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #444; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 200px 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; grid-row: 1 / 3; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0 24px; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .audit-wrap { grid-template-columns: 1fr; }
  .audit-right { border-top: 1px solid #1e1e1e; border-right: none; }
  .audit-left { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--hot { margin: 0; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; flex-direction: row; justify-content: center; gap: 32px; }
  .hero-brand-display { max-width: 280px; }
  .phone-mockup-wrap { width: 200px; }
}
@media (max-width: 600px) {
  .hero-right { flex-direction: column; align-items: center; }
  .hero-brand-display { max-width: 100%; }
  .phone-mockup-wrap { width: 200px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 28px 32px;
    gap: 20px;
    align-items: flex-start;
    display: none;
  }
  .nav-links.open { display: flex; }
  .btn-nav { width: 100%; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item { padding: 20px 16px; }
  .strip-num { font-size: clamp(28px, 6vw, 40px); }
  .war-grid { grid-template-columns: 1fr; }
  .war-col--them { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px; }
  .addons-wrap { padding: 28px; }
  .audit-left { padding: 36px 28px; }
  .container { padding: 0 20px; }
}

/* ===== EXIT INTENT POPUP ===== */
.exit-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  z-index: 9000;
  animation: fadeIn 0.25s ease;
}
.exit-backdrop.show { display: block; }

.exit-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(600px, calc(100vw - 32px));
  background: #0a0a0a;
  border: 1px solid #FF5C00;
  border-radius: 8px;
  padding: 40px 36px;
  z-index: 9001;
  box-shadow: 0 0 60px rgba(255,92,0,0.2);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
.exit-popup.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.exit-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #555;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.exit-close:hover { color: #fff; }
.exit-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.exit-popup h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.exit-popup p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.exit-sub { font-size: 13px !important; color: #666 !important; }
.exit-field-row {
  display: flex;
  gap: 8px;
  margin: 20px 0 8px;
}
.exit-input {
  flex: 1;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.exit-input:focus {
  outline: none;
  border-color: var(--orange);
}
.exit-btn { white-space: nowrap; }
.exit-disclaimer { font-size: 11px !important; color: #444 !important; }
.exit-success {
  text-align: center;
  padding: 24px 0 8px;
}
.exit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.exit-success p { color: var(--white) !important; font-size: 17px !important; font-weight: 600; }

@media (max-width: 540px) {
  .exit-popup { padding: 28px 20px; }
  .exit-field-row { flex-direction: column; }
  .exit-popup h3 { font-size: 20px; }
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border-top: 1px solid #FF5C00;
  padding: 14px 24px;
  z-index: 8000;
  align-items: center;
  gap: 20px;
  animation: slideUpBar 0.3s ease;
}
.sticky-cta.show { display: flex; }
@keyframes slideUpBar {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sticky-text {
  flex: 1;
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}
.sticky-text strong { color: var(--orange); }
.sticky-btn { white-space: nowrap; flex-shrink: 0; }
.sticky-close {
  background: none;
  border: none;
  color: #555;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.sticky-close:hover { color: #fff; }
@media (max-width: 640px) {
  .sticky-cta {
    flex-wrap: nowrap;
    padding: 10px 12px;
    gap: 10px;
    align-items: center;
  }
  .sticky-text {
    font-size: 11px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
  }
  .sticky-text strong { display: inline; }
  .sticky-btn {
    font-size: 11px;
    padding: 8px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .sticky-close { font-size: 18px; padding: 2px; flex-shrink: 0; }
}
