/* ============================================================
   InkAndTonerBuyers.com — Fresh & Welcoming Design System
   Fonts: Bricolage Grotesque (headings) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:        #0A3560;
  --navy-mid:    #0D4278;
  --navy-light:  #1257A0;
  --sienna:      #E86A1A;
  --sienna-light:#F57D2D;
  --sienna-pale: #FEF0E6;
  --cream:       #FFFFFF;
  --warm-white:  #F5F7FA;
  --sand:        #E8ECF2;
  --ink:         #1A2333;
  --muted:       #5C6B7E;
  --border:      #D0D8E4;

  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(10,53,96,.08);
  --shadow-md:  0 4px 16px rgba(10,53,96,.12);
  --shadow-lg:  0 12px 40px rgba(10,53,96,.18);
  --shadow-xl:  0 24px 64px rgba(10,53,96,.24);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ── 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);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--sienna);
  color: #fff;
  border-color: var(--sienna);
}
.btn-primary:hover {
  background: var(--sienna-light);
  border-color: var(--sienna-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,106,26,.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.nav-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
}
.footer-brand-logo {
  height: 44px;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #0A3560 0%, #0D4278 60%, #0F3560 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
/* geometric texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.03) 39px,
      rgba(255,255,255,.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.03) 39px,
      rgba(255,255,255,.03) 40px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,106,26,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,106,26,.15);
  border: 1px solid rgba(232,106,26,.3);
  color: #F5A87A;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--sienna-light); }
.hero-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Hero review badge */
.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
}
.hero-review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}
.hero-review-text {
  color: #fff;
  font-size: .85rem;
}
.hero-review-text strong {
  font-weight: 700;
}
.hero-review-source {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 500;
}

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

/* Hero CTA pulse animation */
.hero-cta-pulse {
  position: relative;
}
.hero-cta-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-md);
  background: var(--sienna);
  opacity: 0;
  animation: ctaPulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: .25; transform: scale(1.04); }
}

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-title::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--sienna-light);
  border-radius: 50%;
}
.hero-card-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}
.step-list { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sienna);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--sienna);
  flex-shrink: 0;
}

/* ── SECTION LAYOUT ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-alt { background: var(--warm-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 12px;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--sienna) 0%, var(--navy-light) 100%);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-dark .eyebrow { color: #F5A87A; }
.section-header h2 { margin-bottom: 16px; }
.section-dark h2 { color: #fff; }
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,.6); }

/* ── WHAT WE BUY / DON'T BUY ── */
/* ── What We Buy — Tabbed Toggle ── */
.buy-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
}
.buy-tab {
  padding: 14px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 12px 12px 0 0;
}
.buy-tab--yes {
  background: #e0e7ee;
  color: var(--navy);
}
.buy-tab--yes.active {
  background: #15803d;
  color: #fff;
}
.buy-tab--no {
  background: #e0e7ee;
  color: var(--navy);
}
.buy-tab--no.active {
  background: #b91c1c;
  color: #fff;
}
.buy-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  margin-bottom: 32px;
  animation: buyFadeIn .3s ease;
}
.buy-panel.active {
  display: block;
}
@keyframes buyFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.buy-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.buy-product-card {
  text-align: center;
  transition: transform .2s ease;
}
.buy-product-card:hover {
  transform: translateY(-4px);
}
.buy-product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.buy-product-img-wrap img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.buy-product-svg {
  opacity: .6;
}
/* Colored backgrounds like TonerConnect */
.buy-product-img--blue     { background: #bfdbfe; }
.buy-product-img--coral    { background: #fca5a5; }
.buy-product-img--gold     { background: #fde68a; }
.buy-product-img--mint     { background: #a7f3d0; }
.buy-product-img--pink     { background: #fbcfe8; }
.buy-product-img--gray     { background: #e5e7eb; }
.buy-product-img--lavender { background: #ddd6fe; }
.buy-product-img--red      { background: #fecaca; }
.buy-product-img--amber    { background: #fde68a; }

.buy-product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.buy-panel--no .buy-product-name {
  color: #991b1b;
}
.buy-product-note {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .buy-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .buy-tab {
    padding: 12px 20px;
    font-size: .85rem;
  }
  .buy-panel {
    padding: 24px 16px;
  }
}
.buy-cta-row {
  text-align: center;
  padding: 24px;
  background: var(--sienna-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.buy-cta-row p {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

/* ── SPREADSHEET UPLOAD ── */
.spreadsheet-upload-section {
  margin-top: 32px;
  padding-top: 8px;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.or-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.or-divider-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
}
.spreadsheet-desc {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.spreadsheet-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
  background: #f8fafc;
  color: var(--muted);
}
.spreadsheet-dropzone:hover,
.spreadsheet-dropzone.dragover {
  border-color: var(--sienna);
  background: var(--sienna-pale);
  color: var(--sienna);
}
.spreadsheet-dropzone svg {
  margin: 0 auto 10px;
  display: block;
}
.spreadsheet-dropzone-text {
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
}
.spreadsheet-dropzone-text strong {
  color: var(--sienna);
  text-decoration: underline;
  cursor: pointer;
}
.spreadsheet-dropzone-formats {
  display: block;
  font-size: .75rem;
  color: var(--muted);
}
.spreadsheet-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  margin-top: 12px;
}
.spreadsheet-filename {
  flex: 1;
  font-weight: 600;
  font-size: .9rem;
  color: #166534;
}
.spreadsheet-remove {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #991b1b;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.spreadsheet-help {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

/* ── QUOTE FORM ── */
#quote {
  background: var(--warm-white);
  padding: 80px 0;
}
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.quote-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
/* ── STEP PROGRESS ── */
.step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.step-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.step-crumb-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-crumb-label {
  font-size: .825rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}
.step-crumb-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  border-radius: 2px;
  transition: background var(--transition);
}
.step-crumb--active .step-crumb-dot {
  background: var(--navy);
  color: #fff;
}
.step-crumb--active .step-crumb-label { color: var(--navy); }
.step-crumb--done .step-crumb-dot {
  background: #22c55e;
  color: #fff;
}
.step-crumb--done .step-crumb-dot::after { content: '\2713'; font-size: .9rem; }
.step-crumb--done .step-crumb-dot { font-size: 0; } /* hide number, show check */
.step-crumb--done .step-crumb-label { color: #22c55e; }
.step-crumb--done ~ .step-crumb-line { background: #22c55e; }

/* ── FORM STEPS ── */
.form-step { }
.form-step--hidden { display: none; }

.step-header { margin-bottom: 24px; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-subtitle {
  color: var(--muted);
  font-size: .9rem;
}

/* ── STEP ACTIONS ── */
.step-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.step-actions--split {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.step-continue { width: 100%; justify-content: center; }
.step-actions-note {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

/* ── ITEM SUMMARY (step 2 recap) ── */
.item-summary {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.item-summary-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 10px;
}
.item-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.item-summary-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .8rem;
}
.isc-brand { font-weight: 700; color: var(--navy); }
.isc-model { color: var(--ink); }
.isc-qty   { color: var(--muted); font-size: .75rem; }
.isc-cond  { color: #F59E0B; font-size: .7rem; letter-spacing: -.5px; }

/* ── ITEM CARDS (redesigned) ── */
.items-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }

.item-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s ease, transform .28s ease, box-shadow var(--transition);
}
.item-card--visible { opacity: 1; transform: translateY(0); }
.item-card--removing { opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; }
.item-card:hover { box-shadow: var(--shadow-md); }

.item-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy);
}
.item-card-title { display: flex; align-items: center; gap: 12px; }
.item-badge {
  width: 28px; height: 28px;
  background: var(--sienna);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}
.item-card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.item-card-remove {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: .75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.item-card-remove:hover { background: rgba(220,53,69,.85); border-color: transparent; color: #fff; }

.item-card-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.item-row-grid-top,
.item-row-grid-mid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.9fr;
  gap: 12px;
}

/* Form fields */
.form-group { display: flex; flex-direction: column; gap: 4px; }
.optional-tag { font-weight: 400; font-size: .73em; color: var(--muted); margin-left: 4px; }
.req { color: var(--sienna); }
.form-label {
  font-size: .775rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,53,96,.1);
}
.form-control::placeholder { color: #c0c8d4; }
select.form-control {
  cursor: pointer;
  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='%235C6B7E' 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;
}
textarea.form-control { resize: vertical; min-height: 90px; }

/* ── Searchable Dropdown ── */
.sd-wrap {
  position: relative;
}
.sd-input {
  cursor: pointer;
  padding-right: 36px !important;
}
.sd-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 2;
  transition: transform var(--transition);
}
.sd-open .sd-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.sd-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
}
.sd-open .sd-list {
  display: block;
}
.sd-group {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 8px 12px 4px;
  border-top: 1px solid var(--sand);
}
.sd-group:first-child {
  border-top: none;
}
.sd-item {
  padding: 8px 12px;
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 80ms ease;
}
.sd-item:hover,
.sd-item--hl {
  background: var(--warm-white);
  color: var(--navy);
}
.sd-empty {
  padding: 12px;
  font-size: .84rem;
  color: var(--muted);
  text-align: center;
}

/* Qty stepper */
.qty-stepper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.qty-stepper:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,53,96,.1);
}
.qty-btn {
  width: 40px;
  background: var(--warm-white);
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.qty-btn:hover { background: var(--sand); }
.qty-input {
  flex: 1;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  padding: 0;
  min-width: 0;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Condition picker — 3 options now */
.cond-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.cond-opt {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 10px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--warm-white);
  transition: all var(--transition);
  user-select: none;
}
.cond-opt:hover {
  border-color: var(--navy-light);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.cond-opt--selected {
  border-color: var(--navy);
  background: #e8f0fe;
  box-shadow: 0 0 0 1px var(--navy);
}
.cond-stars { font-size: .95rem; line-height: 1; margin-bottom: 6px; }
.cs-on { color: #F59E0B; }
.cs-off { color: #D0D8E4; }
.cond-name {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cond-desc {
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Photo zone */
.photo-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: #fff;
}
.photo-zone:hover,
.photo-zone.drag-over {
  border-color: var(--navy);
  background: #f0f4ff;
}
.photo-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.photo-zone-inner { pointer-events: none; }
.photo-zone-icon { font-size: 1.8rem; margin-bottom: 6px; }
.photo-zone-text { font-size: .875rem; color: var(--muted); }
.photo-zone-link { color: var(--navy); font-weight: 600; text-decoration: underline; }
.photo-zone-hint { font-size: .74rem; color: #bbb; margin-top: 4px; }
.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.photo-thumb-wrap {
  position: relative;
  display: inline-block;
}
.photo-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  display: block;
}
.photo-thumb-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  border: 2px solid #fff;
  font-size: .75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.photo-thumb-remove:hover {
  background: #b91c1c;
  transform: scale(1.15);
}

/* Add item button */
.add-item-btn {
  width: 100%;
  padding: 16px;
  background: none;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  margin-bottom: 4px;
}
.add-item-btn:hover {
  border-color: var(--navy);
  background: var(--warm-white);
  transform: none;
}
.add-item-btn span {
  width: 26px; height: 26px;
  background: var(--sienna);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-grid .full { grid-column: 1/-1; }

/* Payout section */
.payout-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 20px;
}
.payout-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.payout-options { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.payout-option {
  flex: 1;
  min-width: 110px;
  position: relative;
}
.payout-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.payout-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
  background: #fff;
}
.payout-option input:checked + label {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

/* Form actions */
.form-actions { display: flex; gap: 12px; }
.form-actions .btn { flex: 1; justify-content: center; }

/* Messages */
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 14px;
}
.form-message.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.form-message.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.form-message.warning {
  display: block;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}

/* Quote sidebar */
.quote-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
}
.sidebar-list li::before {
  content: '\2713';
  color: var(--sienna-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sidebar shipping card */
.sidebar-shipping {
  background: linear-gradient(135deg, var(--sienna), #d4580f);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.sidebar-shipping-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sidebar-shipping-icon svg {
  color: #fff;
}
.sidebar-shipping h4 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sidebar-shipping p {
  font-size: .825rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}

.sidebar-info {
  background: var(--sienna-pale);
  border: 1px solid rgba(200,68,10,.15);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-info h4 {
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.sidebar-info p { font-size: .825rem; color: var(--muted); }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sienna) 0, var(--sienna) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
}
.how-card { text-align: center; }
.how-icon {
  width: 56px;
  height: 56px;
  background: var(--sienna);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.how-card h3 { font-size: 1rem; margin-bottom: 8px; }
.how-card p { font-size: .875rem; color: var(--muted); }

/* ── CONDITIONS ── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.conditions-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.condition-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: all var(--transition);
}
.condition-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.condition-badge {
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.condition-badge.accepted { background: #f0fdf4; color: #166534; }
.condition-badge.not-accepted { background: #fef2f2; color: #991b1b; }
.condition-body { padding: 20px; }
.condition-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.condition-desc { font-size: .875rem; color: var(--muted); line-height: 1.5; }
.stars-display {
  display: flex;
  gap: 2px;
  margin-top: 10px;
}
.stars-display .s { font-size: .85rem; }
.stars-display .s.on { color: #F59E0B; }
.stars-display .s.off { color: var(--sand); }

/* ── BRANDS MARQUEE ── */
.brands-section {
  background: var(--warm-white);
  padding: 64px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-outer {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
/* No hover pause — marquee scrolls continuously */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 72px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.brand-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
/* Brand text logos with brand colors */
.bl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.bl.hp        { color: #0096D6; font-size: 1.4rem; }
.bl.canon     { color: #CC0000; font-style: italic; }
.bl.epson     { color: #00438C; }
.bl.brother   { color: #CC0000; font-size: .95rem; letter-spacing: -0.03em; }
.bl.lexmark   { color: #005EB8; font-size: .85rem; letter-spacing: .08em; }
.bl.samsung   { color: #1428A0; font-size: .8rem; letter-spacing: .05em; }
.bl.xerox     { color: #E51B23; letter-spacing: .04em; }
.bl.dell      { color: #007DB8; font-size: 1.3rem; }
.bl.ricoh     { color: #003087; letter-spacing: .04em; }
.bl.kyocera   { color: #E60028; font-size: .85rem; letter-spacing: .04em; }
.bl.km        { color: #E30613; font-size: .7rem; letter-spacing: .01em; }
.bl.sharp     { color: #00539F; letter-spacing: .06em; }
.bl.oki       { color: #EC0016; font-size: 1.3rem; letter-spacing: .06em; }
.bl.panasonic { color: #00437B; font-size: .8rem; }
.bl.toshiba   { color: #F00000; font-size: .85rem; letter-spacing: .04em; }
.bl.ibm       { color: #054ADA; letter-spacing: .06em; }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--navy);
  padding: 48px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 16px 40px;
  flex: 1 1 180px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--sienna);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  line-height: 1.3;
  max-width: 140px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .proof-divider { display: none; }
  .proof-stat { flex: 1 1 140px; padding: 12px 20px; }
}

/* ── COMPARISON TABLE ── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.compare-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.compare-table th.highlight {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
}
.compare-winner-badge {
  display: inline-block;
  background: var(--sienna);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--warm-white); }
.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; }
.compare-table td.highlight {
  background: rgba(10,53,96,.04);
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--navy);
}
.compare-table tr:hover td.highlight {
  background: rgba(10,53,96,.08);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}
.testimonial-name { font-weight: 600; font-size: .875rem; color: var(--navy); }
.testimonial-role { font-size: .775rem; color: var(--muted); }

/* ── ECO SECTION (redesigned) ── */
.eco-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.eco-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,106,26,.12) 0%, transparent 70%);
  pointer-events: none;
}
.eco-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eco-content .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eco-content h2 {
  margin-bottom: 0;
}
.eco-content h2::after {
  display: none;
}
.eco-stats-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eco-stat-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  transition: all var(--transition);
}
.eco-stat-block:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.eco-stat-block .eco-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sienna-light);
  line-height: 1;
  margin-bottom: 4px;
}
.eco-stat-block .eco-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sienna); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--sienna); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0A3560 0%, #0D4278 50%, #1257A0 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03) 0,
    rgba(255,255,255,.03) 1px,
    transparent 1px,
    transparent 20px
  );
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .btn-white { min-width: 220px; justify-content: center; }
.cta-trust-line {
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand-icon {
  width: 28px;
  height: 28px;
  background: var(--sienna);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
}
.footer-tagline { font-size: .85rem; line-height: 1.6; margin-bottom: 20px; }
.footer-contact a { color: rgba(255,255,255,.65); font-size: .875rem; display: block; margin-bottom: 4px; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { font-size: .8rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .quote-wrapper { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .buy-grid { grid-template-columns: 1fr; }
  .buy-items--no { grid-template-columns: 1fr 1fr 1fr; }
  .eco-inner { grid-template-columns: 1fr; gap: 40px; }
  .eco-content { text-align: center; }
  .conditions-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .hero { padding: 48px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .how-grid { grid-template-columns: 1fr; }
  .conditions-grid, .conditions-grid--3 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .eco-inner { grid-template-columns: 1fr; }
  .eco-stats-col { flex-direction: row; gap: 12px; }
  .eco-stat-block { flex: 1; padding: 20px 16px; }
  .eco-stat-block .eco-stat-num { font-size: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .item-row-grid-top,
  .item-row-grid-mid { grid-template-columns: 1fr 1fr; }
  .cond-picker { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .cond-opt { padding: 10px 6px; }
  .cond-name { font-size: .72rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .buy-items { grid-template-columns: 1fr 1fr; }
  .buy-items--no { grid-template-columns: 1fr 1fr; }
  .hero-review-badge { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .conditions-grid, .conditions-grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .payout-options { flex-direction: column; }
  .form-actions { flex-direction: column; }
  .trust-bar-inner { gap: 20px; }
  .buy-items { grid-template-columns: 1fr; }
  .buy-items--no { grid-template-columns: 1fr; }
  .eco-stats-col { flex-direction: column; }
  .item-row-grid-top,
  .item-row-grid-mid { grid-template-columns: 1fr; }
  .cond-picker { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .cond-opt { padding: 8px 4px; }
  .cond-name { font-size: .65rem; }
  .cond-desc { display: none; }
}

/* ── MOBILE POLISH ──
   Tightens spacing and polishes layouts that differ from desktop.
   ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  /* --- Spacing scale --- */
  .section          { padding: 56px 0; }
  .section-sm       { padding: 32px 0; }
  .section-header   { margin-bottom: 40px; }
  .cta-banner       { padding: 52px 0; }
  .footer           { padding: 48px 0 28px; }

  /* --- Hero: center content when the right-side card is hidden --- */
  .hero-content     { text-align: center; }
  .hero-subtitle    { max-width: 100%; }
  .hero-actions     { justify-content: center; }
  .hero-review-badge { margin: 0 auto 28px; }

  /* --- Hero stats: even 2×2 grid (prevents 3+1 wrapping) --- */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
    justify-items: start;
  }

  /* --- Trust bar: 2-column grid (prevents odd wrapping of 5 items) --- */
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    justify-items: start;
  }

  /* --- Proof bar: 2×2 grid (prevents 3+1 unevenness) --- */
  .proof-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .proof-stat { flex: none; padding: 16px 12px; }

  /* --- How-it-works: horizontal cards feel more polished than centered column --- */
  .how-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
  }
  .how-icon { margin: 0; flex-shrink: 0; }

  /* --- Compare table: reduce font so columns don't feel as crushed --- */
  .compare-table              { font-size: .83rem; }
  .compare-table th,
  .compare-table td           { padding: 12px 14px; }
}

@media (max-width: 480px) {

  /* --- Spacing scale (small phones) --- */
  .section          { padding: 40px 0; }
  .section-header   { margin-bottom: 28px; }
  .container        { padding: 0 16px; }
  .cta-banner       { padding: 40px 0; }
  .footer           { padding: 40px 0 24px; }

  /* --- Hero stats tighter --- */
  .hero-stats         { gap: 14px 16px; }
  .hero-stat-num      { font-size: 1.5rem; }

  /* --- Trust bar tighter --- */
  .trust-bar          { padding: 14px 0; }
  .trust-bar-inner    { gap: 12px 20px; }

  /* --- Proof bar tighter --- */
  .proof-stat         { padding: 12px 8px; }

  /* --- Compare table compact --- */
  .compare-table              { font-size: .78rem; }
  .compare-table th,
  .compare-table td           { padding: 10px; }
  .compare-winner-badge       { font-size: .65rem; padding: 3px 8px; }

  /* --- CTA banner --- */
  .cta-banner p               { font-size: 1rem; margin-bottom: 24px; }
  .cta-banner .btn-white      { width: 100%; }

  /* --- Footer bottom: stack and center on tiny screens --- */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
