/* =========================================================
   POP N LOCK WRISTBANDS — Global Stylesheet
   ========================================================= */

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gray-100: #f1f1ef;
  --gray-300: #d8d8d5;
  --gray-500: #8a8a86;
  --gray-700: #4a4a47;
  --accent: #ff3b1f;
  --accent-dark: #d92a10;
  --accent-2: #ffd400;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.14);
  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { color: var(--gray-700); }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,59,31,0.08);
  border: 1px solid rgba(255,59,31,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 60px 0; }
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-300); }
.section--off { background: var(--off-white); }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255,59,31,.35);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 12px 26px rgba(255,59,31,.42); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--black-soft); }
.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10,10,10,0.07);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 10px 13px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  color: var(--black-soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--gray-100); }
.nav-links a.active { background: var(--black); color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}
.nav-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,59,31,0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,212,0,0.12), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead {
  color: var(--gray-300);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
}
.hero-stats div span { font-size: 0.82rem; color: var(--gray-500); letter-spacing: 0.03em; }

.hero-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.logo-showcase {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}
.logo-showcase img { width: 100%; height: auto; }
.hero-art .band-card {
  background: linear-gradient(155deg, #161616, #060606);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 42px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}
.hero-art .band-strip {
  height: 46px;
  border-radius: 999px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* small page hero (non-home) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 68px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,59,31,0.22), transparent 45%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--gray-300); max-width: 640px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--gray-300); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--accent);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge svg { width: 28px; height: 28px; stroke: var(--white); }
.icon-badge.accent { background: var(--accent); }

/* product/service detail block */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-block.reverse .feature-visual { order: 2; }
.feature-visual {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-300);
}
.feature-list { margin-top: 20px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-300);
  font-size: 0.95rem;
  color: var(--gray-700);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  stroke: var(--accent);
}

/* wristband color swatch visual */
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-300);
}

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-300); }
table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
thead th {
  background: var(--black);
  color: var(--white);
  text-align: left;
  padding: 16px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--gray-700);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--off-white); }
td strong { color: var(--black); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.stat-strip div { text-align: center; }
.stat-strip strong { display: block; font-size: 2.1rem; font-weight: 900; color: var(--black); }
.stat-strip span { font-size: 0.82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-300);
}
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.step-num::before { content: counter(step); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 22px; height: 22px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); margin-bottom: 4px; }
.info-row a, .info-row span { font-weight: 700; }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  height: 260px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 800; color: var(--black); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,59,31,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 14px; }
.form-status { margin-top: 16px; font-weight: 700; font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a8a3c; }
.form-status.err { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid img { height: 42px; margin-bottom: 16px; }
.footer-grid p { color: var(--gray-500); font-size: 0.9rem; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-300); font-size: 0.92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Floating buttons ---------- */
.float-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.whatsapp svg { width: 28px; height: 28px; fill: var(--white); }
.float-btn.top { background: var(--black); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .18s ease; }
.float-btn.top.show { opacity: 1; pointer-events: auto; }
.float-btn.top svg { width: 22px; height: 22px; stroke: var(--white); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .feature-block, .feature-block.reverse .feature-visual, .contact-grid { grid-template-columns: 1fr; }
  .feature-block.reverse .feature-visual { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1120px) {
  .nav-links, .nav-phone-wrap { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav-links.is-open a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    white-space: normal;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 60px 0; }
  .brand img { height: 38px; }
}
