/* ============================================================
   AGENT TRADIE - Brand Identity v1.0
   Colours: Black #000, Charcoal #222, Volt #D0FF00, Grey #ECECEC, White #FFF
   Fonts: Barlow Condensed 900 (hero), Barlow 700 (headings), DM Sans 400 (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --black:     #000000;
  --charcoal:  #222222;
  --volt:      #D0FF00;
  --grey:      #ECECEC;
  --white:     #FFFFFF;
  --mid-grey:  #888888;
  --nav-h:     66px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

/* ---------- HELPERS ---------- */
.label {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1rem;
}

.label-light {
  color: rgba(255,255,255,.45);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s, box-shadow .15s, background .15s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-volt {
  background: var(--volt);
  color: var(--black);
  border-color: var(--black);
}
.btn-volt:hover { box-shadow: 4px 4px 0 var(--black); }

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { box-shadow: 4px 4px 0 rgba(0,0,0,.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,.25);
}
.btn-outline-dark:hover { border-color: var(--black); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  height: var(--nav-h);
  border-bottom: 2px solid var(--charcoal);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--volt);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer;
  margin-left: auto; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 28px 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,255,0,.12);
  border: 1px solid rgba(208,255,0,.3);
  color: var(--volt);
  padding: 5px 14px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--volt);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--volt);
}

.hero-sub-block { margin-top: 2.5rem; }
.hero-sub-block p {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero logo right */
.hero-logo-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.hero-logo-right img {
  width: 100%;
  max-width: 680px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 80px rgba(208,255,0,0.12));
}

/* Hero card */
.hero-card {
  background: var(--charcoal);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 32px 28px;
  margin-top: 24px;
  flex-shrink: 0;
}

.hero-card-label {
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.4rem;
}

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 1.8rem;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.hc-check {
  color: var(--volt);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-card-price {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .3rem;
}
.hero-card-price strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.hero-card-price span { color: rgba(255,255,255,.4); font-size: .85rem; }

.hero-card-note { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: .4rem; }

/* ---------- TICKER ---------- */
.ticker-wrap {
  background: var(--volt);
  overflow: hidden;
  padding: 13px 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.ticker {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker span {
  font-family: 'Barlow', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
}

.ticker-dot { opacity: .35; }

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

/* ---------- PROBLEM SECTION ---------- */
.problem-section {
  background: var(--white);
  padding: 90px 28px;
  border-bottom: 2px solid var(--black);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 { margin-top: .5rem; max-width: 420px; }
.problem-left p {
  color: var(--mid-grey);
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 400px;
  line-height: 1.7;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1.5px solid var(--grey);
}
.problem-item:first-child { border-top: 1.5px solid var(--grey); }

.problem-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--grey);
  line-height: 1;
  min-width: 40px;
}

.problem-body h3 { margin-bottom: .3rem; font-size: 1rem; }
.problem-body p { font-size: .9rem; color: var(--mid-grey); line-height: 1.6; }

/* ---------- SERVICES ---------- */
.services-section {
  background: var(--black);
  padding: 90px 28px;
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-header { margin-bottom: 3rem; }
.services-header h2 { color: var(--white); margin-top: .5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-block {
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,.1);
  transition: transform .15s, border-color .15s;
  background: var(--charcoal);
}
.service-block:hover { transform: translateY(-4px); border-color: var(--volt); }

.service-block.service-featured {
  background: var(--volt);
  border-color: var(--volt);
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  opacity: .2;
  margin-bottom: 1.4rem;
  line-height: 1;
  color: var(--white);
}
.service-featured .service-num { color: var(--black); }

.service-block h3 { color: var(--white); margin-bottom: .75rem; }
.service-featured h3 { color: var(--black); }

.service-block p { font-size: .92rem; flex: 1; margin-bottom: 2rem; line-height: 1.65; color: rgba(255,255,255,.55); }
.service-featured p { color: rgba(0,0,0,.65); }

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(208,255,0,.15);
  color: var(--volt);
  align-self: flex-start;
}
.service-featured .service-badge {
  background: rgba(0,0,0,.12);
  color: var(--black);
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  background: var(--grey);
  padding: 90px 28px;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.how-inner { max-width: 1100px; margin: 0 auto; }

.how-header { margin-bottom: 3.5rem; }
.how-header h2 { margin-top: .5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.step-block {
  background: var(--white);
  padding: 40px 32px;
}

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--volt);
  background: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  line-height: 1;
}

.step-body h3 { margin-bottom: .65rem; font-size: 1.05rem; }
.step-body p  { color: var(--mid-grey); font-size: .92rem; line-height: 1.65; }

.how-note {
  text-align: center;
  font-size: .88rem;
  font-style: italic;
  color: var(--mid-grey);
}

/* ---------- STATS ---------- */
.stats-section { background: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}

.stat-block {
  padding: 52px 36px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transition: background .15s;
}
.stat-block:hover { background: var(--volt); }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: .5rem;
  color: var(--black);
}

.stat-label {
  font-size: .88rem;
  color: var(--mid-grey);
  line-height: 1.5;
}

/* ---------- PRICING ---------- */
.pricing-section {
  background: var(--black);
  padding: 90px 28px;
  border-top: 2px solid var(--black);
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header { margin-bottom: 3.5rem; max-width: 500px; }
.pricing-header h2 { color: var(--white); margin: .5rem 0 .75rem; }
.pricing-header p  { font-size: .9rem; color: rgba(255,255,255,.4); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
}

.pricing-card {
  background: var(--charcoal);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  transition: transform .15s, border-color .15s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); }

.pricing-hero {
  background: var(--volt);
  border-color: var(--volt);
}
.pricing-hero:hover { border-color: var(--volt); }

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--volt);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
  white-space: nowrap;
  border: 2px solid var(--black);
}
.pricing-hero .plan-badge-top { background: var(--black); color: var(--volt); }

.plan-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .5rem;
}
.pricing-hero .plan-eyebrow { color: rgba(0,0,0,.5); }

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: .3rem;
  color: var(--white);
  line-height: 1;
}
.plan-price span { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 400; color: rgba(255,255,255,.4); }
.pricing-hero .plan-price { color: var(--black); }
.pricing-hero .plan-price span { color: rgba(0,0,0,.45); }

.plan-pitch {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 2rem;
  min-height: 2.5rem;
}
.pricing-hero .plan-pitch { color: rgba(0,0,0,.55); }

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2.2rem;
}
.plan-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--volt);
  font-weight: 700;
}
.pricing-hero .plan-list li { color: rgba(0,0,0,.7); }
.pricing-hero .plan-list li::before { color: var(--black); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--white);
  padding: 90px 28px;
  border-top: 2px solid var(--black);
}

.testimonials-inner { max-width: 1100px; margin: 0 auto; }

.testimonials-header { margin-bottom: 3rem; }
.testimonials-header h2 { margin-top: .5rem; }

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

.tcard {
  border-radius: 8px;
  padding: 36px 28px;
  border: 2px solid var(--black);
  transition: transform .15s, box-shadow .15s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 5px 5px 0 var(--black); }

.tcard-dark { background: var(--black); }
.tcard-volt { background: var(--volt); }
.tcard-grey { background: var(--grey); }

.tcard-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: .7;
  margin-bottom: 1rem;
  opacity: .15;
  color: var(--black);
  user-select: none;
}
.tcard-dark .tcard-quote { color: var(--white); }

.tcard p {
  font-size: .95rem;
  color: var(--black);
  line-height: 1.68;
  margin-bottom: 1.8rem;
}
.tcard-dark p { color: rgba(255,255,255,.7); }

.tcard-author { display: flex; flex-direction: column; gap: 2px; }
.tcard-author strong { font-size: .87rem; font-weight: 700; color: var(--black); }
.tcard-author span   { font-size: .78rem; color: rgba(0,0,0,.45); }
.tcard-dark .tcard-author strong { color: var(--white); }
.tcard-dark .tcard-author span { color: rgba(255,255,255,.4); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--volt);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 90px 28px;
  text-align: center;
}

.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p  { font-size: 1rem; color: rgba(0,0,0,.55); margin-bottom: 2.5rem; line-height: 1.7; }

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--black);
  padding: 90px 28px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin: .5rem 0 1rem; color: var(--white); }
.contact-info > p { font-size: .95rem; color: var(--mid-grey); margin-bottom: 2.2rem; line-height: 1.7; }

.contact-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-meta li { font-size: .88rem; color: var(--mid-grey); display: flex; align-items: center; gap: 8px; }

.contact-form {
  background: #111111;
  border: 2px solid #222222;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: 'Barlow', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.field input,
.field textarea,
.field select {
  background: var(--charcoal);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(208,255,0,.1);
}
.field select option { background: var(--charcoal); color: var(--white); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  border-top: 2px solid var(--charcoal);
  padding: 52px 28px 28px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-brand .logo-mark-f {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand .logo-badge-f {
  background: var(--volt);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.3); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .85rem; transition: color .15s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--white); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-logo-right img { max-width: 220px; }
  .hero-card         { max-width: 400px; }
  .problem-inner     { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .steps-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid        { gap: 2px; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 440px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--charcoal);
    flex-direction: column;
    padding: 16px 28px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .95rem; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-top { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; }
}

/* Contact skip note */
.contact-skip-note {
  font-size: .9rem;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}
.contact-skip-link {
  color: var(--volt);
  text-decoration: none;
  font-weight: 500;
}
.contact-skip-link:hover {
  text-decoration: underline;
}

/* Hero stat band */
.hero-stat-band {
  background: #111111;
  width: 100%;
  padding: 48px 24px;
  text-align: center;
}
.hero-stat-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.hero-stat-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  color: #C8FF00;
  line-height: 1;
  margin: 0 0 8px;
}
.hero-stat-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 12px;
}
.hero-stat-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
}

/* Problem section stat lines */
.problem-stat {
  font-size: 0.8rem;
  font-style: italic;
  color: #888888;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Stats citation before footer */
.stats-citation {
  text-align: center;
  font-size: 11px;
  color: #444;
  padding: 16px 24px;
  background: #0d0d0d;
}
