/* Sign Stands Wholesale — B2B procurement landing page
   White/light base, navy/charcoal type, orange "wholesale" accent. */
:root {
  --navy: #10233f;
  --navy-2: #17325a;
  --charcoal: #1f2733;
  --orange: #f2820c;
  --orange-dark: #cf6a02;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --panel: #eef1f6;
  --line: #e2e7ef;
  --muted: #5b6472;
  --muted-2: #8892a0;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'IBM Plex Sans Arabic', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* EYEBROW / TAGS */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-dark);
  background: rgba(242,130,12,0.1); padding: 7px 14px; border-radius: 100px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 10px; font-weight: 800; font-size: 14.5px;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-wide { width: 100%; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px); border-bottom: 1px solid var(--line);
}
.site-nav .bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand .brand-text { line-height: 1.15; }
.brand .brand-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
.brand .brand-text span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--orange-dark); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 700; color: var(--muted); }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13.5px; }

/* HERO */
.hero { padding: 56px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy h1 {
  font-size: 44px; line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; color: var(--navy);
  margin: 18px 0 0;
}
.hero-copy .lede { font-size: 16px; line-height: 1.6; color: var(--muted); font-weight: 600; margin: 18px 0 0; max-width: 480px; }
.hero-copy .desc { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 14px 0 0; max-width: 500px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.pill-row span {
  font-size: 12.5px; font-weight: 700; color: var(--navy); background: var(--panel);
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }

.hero-visual {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px;
  padding: 30px; display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-visual .badge {
  position: absolute; top: 18px; left: 18px; background: var(--navy); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px;
}
.hero-visual svg, .hero-visual img { width: 100%; height: auto; max-width: 360px; border-radius: 12px; }

/* COVERAGE */
.coverage { padding: 0 0 44px; text-align: center; }
.coverage .eyebrow { margin-bottom: 16px; }
.coverage-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.coverage-chips span {
  font-size: 13px; font-weight: 700; color: var(--navy); background: var(--panel);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px;
}

/* PRODUCTS */
.products { padding: 60px 0 20px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); margin: 14px 0 0; }
.section-head p { font-size: 15px; color: var(--muted); margin: 14px 0 0; font-weight: 500; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
}
.product-card .p-visual {
  background: var(--bg-soft); border-radius: 14px; padding: 22px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; min-height: 190px;
}
.product-card .p-visual svg, .product-card .p-visual img { width: 100%; max-width: 190px; height: auto; border-radius: 8px; }
.product-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.product-card .tagline { font-size: 14px; color: var(--orange-dark); font-weight: 700; margin: 6px 0 0; }
.product-card .specs { margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.product-card .specs li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); font-weight: 500; line-height: 1.4; }
.product-card .specs li::before { content: "✓"; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.product-card .ideal { margin: 20px 0 0; font-size: 13px; color: var(--muted-2); font-weight: 600; line-height: 1.6; }
.product-card .ideal strong { color: var(--navy); font-weight: 800; }
.product-card .btn { margin-top: 22px; }

/* WHY WHOLESALE */
.why { background: var(--bg-soft); padding: 64px 0; margin-top: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; }
.why-card .ic { font-size: 26px; }
.why-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin: 12px 0 0; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 8px 0 0; font-weight: 500; }

/* EARLY BOOKING */
.booking { padding: 64px 0; }
.booking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.booking-info h2 { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin: 14px 0 0; }
.booking-info .lede { font-size: 15px; color: var(--muted); margin: 14px 0 0; font-weight: 500; line-height: 1.6; }
.booking-info ul { margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.booking-info ul li {
  font-size: 14px; font-weight: 700; color: var(--navy); background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.booking-info ul li::before { content: "→"; color: var(--orange); font-weight: 800; }

/* FORM */
.form-panel { background: var(--navy); border-radius: 22px; padding: 34px; color: #fff; }
.form-panel h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.form-panel .sub { font-size: 13.5px; color: #b7c2d4; font-weight: 500; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12.5px; font-weight: 700; color: #b7c2d4; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  padding: 11px 13px; border-radius: 9px; font-size: 14px; font-family: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: #7f8ba0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field select option { color: #111; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-group label {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #dfe6f0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); padding: 9px 14px; border-radius: 100px;
  cursor: pointer;
}
.checkbox-group input { accent-color: var(--orange); }
.form-note { font-size: 12px; color: #93a0b5; margin-top: 16px; line-height: 1.6; text-align: center; }
.form-status { font-size: 13px; font-weight: 700; margin-top: 12px; text-align: center; min-height: 18px; }
.form-status.ok { color: #6fe3a0; }
.form-status.err { color: #ff9b9b; }

/* BULK CTA */
.bulk-cta { padding: 20px 0 64px; }
.bulk-box {
  background: var(--charcoal); border-radius: 22px; padding: 48px; text-align: center;
  background-image: linear-gradient(135deg, var(--navy), var(--charcoal));
}
.bulk-box h2 { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.bulk-box p { font-size: 15px; color: #b7c2d4; max-width: 560px; margin: 14px auto 0; font-weight: 500; line-height: 1.6; }
.bulk-box .btn { margin-top: 24px; }

/* FAQ */
.faq-section { max-width: 860px; margin: 0 auto; padding: 60px 24px 20px; }
.faq-section .wrap { padding: 0; max-width: none; }
.faq-list { margin: 36px 0 0; display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 6px 22px; }
.faq-list summary {
  cursor: pointer; padding: 16px 0; font-weight: 700; font-size: 15.5px; list-style: none; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted-2); flex-shrink: 0; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .answer { font-size: 14.5px; line-height: 1.65; color: var(--muted); font-weight: 500; padding: 0 0 18px; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-grid .brand-text strong { color: var(--navy); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.footer-links a:hover { color: var(--navy); }
.footer-note { font-size: 12.5px; color: var(--muted-2); text-align: center; margin-top: 16px; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60; background: #25d366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.wa-float svg { width: 28px; height: 28px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 34px 0 30px; }
  .hero-copy h1 { font-size: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-panel { padding: 24px; }
  .bulk-box { padding: 34px 22px; }
  .bulk-box h2 { font-size: 24px; }
  .section-head h2 { font-size: 28px; }
}
