/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #111827; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }

/* ── HEADER ── */
.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(156,163,175,0.2); }
.header-inner {
  max-width: 80rem; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.header-logo img { height: 2.5rem; width: auto; object-fit: contain; filter: invert(13%) sepia(94%) saturate(5541%) hue-rotate(3deg) brightness(95%) contrast(117%); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  position: relative; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 600;
  border-radius: 0.75rem; transition: all 0.2s;
  color: #4b5563;
}
.nav-link:hover, .nav-link.active { color: #dc2626; background: #fef2f2; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: #dc2626; border-radius: 50%;
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #dc2626; color: #fff; font-weight: 700;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3);
  white-space: nowrap;
}
.btn-primary:hover { background: #b91c1c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,38,38,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.375rem; white-space: nowrap;
  background: #fff; color: #374151; font-weight: 600;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; border: 2px solid #e5e7eb; transition: all 0.2s;
}
.btn-secondary:hover { border-color: #fca5a5; background: #fafafa; }
.btn-mobile-cta {
  background: #dc2626; color: #fff; font-weight: 700;
  padding: 0.5rem 0.875rem; border-radius: 0.5rem; font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}
.hamburger {
  display: none; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
  border-radius: 0.5rem; color: #4b5563; transition: background 0.2s;
}
.hamburger:hover { background: #f3f4f6; }
.hamburger svg { width: 1.25rem; height: 1.25rem; }

/* Mobile drawer */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.2); backdrop-filter: blur(4px); z-index: 40;
}
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed; top: 4rem; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 40;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600; color: #374151; transition: all 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: #dc2626; background: #fef2f2; }
.mobile-nav-link.active .dot { width: 6px; height: 6px; background: #dc2626; border-radius: 50%; display: block; }
.dot { display: none; }
.mobile-cta-wrap { padding: 0.75rem 1rem 1rem; }
.btn-primary-full {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #dc2626; color: #fff; font-weight: 700;
  padding: 0.875rem 1.25rem; border-radius: 0.75rem; font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3); transition: all 0.2s;
}
.btn-primary-full:hover { background: #b91c1c; }

/* ── FOOTER ── */
.site-footer { background: #030712; color: #9ca3af; }
.footer-accent { height: 4px; background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626); }
.footer-cta-strip { background: #111827; border-bottom: 1px solid #1f2937; padding: 1.5rem 0; }
.footer-cta-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-cta-title { color: #fff; font-weight: 800; font-size: 1.125rem; }
.footer-cta-sub { color: #6b7280; font-size: 0.875rem; margin-top: 0.25rem; }
.footer-grid { max-width: 80rem; margin: 0 auto; padding: 3.5rem 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 2.5rem; border-bottom: 1px solid #1f2937; }
.footer-brand-logo { height: 2.25rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin-top: 1.25rem; }
.footer-trust { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #6b7280; }
.footer-trust-item svg { width: 0.875rem; height: 0.875rem; color: #ef4444; flex-shrink: 0; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: #6b7280; transition: color 0.2s; display: flex; align-items: center; gap: 0.375rem; }
.footer-links a:hover { color: #f87171; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-icon { width: 2rem; height: 2rem; background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.2); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 1rem; height: 1rem; color: #f87171; }
.footer-contact-label { font-size: 0.75rem; color: #4b5563; margin-bottom: 2px; }
.footer-contact-val { font-size: 0.875rem; color: #9ca3af; transition: color 0.2s; }
.footer-contact-val:hover { color: #f87171; }
.footer-bottom { max-width: 80rem; margin: 0 auto; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.footer-copyright { font-size: 0.75rem; color: #4b5563; }
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-links a { font-size: 0.75rem; color: #4b5563; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #f87171; }
.ssl-badge { display: flex; align-items: center; gap: 0.375rem; background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.2); padding: 0.375rem 0.75rem; border-radius: 9999px; }
.ssl-badge svg { width: 0.75rem; height: 0.75rem; color: #f87171; }
.ssl-badge span { font-size: 0.75rem; color: #f87171; font-weight: 600; }

/* ── HERO ── */
.hero-blob-tr { position: absolute; top: 0; right: 0; width: min(700px, 60vw); height: min(700px, 60vw); background: #fee2e2; border-radius: 50%; filter: blur(80px); transform: translate(33%, -33%); pointer-events: none; }
.hero-blob-bl { position: absolute; bottom: 0; left: 0; width: min(400px, 40vw); height: min(400px, 40vw); background: #fff1f2; border-radius: 50%; filter: blur(80px); transform: translate(-25%, 50%); pointer-events: none; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; width: fit-content; align-self: flex-start; }
.badge-red { background: #fef2f2; border: 1px solid #fee2e2; color: #b91c1c; }
.badge-white-glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.badge svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-bg-gray { background: #f9fafb; }
.section-bg-white { background: #fff; }
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: #111827; line-height: 1.15; }
.section-title span.red { color: #dc2626; }
.section-sub { font-size: 1rem; color: #6b7280; line-height: 1.7; }
.text-center { text-align: center; }
.section-header { margin-bottom: 3.5rem; }

/* ── CARDS ── */
.card { background: #fff; border-radius: 1.5rem; border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all 0.3s; }
.card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps-connector { position: absolute; top: 52px; left: 14%; right: 14%; height: 1px; background: linear-gradient(90deg, #fca5a5, #fca5a5, #fca5a5); z-index: 0; pointer-events: none; }
.step-card { position: relative; z-index: 1; background: #fff; border-radius: 1.5rem; padding: 1.75rem; border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.3s; }
.step-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.step-num { width: 3rem; height: 3rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.125rem; color: #fff; margin-bottom: 1.25rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.step-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.3s; }
.step-card:hover .step-icon { transform: scale(1.1); }
.step-icon svg { width: 1.75rem; height: 1.75rem; }
.step-title { font-size: 1.125rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

/* ── DEVICE CARDS ── */
.devices-section { padding: 5rem 1.5rem; background: #fff; }
.devices-row-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.devices-title { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 800; color: #111827; }
.view-all { display: flex; align-items: center; gap: 0.25rem; color: #dc2626; font-weight: 600; font-size: 0.875rem; transition: gap 0.2s; }
.view-all:hover { gap: 0.5rem; }
.view-all svg { width: 1rem; height: 1rem; }
.devices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.device-card {
  background: #fff; border: 2px solid #f3f4f6; border-radius: 1rem;
  padding: 0.875rem 0.75rem; display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: all 0.3s; text-decoration: none; color: inherit;
  min-width: 0; overflow: hidden;
}
.device-card:hover { border-color: #fca5a5; box-shadow: 0 10px 30px rgba(220,38,38,0.08); transform: translateY(-4px); }
.device-img-wrap { background: #f9fafb; border-radius: 0.75rem; padding: 0.75rem; width: 100%; display: flex; align-items: center; justify-content: center; height: 7.5rem; margin-bottom: 0.625rem; }
.device-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.device-card:hover .device-img-wrap img { transform: scale(1.05); }
.device-name { font-weight: 700; font-size: 0.8125rem; color: #111827; text-align: center; line-height: 1.3; margin-bottom: 0.375rem; word-break: break-word; }
.device-price { color: #dc2626; font-weight: 800; font-size: 0.875rem; text-align: center; }
.device-price-from { color: #9ca3af; font-size: 0.75rem; margin-left: 0.25rem; }
.device-btn { width: 100%; margin-top: 0.625rem; background: #fef2f2; color: #dc2626; font-weight: 600; font-size: 0.75rem; padding: 0.4375rem 0.5rem; border-radius: 0.5rem; text-align: center; transition: all 0.2s; white-space: nowrap; }
.device-card:hover .device-btn { background: #dc2626; color: #fff; }
.skeleton { background: linear-gradient(90deg, #f3f4f6 25%, #e9ecef 50%, #f3f4f6 75%); background-size: 200%; animation: shimmer 1.5s infinite; border-radius: 0.75rem; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-img { height: 9rem; margin-bottom: 0.75rem; }
.skeleton-text { height: 1rem; margin-bottom: 0.5rem; }
.skeleton-text-sm { height: 0.75rem; width: 66%; margin: 0 auto 0.75rem; }
.skeleton-btn { height: 2rem; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: #fff; border-radius: 1.5rem; padding: 2rem; text-align: center; border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.3s; }
.value-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.value-icon { width: 5rem; height: 5rem; background: #dc2626; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 8px 20px rgba(220,38,38,0.25); }
.value-icon svg { width: 2.5rem; height: 2.5rem; color: #fff; }
.value-title { font-size: 1.125rem; font-weight: 800; color: #111827; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: #4b5563; line-height: 1.6; }

/* ── BRAND CARDS ── */
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.brand-card { position: relative; background: #fff; border-radius: 1.5rem; border: 1px solid #e5e7eb; overflow: hidden; transition: all 0.5s; cursor: pointer; }
.brand-card:hover { border-color: #fca5a5; box-shadow: 0 20px 60px rgba(220,38,38,0.1); transform: translateY(-4px); }
.brand-card-inner { position: relative; padding: 2rem; }
.brand-card-img { width: 100%; height: 13rem; object-fit: contain; transition: transform 0.5s; }
.brand-card:hover .brand-card-img { transform: scale(1.05); }
.brand-card-title { font-size: 1.25rem; font-weight: 700; color: #111827; text-align: center; margin-bottom: 1rem; transition: color 0.2s; }
.brand-card:hover .brand-card-title { color: #dc2626; }

/* ── CTA SECTION ── */
.cta-section { position: relative; overflow: hidden; padding: 5rem 1.5rem; background: #fff; }
.cta-blob-tr { position: absolute; top: 0; right: 0; width: min(500px,50vw); height: min(500px,50vw); background: #fee2e2; border-radius: 50%; filter: blur(80px); transform: translate(33%,-50%); pointer-events: none; }
.cta-blob-bl { position: absolute; bottom: 0; left: 0; width: min(300px,30vw); height: min(300px,30vw); background: #fee2e2; border-radius: 50%; filter: blur(80px); transform: translate(-25%,50%); pointer-events: none; }
.cta-inner { position: relative; max-width: 56rem; margin: 0 auto; text-align: center; }
.cta-perks { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.cta-perk { display: flex; align-items: center; gap: 0.5rem; color: #6b7280; font-size: 0.875rem; }
.cta-perk svg { width: 1rem; height: 1rem; color: #dc2626; }

/* ── SELL PAGE / STEP INDICATOR ── */
.step-bar { background: #fff; border-bottom: 1px solid #f3f4f6; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.step-bar-inner { max-width: 48rem; margin: 0 auto; padding: 0.75rem 1rem; }
.steps-row { display: flex; align-items: center; justify-content: space-between; }
.step-item { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-circle {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; transition: all 0.3s;
  background: #f3f4f6; color: #9ca3af; border: 2px solid #e5e7eb;
}
.step-circle.active { background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(220,38,38,0.3); }
.step-circle.completed { background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(220,38,38,0.2); }
.step-circle svg { width: 1.25rem; height: 1.25rem; }
.step-label { margin-top: 0.375rem; font-size: 0.6875rem; font-weight: 600; color: #9ca3af; white-space: nowrap; transition: color 0.3s; }
.step-label.active { color: #dc2626; }
.step-label.completed { color: #374151; }
.step-connector { flex: 1; margin: 0 0.375rem 1.25rem; }
.step-connector-track { height: 4px; border-radius: 9999px; background: #f3f4f6; overflow: hidden; }
.step-connector-fill { height: 100%; border-radius: 9999px; background: linear-gradient(90deg,#ef4444,#dc2626); width: 0; transition: width 0.5s; }
.step-connector-fill.full { width: 100%; }

/* ── HERO GRADIENT (sell page) ── */
.grad-hero { background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b); padding: 2.5rem 1rem; }
.grad-hero-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.grad-hero-title { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.grad-hero-sub { color: #fca5a5; font-size: 1rem; }
.grad-hero-perks { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.grad-hero-perk { display: flex; align-items: center; gap: 0.375rem; color: #fca5a5; font-size: 0.875rem; }
.grad-hero-perk svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.back-btn { display: inline-flex; align-items: center; gap: 0.375rem; color: #fca5a5; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; transition: color 0.2s; background: none; border: none; cursor: pointer; }
.back-btn:hover { color: #fff; }
.back-btn svg { width: 1rem; height: 1rem; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.375rem 0.75rem; border-radius: 9999px; margin-bottom: 0.75rem; }
.chip svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* ── STEP CONTENT ── */
.step-content { background: #f9fafb; min-height: calc(100vh - 8rem); }
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── SEARCH BAR ── */
.search-bar { background: #fff; border-bottom: 1px solid #f3f4f6; box-shadow: 0 1px 4px rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 10; }
.search-bar-inner { max-width: 56rem; margin: 0 auto; padding: 0.75rem 1rem; }
.search-row { display: flex; gap: 0.75rem; }
.search-input-wrap { position: relative; flex: 1; }
.search-input-wrap svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: #9ca3af; pointer-events: none; }
.search-input {
  width: 100%; padding: 0.625rem 2.5rem 0.625rem 2.75rem;
  border: 2px solid #e5e7eb; border-radius: 0.75rem;
  font-size: 0.875rem; outline: none; transition: border-color 0.2s;
  background: #f9fafb; color: #111827;
}
.search-input::placeholder { color: #9ca3af; }
.search-input:focus { border-color: #f87171; }
.search-clear { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: #9ca3af; cursor: pointer; display: none; }
.search-clear.show { display: block; }
.search-clear svg { width: 1rem; height: 1rem; }
.brand-tabs { display: flex; gap: 0.5rem; flex-shrink: 0; }
.brand-tab { padding: 0.625rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 600; border: 2px solid #e5e7eb; color: #4b5563; background: #fff; transition: all 0.2s; white-space: nowrap; }
.brand-tab.active { background: #dc2626; border-color: #dc2626; color: #fff; box-shadow: 0 4px 12px rgba(220,38,38,0.25); }
.brand-tab:hover:not(.active) { border-color: #fca5a5; color: #dc2626; }
.results-count { font-size: 0.75rem; color: #6b7280; margin-top: 0.5rem; }
.results-count .highlight { color: #ef4444; font-weight: 600; }

/* ── DEVICE LIST (sell step1) ── */
.sell-devices-wrap { max-width: 56rem; margin: 0 auto; padding: 1.5rem 1rem; }
.brand-section { margin-bottom: 2.5rem; }
.brand-section-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.brand-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.brand-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.brand-icon-apple { background: linear-gradient(135deg,#1f2937,#111827); }
.brand-icon-samsung { background: linear-gradient(135deg,#2563eb,#1d4ed8); }
.brand-section-name { font-size: 1.25rem; font-weight: 700; color: #111827; }
.brand-section-count { font-size: 0.75rem; color: #6b7280; }
.sell-devices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.625rem; }
.sell-device-btn {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem;
  padding: 0.75rem; text-align: left; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sell-device-btn:hover { border-color: #f87171; box-shadow: 0 10px 30px rgba(220,38,38,0.08); }
.sell-device-btn:active { transform: scale(0.97); }
.sell-device-img { width: 100%; height: 5rem; object-fit: contain; background: #f9fafb; border-radius: 0.5rem; margin-bottom: 0.5rem; transition: transform 0.2s; }
.sell-device-btn:hover .sell-device-img { transform: scale(1.05); }
.sell-device-name { font-size: 0.8125rem; font-weight: 600; color: #1f2937; margin-bottom: 0.25rem; line-height: 1.3; }
.sell-device-btn:hover .sell-device-name { color: #b91c1c; }
.sell-device-price { font-size: 0.875rem; font-weight: 700; color: #dc2626; }
.no-devices { text-align: center; padding: 5rem 1rem; }
.no-devices-icon { width: 3.5rem; height: 3.5rem; background: #f3f4f6; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.no-devices-icon svg { width: 1.75rem; height: 1.75rem; color: #9ca3af; }

/* ── STORAGE / NETWORK / CONDITION STEPS ── */
.options-wrap { max-width: 40rem; margin: 0 auto; padding: 1.5rem 1rem; }
.storage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
.option-card {
  position: relative; background: #fff; border: 2px solid #e5e7eb; border-radius: 1rem;
  padding: 1.25rem; cursor: pointer; transition: all 0.2s; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.option-card:hover { border-color: #ef4444; box-shadow: 0 10px 30px rgba(220,38,38,0.1); }
.option-card.selected { border-color: #dc2626; box-shadow: 0 8px 24px rgba(220,38,38,0.15); }
.option-card-hover-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #fef2f2, #fee2e2); opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.option-card:hover .option-card-hover-bg { opacity: 1; }
.option-icon { width: 3.5rem; height: 3.5rem; background: #fef2f2; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background 0.2s; }
.option-card:hover .option-icon { background: #fee2e2; }
.option-icon svg { width: 1.75rem; height: 1.75rem; color: #dc2626; }
.option-size { font-size: 1.5rem; font-weight: 800; color: #111827; transition: color 0.2s; line-height: 1; }
.option-card:hover .option-size, .option-card.selected .option-size { color: #b91c1c; }
.option-label { font-size: 0.75rem; color: #6b7280; margin-bottom: 0.75rem; }
.option-price-badge { background: #dc2626; color: #fff; font-weight: 700; font-size: 0.875rem; padding: 0.5rem; border-radius: 0.75rem; text-align: center; transition: background 0.2s; }
.option-card:hover .option-price-badge { background: #b91c1c; }
.info-box { background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; padding: 1rem; margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.info-box-icon { width: 2.5rem; height: 2.5rem; background: #fffbeb; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-box-icon svg { width: 1.25rem; height: 1.25rem; color: #f59e0b; }
.info-box-text { font-size: 0.875rem; color: #4b5563; line-height: 1.6; }
.info-box-text strong { color: #111827; }

/* Network grid */
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.network-card {
  background: #fff; border: 2px solid #e5e7eb; border-radius: 1rem;
  padding: 1rem 1.25rem; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.network-card:hover { border-color: #fca5a5; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.network-card.selected { border-color: #dc2626; box-shadow: 0 8px 24px rgba(220,38,38,0.12); }
.network-icon { width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; background: #f3f4f6; transition: background 0.2s; flex-shrink: 0; }
.network-card:hover .network-icon, .network-card.selected .network-icon { background: #fee2e2; }
.network-icon svg { width: 1.25rem; height: 1.25rem; color: #6b7280; transition: color 0.2s; }
.network-card:hover .network-icon svg, .network-card.selected .network-icon svg { color: #dc2626; }
.network-name { font-weight: 700; font-size: 0.9375rem; color: #111827; transition: color 0.2s; }
.network-card.selected .network-name { color: #b91c1c; }
.network-val { font-size: 0.75rem; color: #9ca3af; margin-top: 2px; }
.radio-dot { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 2px solid #d1d5db; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: auto; margin-top: 2px; transition: all 0.2s; }
.radio-dot.selected { border-color: #dc2626; background: #dc2626; }
.radio-dot-inner { width: 6px; height: 6px; border-radius: 50%; background: #fff; display: none; }
.radio-dot.selected .radio-dot-inner { display: block; }

/* Condition cards */
.condition-card {
  width: 100%; background: #fff; border: 2px solid #e5e7eb; border-radius: 1rem;
  padding: 1rem 1.25rem; cursor: pointer; transition: all 0.2s; text-align: left; margin-bottom: 0.75rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem;
}
.condition-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.condition-card.new-cond { border-color: #e5e7eb; }
.condition-card.new-cond:hover, .condition-card.new-cond.selected { border-color: #22c55e; box-shadow: 0 8px 24px rgba(34,197,94,0.1); }
.condition-card.good-cond:hover, .condition-card.good-cond.selected { border-color: #f59e0b; box-shadow: 0 8px 24px rgba(245,158,11,0.1); }
.condition-card.broken-cond:hover, .condition-card.broken-cond.selected { border-color: #dc2626; box-shadow: 0 8px 24px rgba(220,38,38,0.1); }
.cond-name { font-size: 1.125rem; font-weight: 800; color: #111827; }
.cond-badge { font-size: 0.75rem; font-weight: 700; padding: 0.125rem 0.5rem; border-radius: 9999px; margin-left: 0.5rem; }
.cond-desc { font-size: 0.875rem; color: #6b7280; margin-top: 0.375rem; line-height: 1.5; }
.cond-price { font-size: 1.375rem; font-weight: 800; padding: 0.5rem 1rem; border-radius: 0.75rem; color: #fff; white-space: nowrap; text-align: right; }
.cond-price-label { font-size: 0.75rem; color: #9ca3af; margin-top: 0.25rem; text-align: right; }
.trust-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.trust-chip { background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; padding: 0.75rem; text-align: center; }
.trust-chip-icon { width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.trust-chip-icon svg { width: 1.25rem; height: 1.25rem; }
.trust-chip-title { font-size: 0.75rem; font-weight: 700; color: #111827; }
.trust-chip-desc { font-size: 0.6875rem; color: #6b7280; margin-top: 2px; }

/* ── STEP 5 FORM ── */
.form-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-section { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 1.25rem; }
.form-section-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.form-icon { width: 2rem; height: 2rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-icon svg { width: 1rem; height: 1rem; }
.form-icon-red { background: #fef2f2; }
.form-icon-red svg { color: #dc2626; }
.form-icon-green { background: #f0fdf4; }
.form-icon-green svg { color: #16a34a; }
.form-icon-amber { background: #fffbeb; }
.form-icon-amber svg { color: #d97706; }
.form-section-title { font-weight: 700; font-size: 0.9375rem; color: #111827; }
.form-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field-label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 0.375rem; }
.field-input {
  width: 100%; border: 2px solid #e5e7eb; border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; outline: none; transition: border-color 0.2s;
  background: #fff; color: #111827; font-family: inherit;
}
.field-input::placeholder { color: #9ca3af; }
.field-input:focus { border-color: #f87171; }
.field-textarea { resize: none; }
.postage-option {
  display: flex; align-items: center; gap: 0.75rem; border: 2px solid #e5e7eb;
  border-radius: 1rem; padding: 0.75rem 1rem; cursor: pointer; transition: all 0.2s; background: #fff;
}
.postage-option.selected { border-color: #dc2626; background: #fef2f2; }
.postage-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.postage-option .postage-icon { background: #f3f4f6; }
.postage-option .postage-icon svg { color: #6b7280; transition: color 0.2s; }
.postage-option.selected .postage-icon { background: #fee2e2; }
.postage-option.selected .postage-icon svg { color: #dc2626; }
.postage-title { font-size: 0.875rem; font-weight: 700; color: #111827; }
.postage-desc { font-size: 0.75rem; color: #6b7280; margin-top: 2px; }
.order-sidebar { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; overflow: hidden; }
.order-sidebar-header { background: linear-gradient(135deg, #dc2626, #b91c1c); padding: 1.25rem; }
.order-sidebar-price { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.order-sidebar-label { font-size: 0.75rem; color: #fca5a5; margin-bottom: 0.25rem; }
.order-sidebar-sub { font-size: 0.75rem; color: #fca5a5; margin-top: 0.25rem; }
.order-sidebar-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; padding: 1rem; }
.order-perk { display: flex; align-items: center; gap: 0.5rem; }
.order-perk-icon { width: 1.5rem; height: 1.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.order-perk-icon svg { width: 0.75rem; height: 0.75rem; }
.order-perk-text { font-size: 0.6875rem; color: #4b5563; font-weight: 500; }
.submit-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c); color: #fff; font-weight: 700;
  padding: 1rem; border-radius: 1rem; font-size: 1rem; transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(220,38,38,0.3); margin-top: 0.5rem;
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(220,38,38,0.35); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.submit-btn svg { width: 1.25rem; height: 1.25rem; }
.error-box { background: #fef2f2; border: 2px solid #fecaca; border-radius: 1rem; padding: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.error-box svg { width: 1.25rem; height: 1.25rem; color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.error-box-title { font-size: 0.875rem; font-weight: 600; color: #7f1d1d; margin-bottom: 0.25rem; }
.error-box-msg { font-size: 0.75rem; color: #dc2626; }
.error-box-close { color: #f87171; cursor: pointer; margin-left: auto; flex-shrink: 0; }
.error-box-close svg { width: 1rem; height: 1rem; }

/* ── SUCCESS SCREEN ── */
.success-header { background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 1.5rem; padding: 2.5rem; text-align: center; margin-bottom: 1.25rem; box-shadow: 0 20px 60px rgba(34,197,94,0.2); }
.success-check { width: 4rem; height: 4rem; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.success-check svg { width: 2.25rem; height: 2.25rem; color: #fff; }
.success-title { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.success-sub { font-size: 0.875rem; color: #dcfce7; }
.order-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.875rem; font-weight: 700; padding: 0.5rem 1rem; border-radius: 9999px; margin-top: 1rem; letter-spacing: 0.1em; }

/* ── LOADING SPINNER ── */
.spinner { width: 2.5rem; height: 2.5rem; border: 3px solid #fee2e2; border-top-color: #dc2626; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 1rem; gap: 1rem; }
.loading-screen p { color: #4b5563; font-weight: 500; }

/* ── STATUS STATE (error/empty) ── */
.status-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 1rem; text-align: center; gap: 1rem; }
.status-icon { width: 3rem; height: 3rem; color: #dc2626; }
.status-title { font-weight: 700; font-size: 1.125rem; color: #111827; }
.status-msg { font-size: 0.875rem; color: #6b7280; max-width: 28rem; }
.status-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.btn-outline { background: #fff; border: 1px solid #e5e7eb; color: #374151; font-weight: 600; padding: 0.5rem 1.5rem; border-radius: 0.75rem; cursor: pointer; transition: background 0.2s; }
.btn-outline:hover { background: #f9fafb; }
.continue-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c); color: #fff; font-weight: 700;
  padding: 0.875rem 1rem; border-radius: 1rem; font-size: 0.9375rem; transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(220,38,38,0.25); margin-top: 0.75rem;
}
.continue-btn:hover { box-shadow: 0 12px 28px rgba(220,38,38,0.3); }
.continue-btn svg { width: 1.25rem; height: 1.25rem; }
.blue-tip { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 1rem; padding: 0.75rem 1rem; display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.blue-tip svg { width: 1.25rem; height: 1.25rem; color: #3b82f6; flex-shrink: 0; margin-top: 2px; }
.blue-tip-text { font-size: 0.875rem; color: #374151; line-height: 1.5; }
.blue-tip-text strong { color: #1d4ed8; }

/* ── HOW IT WORKS PAGE ── */
.how-step-card { background: #fff; border-radius: 1.5rem; overflow: hidden; border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.3s; }
.how-step-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.how-step-layout { display: flex; }
.how-step-num-bar { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 6rem; flex-shrink: 0; }
.how-step-num { font-size: 5rem; font-weight: 800; color: rgba(255,255,255,0.3); line-height: 1; }
.how-step-body { flex: 1; padding: 2rem; }
.how-step-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.how-step-icon-wrap { display: flex; align-items: center; gap: 0.75rem; }
.how-step-icon { width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-step-icon svg { width: 1.5rem; height: 1.5rem; }
.how-step-title { font-size: 1.5rem; font-weight: 800; color: #111827; }
.how-step-tag { font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; flex-shrink: 0; }
.how-step-paras { display: flex; flex-direction: column; gap: 0.75rem; }
.how-step-paras p { font-size: 0.9375rem; color: #6b7280; line-height: 1.6; }

/* ── ABOUT PAGE ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 48rem; margin: 3rem auto 0; }
.stat-card { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 1.25rem; text-align: center; transition: all 0.3s; }
.stat-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-color: #fee2e2; }
.stat-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.stat-icon svg { width: 1.25rem; height: 1.25rem; }
.stat-value { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: #9ca3af; font-weight: 500; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-story-right { position: relative; }
.about-story-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #fee2e2, #fff1f2); border-radius: 1.5rem; transform: rotate(-2deg) scale(1.05); }
.about-story-card { position: relative; background: #fff; border-radius: 1.5rem; border: 1px solid #fee2e2; box-shadow: 0 20px 60px rgba(0,0,0,0.08); padding: 2rem; }
.prog-bar-wrap { margin-bottom: 1rem; }
.prog-bar-header { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.prog-bar-track { height: 8px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.prog-bar-fill { height: 100%; border-radius: 9999px; }
.values-grid-about { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.value-card-about {
  padding: 2rem; border-radius: 1.5rem; background: #f9fafb;
  border: 2px solid transparent; transition: all 0.3s; display: flex; gap: 1.25rem;
}
.value-card-about:hover { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.why-check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.why-check-dot { width: 1.25rem; height: 1.25rem; background: #dc2626; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check-dot svg { width: 0.75rem; height: 0.75rem; color: #fff; }
.why-check-text { font-size: 0.9375rem; color: #4b5563; }
.testimonial-card { background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 1.25rem; transition: all 0.3s; }
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-color: #fee2e2; }
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.stars svg { width: 1rem; height: 1rem; color: #f59e0b; fill: #f59e0b; }
.testimonial-quote { font-size: 0.9375rem; color: #4b5563; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.875rem; color: #111827; }
.author-location { font-size: 0.75rem; color: #9ca3af; }
.mission-block { background: linear-gradient(135deg, #dc2626, #b91c1c); border-radius: 1.5rem; padding: 3.5rem; text-align: center; position: relative; overflow: hidden; }
.mission-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: #fff; border-radius: 1rem; border: 1px solid #f3f4f6; padding: 1.25rem; transition: all 0.3s; text-decoration: none; color: inherit; }
.contact-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-color: #fee2e2; }
.contact-card-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
.contact-card:hover .contact-card-icon { transform: scale(1.1); }
.contact-card-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-card-label { font-size: 0.625rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-card-value { font-weight: 700; color: #111827; font-size: 0.875rem; }
.contact-card-sub { font-size: 0.75rem; color: #9ca3af; margin-top: 2px; }
.contact-form-card { background: #fff; border-radius: 1.5rem; border: 1px solid #f3f4f6; overflow: hidden; }
.contact-form-header { background: linear-gradient(135deg, #dc2626, #b91c1c); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.contact-form-header-icon { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.2); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }
.contact-form-header-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.contact-form-body { padding: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.select-field {
  width: 100%; border: 1px solid #e5e7eb; border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; outline: none; transition: all 0.2s;
  background: #f9fafb; color: #111827; font-family: inherit; appearance: none;
}
.select-field:focus { border-color: #dc2626; box-shadow: 0 0 0 2px rgba(220,38,38,0.15); }
.privacy-note { display: flex; align-items: flex-start; gap: 0.75rem; background: #fef2f2; border-radius: 0.75rem; padding: 0.875rem; margin-bottom: 1.25rem; }
.privacy-note svg { width: 1rem; height: 1rem; color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.privacy-note-text { font-size: 0.8125rem; color: #6b7280; line-height: 1.5; }
.privacy-note-text a { color: #dc2626; font-weight: 500; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.trust-strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem; border-radius: 1rem; background: #f9fafb; border: 1px solid #f3f4f6; transition: all 0.3s; }
.trust-strip-item:hover { background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.06); border-color: #fee2e2; }
.trust-strip-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.trust-strip-icon svg { width: 1.25rem; height: 1.25rem; }
.trust-strip-title { font-weight: 700; font-size: 0.875rem; color: #111827; margin-bottom: 2px; }
.trust-strip-desc { font-size: 0.75rem; color: #9ca3af; }

/* ── FAQ PAGE ── */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid #f3f4f6; border-radius: 1rem; overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: #fecaca; box-shadow: 0 8px 24px rgba(220,38,38,0.06); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; cursor: pointer; }
.faq-question-text { font-weight: 600; color: #111827; font-size: 0.9375rem; line-height: 1.4; }
.faq-chevron { width: 1.25rem; height: 1.25rem; color: #dc2626; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer-inner { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: #6b7280; line-height: 1.7; border-top: 1px solid #f3f4f6; padding-top: 1rem; }

/* ── PRIVACY / TERMS PAGES ── */
.policy-layout { display: grid; grid-template-columns: 16rem 1fr; gap: 3rem; align-items: start; }
.policy-toc { position: sticky; top: 5rem; }
.toc-title { font-size: 0.75rem; font-weight: 700; color: #111827; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.toc-links { display: flex; flex-direction: column; gap: 0.25rem; }
.toc-link { font-size: 0.875rem; color: #6b7280; padding: 0.375rem 0.75rem; border-radius: 0.5rem; transition: all 0.2s; }
.toc-link:hover { color: #dc2626; background: #fef2f2; }
.policy-content { max-width: 48rem; }
.policy-section { margin-bottom: 3rem; }
.policy-section-title { font-size: 1.375rem; font-weight: 700; color: #111827; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid #f3f4f6; }
.policy-text { font-size: 0.9375rem; color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.policy-list { list-style: none; padding: 0; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.policy-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: #4b5563; }
.policy-list-dot { width: 6px; height: 6px; border-radius: 50%; background: #dc2626; flex-shrink: 0; margin-top: 0.5rem; }

/* ── COUNTER OFFER PAGE ── */
.counter-card { background: #fff; border-radius: 1.5rem; border: 1px solid #f3f4f6; padding: 2rem; max-width: 40rem; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .devices-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.75rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-primary.desktop-cta { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
  .devices-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sell-devices-grid { grid-template-columns: repeat(2, 1fr); }
  .storage-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid-about { grid-template-columns: 1fr; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step-layout { flex-direction: column; }
  .how-step-num-bar { flex-direction: row; padding: 0.75rem 1rem; justify-content: flex-start; gap: 0.75rem; width: 100%; }
  .how-step-num { font-size: 2rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; }
  .network-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3rem 1rem; }
  .device-img-wrap { height: 6rem; padding: 0.5rem; }
  .hero-blob-tr, .hero-blob-bl { display: none; }
}
@media (min-width: 769px) {
  .btn-mobile-cta { display: none; }
  .form-layout { grid-template-columns: 1fr 280px; gap: 1.5rem; align-items: start; }
}
