/* ============================================================
   Gadget Accessories Wholesale — Landing Page
   Mobile-first, white background, light grey sections,
   soft blue highlights, orange CTAs.
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #0F172A;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #F6F8FB;
  --bg-tint: #EEF4FF;
  --text: #0F172A;
  --text-muted: #4B5563;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --border-soft: #EEF1F5;

  --blue: #2563EB;
  --blue-600: #1E50C9;
  --blue-50: #EFF4FE;
  --blue-100: #DDE7FD;

  --orange: #F97316;
  --orange-600: #EA6A0E;
  --orange-50: #FFF3EA;

  --green: #10B981;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.08);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin: 12px auto 0;
}

/* ---------- Typography ---------- */
.h1 {
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.h2 {
  font-size: clamp(24px, 4.2vw, 38px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0;
}
h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.lead {
  font-size: clamp(16px, 2.1vw, 19px);
  color: var(--text-muted);
  margin: 0 0 26px;
  max-width: 520px;
}
.hl-blue { color: var(--blue); position: relative; }
.hl-blue::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--blue-100);
  z-index: -1;
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: var(--blue-50);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow-center { display: inline-flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}
.btn-primary:hover { background: var(--orange-600); }

.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: rgba(255,255,255,0);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: #F8FAFC; }

.btn-lg { padding: 14px 22px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { display: inline-flex; }
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-line1 { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.logo-line2 { font-weight: 600; font-size: 12px; color: var(--text-muted); margin-top: 3px; }

.nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
}
.nav a {
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(700px 280px at 90% -10%, var(--blue-50), transparent 60%),
    radial-gradient(500px 220px at 10% 110%, var(--orange-50), transparent 60%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cta-row-center { justify-content: center; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-list li { display: inline-flex; align-items: center; gap: 6px; }
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  flex: 0 0 18px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s ease;
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
}
.hero-card-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero-card-1 { grid-column: 1 / 2; grid-row: 1 / 2; transform: rotate(-1.5deg); }
.hero-card-2 { grid-column: 2 / 3; grid-row: 1 / 3; }
.hero-card-3 { grid-column: 1 / 2; grid-row: 2 / 3; transform: rotate(1.5deg); }

.hero-badge {
  position: absolute;
  left: -10px;
  bottom: -16px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}
.hero-badge strong { font-size: 18px; font-weight: 800; }
.hero-badge span { font-size: 11px; font-weight: 600; opacity: .9; margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  font-size: 14px;
}
.marquee-track span { flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: 1fr; }
.tight { gap: 12px; }

/* ---------- Benefit cards ---------- */
.bcard {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.bcard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.bcard-icon-blue { background: var(--blue-50); color: var(--blue); }
.bcard-icon-orange { background: var(--orange-50); color: var(--orange); }
.bcard h3 { margin-bottom: 6px; }
.bcard p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* ---------- Product cards ---------- */
.product-grid { gap: 16px; }
.pcard {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.pcard-img {
  background: var(--bg-tint);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  max-height: 130px;
  object-fit: contain;
  object-position: center;
}
.pcard-img-svg svg {
  width: 100%;
  height: 100%;
  max-height: 130px;
  max-width: 160px;
}
.pcard h3 { margin-bottom: 4px; }
.pcard p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---------- Compare (Old way / New way) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.compare-old { background: #FAFBFC; }
.compare-new {
  background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
  border-color: var(--blue-100);
}
.compare-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.compare-tag-new {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.compare-card h3 { font-size: 20px; margin-bottom: 14px; }
.compare-card ul { display: flex; flex-direction: column; gap: 10px; }
.compare-card li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-muted);
}
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--text-light);
}
.compare-new li::before { background: var(--blue); }
.compare-new li { color: var(--text); font-weight: 500; }

/* ---------- Ordering cards ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.order-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.order-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.order-card-alt { border-color: var(--blue-100); }
.order-pill {
  display: inline-block;
  background: var(--orange-50);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.order-pill-alt { background: var(--blue-50); color: var(--blue); }
.order-card h3 { font-size: 22px; margin-bottom: 6px; }
.order-card-head p { color: var(--text-muted); margin: 0; font-size: 15px; }
.order-list { display: flex; flex-direction: column; gap: 10px; }
.order-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.order-list strong { color: var(--text); }

/* ---------- "Why" list cards ---------- */
.lcard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.lcard strong { font-size: 15px; }
.lcard p { color: var(--text-muted); font-size: 14px; margin: 4px 0 0; }
.lcard .tick { margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 4px 18px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s ease, background-color .15s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--orange-50);
  color: var(--orange);
}
.faq-item p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 15px;
}
.faq-item a { color: var(--blue); font-weight: 600; }

/* ---------- Final CTA ---------- */
.cta-final { padding: 64px 0 80px; }
.cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, #1E50C9 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}
.cta-box .h2 { color: #fff; }
.cta-box > p {
  margin: 12px auto 24px;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
}
.cta-trust {
  margin: 24px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #F6F8FB;
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand { max-width: 320px; }
.footer-tag {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--blue); }

.footer-seo {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
}
.footer-seo p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 10px; }
.footer-bottom-links a:hover { color: var(--blue); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Hide desktop nav on small screens */
@media (max-width: 767px) {
  .nav { display: none; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
  .logo-line1 { font-size: 14px; }
  .logo-line2 { font-size: 11px; }
  .section { padding: 48px 0; }
  .hero { padding: 36px 0 32px; }
  .hero-visual { min-height: 280px; gap: 10px; }
  .hero-card img { max-height: 120px; }
  .hero-badge { left: 0; bottom: -8px; padding: 8px 12px; }
  .hero-badge strong { font-size: 16px; }
  .lead { font-size: 16px; }
  .btn-lg { padding: 13px 18px; font-size: 15px; }
  .cta-row .btn { flex: 1 1 100%; }
  .cta-final { padding: 48px 0 60px; }
  .cta-box { padding: 36px 20px; border-radius: 18px; }
  .cta-box > p { font-size: 15px; }
  .pcard-img { height: 140px; }
  .pcard-img img { max-height: 110px; }
  .order-card { padding: 22px; }
  .order-card h3 { font-size: 19px; }
  .footer-grid { gap: 24px; padding-bottom: 24px; }
}

/* Tablets */
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Desktop */
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}

/* Large desktop */
@media (min-width: 1100px) {
  .section { padding: 88px 0; }
  .hero { padding: 80px 0 64px; }
}
