/* ============================================================
   We Buy Any Argo — Main Stylesheet
   Design: Rugged / outdoorsy — earthy greens, off-road feel
   Typography: Oswald (headings) + Open Sans (body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --green:       #3a5c2e;
  --green-dark:  #2a4420;
  --green-light: #4e7a3e;
  --amber:       #e8a020;
  --amber-dark:  #c07010;
  --parchment:   #f5f0e8;
  --earth:       #eae4d8;
  --earth-dark:  #d8cfbe;
  --bark:        #5c3d1e;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --white:       #ffffff;
  --error:       #c0392b;
  --success:     #2e7d32;

  --font-head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --radius:   6px;
  --radius-lg: 12px;
  --shadow:   0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);

  --container: 1140px;
  --gap:        24px;
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); text-decoration: underline; }

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-amber   { color: var(--amber-dark); }
.text-muted   { color: var(--text-muted); font-size: 0.9rem; }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section { padding: 72px 0; }
.section--alt { background: var(--earth); }
.section--dark {
  background: var(--green-dark);
  color: var(--parchment);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(232,160,32,0.35);
}
.btn--primary:hover {
  background: var(--amber-dark);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(232,160,32,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }

.btn--lg { padding: 18px 42px; font-size: 1.15rem; }

.btn--full { width: 100%; }

/* ── Nav / Header ─────────────────────────────────────────── */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--gap);
}

.site-logo {
  flex-shrink: 0;
  height: 44px;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  width: auto;
  /* Invert green parts to white on dark header */
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(0deg);
}
/* Override: keep amber lugs golden */
.site-logo svg rect { filter: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.site-header .btn--primary {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(42,68,32,0.88) 0%, rgba(42,68,32,0.70) 55%, rgba(58,92,46,0.55) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--green-dark); /* fallback if no image */
  color: var(--white);
  padding: 80px 0 72px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content { max-width: 540px; }

.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

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

.hero h1 span { color: var(--amber); }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--green);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-item__icon {
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* ── Valuation Form Section ───────────────────────────────── */
.valuation-section {
  background: var(--parchment);
  padding: 80px 0;
  scroll-margin-top: 80px;
}

.valuation-section .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.valuation-section__heading {
  margin-bottom: 32px;
}
.valuation-section__heading h2 { margin-bottom: 8px; }
.valuation-section__heading p  { color: var(--text-muted); }

/* ── Form ─────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--earth-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--earth);
  padding-bottom: 8px;
  margin: 28px 0 20px;
}
.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
label .required {
  color: var(--error);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--parchment);
  border: 1.5px solid var(--earth-dark);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,92,46,0.12);
  background: var(--white);
}
input.is-error,
select.is-error,
textarea.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

textarea { resize: vertical; min-height: 110px; }

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  display: flex;
  align-items: center;
  gap: 4px;
}

.char-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

/* Extras checkboxes */
.extras-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.extra-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--parchment);
  border: 1.5px solid var(--earth-dark);
  border-radius: var(--radius);
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
  font-weight: 600;
  user-select: none;
}
.extra-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.extra-check:hover { border-color: var(--green); background: var(--white); }
.extra-check:has(input:checked) {
  border-color: var(--green);
  background: rgba(58,92,46,0.06);
}

/* Photo upload */
.photo-upload-area {
  border: 2px dashed var(--earth-dark);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.photo-upload-area:hover { border-color: var(--green); background: rgba(58,92,46,0.03); }
.photo-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.photo-upload-area__icon { font-size: 2rem; margin-bottom: 8px; }
.photo-upload-area__text { font-size: 0.9rem; color: var(--text-muted); }
.photo-upload-area__text strong { color: var(--green); }

.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.photo-preview {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--earth-dark);
  position: relative;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview__remove {
  position: absolute; top: 2px; right: 2px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none; border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Honeypot — visually hidden but not display:none (bots ignore CSS) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ── Estimate Panel ───────────────────────────────────────── */
.estimate-panel {
  position: sticky;
  top: 88px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.estimate-panel__title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.estimate-panel__idle {
  text-align: center;
  padding: 24px 0;
}
.estimate-panel__idle-icon { font-size: 3rem; margin-bottom: 12px; }
.estimate-panel__idle p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.estimate-panel__result { display: none; }
.estimate-panel__result.visible { display: block; }

.estimate-panel__model {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.estimate-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  margin-top: 16px;
}

.estimate-price-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.estimate-price-range {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.estimate-adjustments {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.estimate-adj-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  padding: 3px 0;
}
.estimate-adj-row span:last-child { font-weight: 600; color: rgba(255,255,255,0.85); }
.estimate-adj-row.positive span:last-child { color: #8ecf8e; }
.estimate-adj-row.negative span:last-child { color: #f29292; }

.estimate-panel__disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  text-align: center;
}

.estimate-panel__cta {
  margin-top: 20px;
}
.estimate-panel__cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 13px; }

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--earth-dark);
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: bold;
}
.step-card:last-child::after { display: none; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--amber);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p  { font-size: 0.95rem; color: var(--text-muted); }

/* ── Trust / USP cards ────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--earth-dark);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.usp-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.usp-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.usp-card p  { font-size: 0.875rem; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--earth-dark);
}
.faq-item:first-child { border-top: 1px solid var(--earth-dark); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-light); }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--amber-dark);
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 16px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-stars { color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text  { font-size: 0.95rem; color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.testimonial-author { font-weight: 600; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ── About page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--earth);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 1.05rem; }

/* ── Prose content (privacy, etc.) ───────────────────────── */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.prose p, .prose li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.prose ul { padding-left: 20px; margin: 12px 0; }
.prose ul li { list-style: disc; margin-bottom: 6px; }
.prose a { color: var(--green); }

/* ── Thank You page ───────────────────────────────────────── */
.thank-you-card {
  max-width: 560px;
  margin: 64px auto;
  background: var(--white);
  border: 1px solid var(--earth-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.thank-you-icon { font-size: 4rem; margin-bottom: 20px; }
.thank-you-steps {
  text-align: left;
  margin: 28px 0;
  counter-reset: step;
}
.thank-you-step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--earth);
  counter-increment: step;
}
.thank-you-step:last-child { border-bottom: none; }
.thank-you-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--amber);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.thank-you-step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #111d0e;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img,
.footer-brand svg { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p   { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--amber); }

/* ── Alert / flash messages ───────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert--error   { background: #fdf0ef; border: 1px solid #f5c6c2; color: #8b1a0e; }
.alert--success { background: #edf7ed; border: 1px solid #b2dfb2; color: #1b5e20; }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111d0e;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; max-width: 640px; }
.cookie-banner a { color: var(--amber); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.cookie-btn--accept { background: var(--amber); color: var(--text); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); }

/* ── Utilities ────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .valuation-section .container { grid-template-columns: 1fr; }
  .estimate-panel { position: static; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gap: 16px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .site-header .btn--primary { display: none; }

  .hero .container { grid-template-columns: 1fr; }
  .hero__cta-group  { flex-direction: column; }

  .trust-strip .container { gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-card::after { display: none; }

  .testimonials-grid,
  .about-grid,
  .usp-grid { grid-template-columns: 1fr; }

  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  .btn--lg { padding: 14px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .trust-strip .container { justify-content: flex-start; }
  .extras-group { flex-direction: column; }
  .extra-check  { width: 100%; }
}
