/* ============================================
   THE LEAD PLUG — style.css
   Dark Industrial Marketing Site
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700;800&display=swap');

/* ——— CSS VARIABLES ——— */
:root {
  --orange: #F55B00;
  --orange-dark: #c94900;
  --orange-glow: rgba(245, 91, 0, 0.35);
  --orange-dim: rgba(245, 91, 0, 0.08);
  --orange-border: rgba(245, 91, 0, 0.25);

  --bg: #0F0F0F;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --bg-4: #222222;

  --text: #F0EDE8;
  --text-muted: #777777;
  --text-dim: #444444;

  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.12);

  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Barlow', sans-serif;

  --container: 1200px;
  --radius: 2px;
  --section-y: 110px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ——— GRAIN OVERLAY ——— */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
}

/* ——— LAYOUT ——— */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

/* ——— TYPOGRAPHY ——— */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 88px);
  letter-spacing: 3px;
  line-height: 0.93;
  color: var(--text);
  margin-bottom: 32px;
  /* Subtle text-shadow gives industrial depth on dark bg */
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  /* Tactile raised-slab industrial press effect */
  box-shadow: 0 5px 0 0 #8e3300, 0 8px 24px rgba(245, 91, 0, 0.18);
}

.btn-primary:hover {
  background: #e85200;
  box-shadow: 0 3px 0 0 #8e3300, 0 6px 30px rgba(245, 91, 0, 0.3);
  transform: translateY(2px);
}

.btn-primary:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 0 #8e3300, 0 2px 10px rgba(245, 91, 0, 0.15);
}

.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
  box-shadow: inset 0 0 0 1px var(--orange-border);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 14px;
  letter-spacing: 2.5px;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 11px;
}

/* ——— NAV ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.nav-logo .accent { color: var(--orange); }

.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* Keep btn-primary text white even inside nav-links (nav a selector is more specific) */
.nav-links .btn-primary,
.nav-links .btn-primary:hover {
  color: #fff;
}

/* ——— HAMBURGER ——— */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 600;
  position: relative;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

/* ——— MOBILE MENU ——— */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.15;
  padding: 8px 0;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu .btn {
  margin-top: 32px;
  font-size: 14px;
  padding: 18px 48px;
}

.mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--border-2);
  margin: 24px 0;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(245, 91, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 91, 0, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245, 91, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  display: none;
}

.hero-geo-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 91, 0, 0.12);
  border-radius: 50%;
}

.hero-geo-ring:nth-child(2) {
  inset: 60px;
  border-color: rgba(245, 91, 0, 0.08);
}

.hero-geo-ring:nth-child(3) {
  inset: 120px;
  border-color: rgba(245, 91, 0, 0.06);
}

.hero-slash {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
  opacity: 0.5;
  transform: skewX(-15deg);
  pointer-events: none;
  display: none;
}

.hero-slash::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 1px;
  background: inherit;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 130px);
  letter-spacing: 3px;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-headline .line-orange {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ——— PROBLEM ——— */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  /* Strategic orange accent: 3px top bar — intentional, not decorative */
  box-shadow: inset 0 3px 0 var(--orange);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.problem-card {
  background: var(--bg-3);
  padding: 40px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.problem-card:hover {
  border-left-color: var(--orange);
  background: var(--bg-4);
  transform: translateX(4px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--orange);
}

.problem-stat {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 2px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ——— SERVICES ——— */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.service-card {
  background: var(--bg-3);
  padding: 48px 40px;
  border-top: 3px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-top-color: var(--orange);
  background: var(--bg-4);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--orange);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1;
}

.service-card > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-features {
  flex: 1;
  margin-bottom: 40px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.service-features li:first-child {
  border-top: 1px solid var(--border);
}

.service-features li::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* ——— HOW IT WORKS ——— */
.how-it-works {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  letter-spacing: 2px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  opacity: 0.9;
}

.step-body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
  padding-top: 12px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* ——— PRICING ——— */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.pricing-card {
  background: var(--bg-3);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-2);
}

.pricing-card.featured {
  background: var(--bg-4);
  border: 2px solid var(--orange);
  order: -1;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 24px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.pricing-features {
  flex: 1;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:first-child {
  border-top: 1px solid var(--border);
}

.pricing-features li svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ——— PRICING: NEW PRICE STRUCTURE ——— */
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

/* The "one-time" / "setup" pill tag next to the big price number */
.pricing-price-unit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  padding: 5px 10px;
  align-self: center;
  flex-shrink: 0;
}

/* "then $75/mo maintenance" line under the main price */
.pricing-price-then {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

/* Small disclaimer — e.g. "3-month minimum · Ad spend billed separately" */
.pricing-price-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* Savings callout on the bundle card */
.pricing-savings {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 11px 16px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-savings svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Section label inside a feature list, e.g. "Maintenance includes" */
.pricing-features li.pricing-features-divider {
  display: block;
  /* No border-top here: the preceding li's border-bottom already separates them */
  border-bottom: none;
  padding: 20px 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
  gap: 0;
}

/* First divider has no preceding li, so we supply the top border */
.pricing-features li.pricing-features-divider:first-child {
  border-top: 1px solid var(--border);
  padding-top: 0;
}

/* ——— TESTIMONIALS ——— */
.testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.testimonial-card {
  background: var(--bg-3);
  padding: 40px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-top-color: var(--orange);
  transform: translateY(-4px);
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  quotes: "\201C" "\201D";
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  line-height: 0;
  vertical-align: -20px;
  margin-right: 4px;
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 12px;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.author-biz {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ——— TESTIMONIALS PLACEHOLDER ——— */
.testimonials-placeholder {
  border: 1px dashed rgba(245, 91, 0, 0.25);
  padding: 64px 40px;
  text-align: center;
}

.testimonials-placeholder p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ——— FINAL CTA ——— */
.final-cta {
  background: var(--bg);
  /* Diagonal cut — breaks the horizontal monotony */
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: calc(var(--section-y) + 40px);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245, 91, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 3px;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-logo .accent { color: var(--orange); }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: var(--orange);
}

.footer-contact-info svg {
  flex-shrink: 0;
  color: var(--orange);
}

.footer-nav-group h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-group a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav-group a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-location svg {
  color: var(--orange);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ——— ANIMATIONS ——— */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ——— CONTACT PAGE ——— */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(245, 91, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 91, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  text-align: center;
}

.contact-hero .section-headline {
  font-size: clamp(56px, 9vw, 96px);
}

.contact-hero .section-label {
  justify-content: center;
}

.contact-hero .section-label::before {
  display: none;
}

.contact-hero .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.calendly-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.calendly-inner {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 700px;
}

/* ——— RESPONSIVE: 768px ——— */
@media (min-width: 768px) {
  :root {
    --section-y: 130px;
  }

  .nav-links { display: flex; }
  .hamburger { display: none; }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .step {
    flex-direction: column;
    flex: 1;
    min-width: 220px;
    padding: 40px 32px 40px 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
    gap: 16px;
  }

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

  .step-number {
    width: auto;
  }

  .step-body h3 {
    padding-top: 0;
  }

  .step-body p {
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    order: unset;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-geo { display: block; }
  .hero-slash { display: block; }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 900px;
  }
}

/* ——— CONTACT: TRUST BADGES ——— */
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 8px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 10px 18px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

/* ——— CONTACT: WHAT TO EXPECT ——— */
.expect-grid {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  text-align: left;
}

.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.expect-item:first-child {
  border-top: 1px solid var(--border);
}

.expect-num {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  opacity: 0.85;
}

.expect-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ——— GLOBAL FOCUS STYLES (accessibility) ——— */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Override for .btn which has its own focus rule */
.btn:focus-visible {
  outline-offset: 4px;
}

/* ——— REDUCED MOTION ——— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
    scroll-behavior: auto !important;
  }

  body::after {
    animation: none;
  }

  /* Reveal fade-ins immediately — don't hide content */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-badge::before {
    animation: none;
  }
}
