/* =========================================================
   Bulk Mobile Accessories — Wholesale Sourcing Platform
   Pure HTML/CSS/JS — Mobile First — Light Teal palette
   ========================================================= */

:root{
  --bg: #ffffff;
  --bg-soft: #f3f7f8;          /* light slate / soft grey */
  --bg-section: #eef6f7;       /* soft cyan tint */
  --surface: #ffffff;
  --border: #d9e6e8;
  --text: #0f2a30;             /* deep slate ink */
  --text-soft: #4a6670;
  --muted: #7a8f97;
  --teal: #2bb6b0;             /* light teal */
  --teal-dark: #1f8f8a;
  --teal-soft: #d6f1ef;
  --cyan: #67d4d4;             /* soft cyan */
  --cyan-soft: #e6f7f7;
  --accent: #ffb547;           /* warm pin accent for badges */
  --shadow-sm: 0 2px 8px rgba(15,42,48,0.04);
  --shadow-md: 0 8px 28px rgba(15,42,48,0.08);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--teal-dark); text-decoration:none; }
a:hover{ color: var(--teal); }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--text); letter-spacing:-0.01em; margin:0 0 .6rem; line-height:1.2; }
p{ margin:0 0 .9rem; color: var(--text-soft); }
ul{ margin:0 0 1rem; padding-left: 1.1rem; }
ul.clean{ list-style:none; padding:0; margin:0; }

.container{ width:100%; max-width: var(--maxw); margin:0 auto; padding: 0 18px; }

/* ============ HEADER ============ */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  font-size: 16px;
}
.brand-logo{
  width: 38px; height:38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  display:grid; place-items:center;
  color:#fff; font-weight:800; font-family: var(--font-display);
  box-shadow: 0 4px 14px rgba(43,182,176,0.35);
  flex-shrink:0;
}
.brand-name span{ color: var(--teal-dark); }
.nav-links{
  display:none;
  gap: 22px; align-items:center;
}
.nav-links a{ color: var(--text-soft); font-weight: 500; font-size: 14px; }
.nav-links a:hover{ color: var(--text); }
.nav-cta{
  display:inline-flex; align-items:center; gap:6px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--text); color: #fff !important;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover{ background: var(--teal-dark); color:#fff !important; }

.menu-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px;height:40px; border-radius:10px;
  background: var(--bg-soft); border:1px solid var(--border);
  cursor:pointer;
}
.menu-toggle svg{ width:20px; height:20px; }

.mobile-menu{
  display:none; flex-direction:column;
  gap:6px; padding: 12px 0 18px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  padding: 10px 12px; border-radius: 10px;
  color: var(--text); font-weight: 500; font-size: 15px;
}
.mobile-menu a:hover{ background: var(--bg-soft); }

@media (min-width: 860px){
  .nav-links{ display:flex; }
  .menu-toggle{ display:none; }
  .mobile-menu{ display:none !important; }
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  cursor:pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; line-height:1;
}
.btn-primary{ background: var(--teal); color:#fff; box-shadow: 0 8px 22px rgba(43,182,176,0.28); }
.btn-primary:hover{ background: var(--teal-dark); color:#fff; transform: translateY(-1px); }
.btn-dark{ background: var(--text); color:#fff; }
.btn-dark:hover{ background:#1a3b42; color:#fff; transform: translateY(-1px); }
.btn-outline{ background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover{ background: var(--bg-soft); }
.btn svg{ width:16px; height:16px; }

/* ============ HERO ============ */
.hero{
  position: relative;
  background:
    radial-gradient(900px 500px at 90% -10%, var(--cyan-soft) 0%, transparent 60%),
    radial-gradient(700px 400px at -10% 10%, var(--teal-soft) 0%, transparent 60%),
    var(--bg);
  padding: 36px 0 30px;
  overflow: hidden;
}
.hero-grid{
  display:grid; gap: 28px;
  grid-template-columns: 1fr;
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow .dot{ width:8px; height:8px; background: var(--teal); border-radius:50%; }

.hero h1{
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: .8rem;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-dark), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero .sub{
  font-size: 16px;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 22px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 22px; }

.trust{
  display:flex; flex-wrap:wrap; gap: 16px 22px;
  font-size: 13.5px; color: var(--text-soft);
}
.trust-item{ display:inline-flex; align-items:center; gap:6px; }
.trust-item svg{ width:16px; height:16px; color: var(--teal); flex-shrink:0; }

/* Hero showcase */
.hero-visual{ position: relative; }
.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.hero-mosaic{
  display:grid; grid-template-columns: 1.4fr 1fr; gap: 10px;
}
.hero-mosaic .tile{
  background: var(--bg-soft);
  border-radius: 14px;
  overflow:hidden;
  aspect-ratio: 1 / 1;
  display:grid; place-items:center;
}
.hero-mosaic .tile.wide{ grid-row: span 2; aspect-ratio: auto; }
.hero-mosaic .tile img{
  width:100%; height:100%;
  object-fit: contain;
  padding: 10px;
}
.hero-stats{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 14px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}
.hero-stats div{ text-align:center; }
.hero-stats strong{
  display:block; font-family: var(--font-display);
  font-size: 18px; color: var(--text); font-weight: 800;
}
.hero-stats span{ font-size: 11.5px; color: var(--muted); }

@media (min-width: 860px){
  .hero{ padding: 64px 0 56px; }
  .hero-grid{ grid-template-columns: 1.05fr 1fr; gap: 48px; }
  .hero-stats strong{ font-size: 22px; }
}

/* ============ SECTION BASE ============ */
section.block{ padding: 56px 0; }
section.block.alt{ background: var(--bg-soft); }
section.block.tint{ background: var(--cyan-soft); }

.section-head{ max-width: 720px; margin: 0 auto 32px; text-align:center; }
.section-head .kicker{
  display:inline-block; padding: 5px 12px; border-radius: 999px;
  background: #fff; color: var(--teal-dark);
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  border: 1px solid var(--border);
  margin-bottom: 12px; text-transform: uppercase;
}
.section-head h2{
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em;
}
.section-head p{ color: var(--text-soft); font-size: 15.5px; }

/* ============ GRIDS ============ */
.grid{ display:grid; gap: 14px; }
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
.grid-4{ grid-template-columns: repeat(2, 1fr); }
.grid-5{ grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px){
  .grid-2{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(3, 1fr); }
  .grid-5{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px){
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
  .grid-5{ grid-template-columns: repeat(5, 1fr); }
}

/* ============ RETAILER CARDS (Section 2) ============ */
.retailer-card{
  background: #fff; border:1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px;
  text-align:center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.retailer-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.retailer-card .icon-wrap{
  width: 54px; height:54px; margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--cyan-soft); color: var(--teal-dark);
  display:grid; place-items:center;
}
.retailer-card .icon-wrap svg{ width:26px; height:26px; }
.retailer-card h3{ font-size: 15.5px; margin-bottom: 4px; }
.retailer-card p{ font-size: 13px; margin:0; color: var(--muted); }

/* ============ PRODUCT CATEGORY CARDS (Section 3) ============ */
.cat-card{
  background: #fff; border:1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-thumb{
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  display:grid; place-items:center;
  padding: 14px;
}
.cat-thumb img{
  width:100%; height:100%;
  object-fit: contain;
}
.cat-thumb.illus{
  background: linear-gradient(135deg, var(--cyan-soft), #fff);
}
.cat-thumb.illus svg{ width: 64%; height: auto; max-height: 110px; color: var(--teal-dark); }
.cat-body{ padding: 14px 16px 18px; }
.cat-body h3{ font-size: 15px; margin: 0 0 4px; }
.cat-body p{ font-size: 12.5px; margin:0; color: var(--muted); }
.cat-pill{
  display:inline-block; margin-top:8px;
  font-size: 11.5px; font-weight:600;
  color: var(--teal-dark); background: var(--teal-soft);
  padding: 3px 9px; border-radius: 999px;
}

/* ============ BENEFITS (Section 4) ============ */
.benefit{
  background:#fff; border:1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  position: relative; overflow:hidden;
}
.benefit::before{
  content:""; position:absolute; right:-30px; top:-30px;
  width: 110px; height:110px; border-radius:50%;
  background: var(--cyan-soft); opacity:.55;
}
.benefit .b-icon{
  position:relative; width:42px; height:42px; border-radius: 12px;
  background: var(--text); color:#fff;
  display:grid; place-items:center; margin-bottom: 12px;
}
.benefit h3{ font-size: 15.5px; margin-bottom: 4px; position:relative; }
.benefit p{ font-size: 13.5px; margin:0; color: var(--text-soft); position:relative; }

/* ============ STEPS (Section 5) ============ */
.steps{
  display:grid; gap: 14px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px){ .steps{ grid-template-columns: repeat(5, 1fr); } }
.step{
  background:#fff; border:1px solid var(--border);
  border-radius: var(--radius); padding: 22px 16px 18px;
  position:relative;
}
.step-num{
  width: 32px; height:32px; border-radius: 10px;
  background: var(--teal); color:#fff;
  display:grid; place-items:center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  margin-bottom: 12px;
}
.step h4{ font-size: 14.5px; margin: 0 0 4px; }
.step p{ font-size: 12.8px; margin:0; color: var(--text-soft); }

/* ============ ORDERING DETAILS (Section 6) ============ */
.order-grid{ display:grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 820px){ .order-grid{ grid-template-columns: repeat(2,1fr); } }
.order-card{
  background:#fff; border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display:flex; flex-direction:column;
  box-shadow: var(--shadow-sm);
}
.order-card.featured{
  background: linear-gradient(160deg, #fff 0%, var(--cyan-soft) 120%);
  border-color: var(--teal);
}
.order-card .tag{
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--teal-dark); background: var(--teal-soft);
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.order-card h3{ font-size: 20px; margin: 0 0 6px; }
.order-card .site-url{
  font-size: 13px; color: var(--muted); margin-bottom: 18px;
  word-break: break-all;
}
.order-card ul.specs{
  list-style:none; padding:0; margin: 0 0 22px;
  display:grid; gap: 10px;
}
.order-card ul.specs li{
  display:flex; align-items:flex-start; gap: 10px;
  font-size: 14px; color: var(--text);
}
.order-card ul.specs li svg{ width:18px; height:18px; color: var(--teal); flex-shrink:0; margin-top: 1px; }
.order-card ul.specs li strong{ color: var(--text); font-weight: 700; }
.order-card .order-cta{ margin-top: auto; }

/* ============ GUIDE (Section 7) ============ */
.guide{
  display:grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px){ .guide{ grid-template-columns: 1.2fr 1fr; align-items: start; } }
.guide .topic{
  background:#fff; border:1px solid var(--border);
  border-radius: var(--radius); padding: 18px 18px 14px;
  margin-bottom: 12px;
}
.guide .topic h4{ font-size: 15.5px; margin-bottom: 6px; display:flex; align-items:center; gap:8px; }
.guide .topic h4 .dotx{ width:8px; height:8px; border-radius:2px; background: var(--teal); }
.guide .topic p{ font-size: 14px; margin:0; color: var(--text-soft); }
.guide .topic ul{ margin: 6px 0 0; padding-left: 18px; }
.guide .topic ul li{ font-size: 13.5px; color: var(--text-soft); margin-bottom: 4px; }

.guide-aside{
  background: var(--text); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 22px;
  position: relative; overflow: hidden;
}
.guide-aside::before{
  content:""; position:absolute; right:-50px; bottom:-50px;
  width: 200px; height:200px; border-radius:50%;
  background: radial-gradient(circle, rgba(43,182,176,0.35), transparent 70%);
}
.guide-aside h3{ color:#fff; font-size: 20px; margin-bottom: 8px; position:relative; }
.guide-aside p{ color: #c9dbe0; font-size: 14px; position:relative; }
.guide-aside ul{ list-style:none; padding:0; margin: 12px 0 18px; position:relative; }
.guide-aside ul li{
  display:flex; align-items:flex-start; gap: 9px;
  font-size: 14px; color: #e0eef0; margin-bottom: 8px;
}
.guide-aside ul li svg{ width:16px; height:16px; color: var(--cyan); flex-shrink:0; margin-top: 3px; }

/* ============ FAQ (Section 8) ============ */
.faq{ max-width: 820px; margin: 0 auto; }
.faq-item{
  background:#fff; border:1px solid var(--border);
  border-radius: 14px; margin-bottom: 10px;
  overflow:hidden;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap: 14px;
  padding: 16px 18px; cursor:pointer;
  font-weight: 600; font-size: 14.5px; color: var(--text);
  background: #fff; border:none; width:100%; text-align:left;
}
.faq-q:hover{ background: var(--bg-soft); }
.faq-q .chev{
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--bg-soft); display:grid; place-items:center;
  flex-shrink:0; transition: transform .25s ease, background .2s ease;
}
.faq-item.open .faq-q .chev{ transform: rotate(180deg); background: var(--teal-soft); color: var(--teal-dark); }
.faq-q .chev svg{ width:14px; height:14px; }
.faq-a{
  max-height: 0; overflow:hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px;
}
.faq-item.open .faq-a{
  max-height: 400px;
  padding: 0 18px 18px;
}
.faq-a p{ margin:0; font-size: 14px; color: var(--text-soft); }

/* ============ CTA (Section 9) ============ */
.cta-section{
  background:
    radial-gradient(800px 360px at 80% 0%, rgba(103,212,212,0.20), transparent 60%),
    linear-gradient(180deg, var(--text) 0%, #0a1f24 100%);
  color:#fff; padding: 64px 0;
  text-align:center;
}
.cta-section h2{
  color:#fff; font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  font-weight: 800; margin-bottom: 10px;
}
.cta-section p{ color:#c9dbe0; font-size: 16px; max-width: 580px; margin: 0 auto 26px; }
.cta-buttons{ display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; }
.cta-section .btn-primary{ background: var(--teal); }
.cta-section .btn-primary:hover{ background: var(--cyan); color: var(--text); }
.cta-section .btn-outline{
  color:#fff; border-color: rgba(255,255,255,0.3); background: transparent;
}
.cta-section .btn-outline:hover{ background: rgba(255,255,255,0.08); color:#fff; }

/* ============ FOOTER ============ */
.footer{
  background: #f7fbfb;
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid{
  display:grid; gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer h5{
  font-size: 13px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 12px;
}
.footer ul.clean li{ margin-bottom: 8px; }
.footer ul.clean a{ color: var(--text-soft); font-size: 13.5px; }
.footer ul.clean a:hover{ color: var(--teal-dark); }
.footer .brand{ margin-bottom: 12px; }
.footer .about{ color: var(--text-soft); font-size: 13.5px; max-width: 360px; }
.footer-bottom{
  border-top: 1px solid var(--border);
  margin-top: 32px; padding-top: 18px;
  display:flex; flex-wrap:wrap; gap: 10px; justify-content: space-between;
  font-size: 12.5px; color: var(--muted);
}
.footer .seo-text{
  margin-top: 18px; font-size: 12px; color: var(--muted);
  line-height: 1.7;
}

/* ============ Utility ============ */
.text-center{ text-align:center; }
.mt-12{ margin-top: 12px; }
.mt-20{ margin-top: 20px; }
.mt-32{ margin-top: 32px; }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* Prevent any accidental overflow */
section, header, footer{ width:100%; overflow-x: clip; }
