/* ═══════════════════════════════════════════════════
   VAPEXSPAIN – Professional Wholesale Landing Page
   Design: Minimalist + Glassmorphism accents
   Palette: Navy primary / Emerald CTA / Slate text
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ─── Core palette ─── */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* ─── Brand ─── */
  --accent: #059669;
  --accent-hover: #047857;
  --accent-light: #10b981;
  --accent-subtle: rgba(5, 150, 105, 0.06);
  --accent-glow: rgba(5, 150, 105, 0.15);

  --navy: #0f172a;
  --navy-light: #1e293b;

  /* ─── Tokens ─── */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --ease: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--gray-600);
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.brand {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand span:first-child { color: var(--gray-950); }
.brand span:last-child { color: var(--accent); }

/* ─── Header nav ─── */

.header-nav {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.header-nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}

.header-nav-link:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}

.header-nav-link.is-active {
  color: var(--accent);
  background: var(--accent-subtle);
}

/* ─── Hamburger ─── */

.header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.header-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile nav ─── */

.mobile-nav {
  position: fixed;
  top: 57px;
  left: 0; right: 0; bottom: 0;
  z-index: 19;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; opacity: 1; transform: translateY(0); }

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background var(--ease);
}

.mobile-nav-link:hover { background: var(--gray-50); }
.mobile-nav-link.is-active { color: var(--accent); background: var(--accent-subtle); }

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: background var(--ease);
}

.mobile-nav-cta:hover { background: var(--accent-hover); }

/* ─── Shared button base ─── */

.header-cta, .button, .mini-cta, .sticky-cta a {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
}

.header-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 14px var(--accent-glow);
  transform: translateY(-1px);
}

.header-cta:active { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */

.hero {
  display: grid;
  gap: 32px;
  padding: 48px 16px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, var(--gray-50) 50%, rgba(5,150,105,0.03) 100%);
}

/* Decorative orbs */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15,23,42,0.03) 0%, transparent 65%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

h1 {
  color: var(--gray-950);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero p {
  margin-top: 20px;
  max-width: min(520px, 100%);
  color: var(--gray-500);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  text-align: center;
  font-size: 15px;
  border: none;
  font-family: inherit;
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px var(--accent-glow);
}

.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-2px);
}

.button-primary:active { transform: scale(0.98); }

.button-secondary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.button-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

.button-secondary:active { transform: scale(0.98); }

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.button-dark:active { transform: scale(0.98); }

.hero-media {
  position: relative;
  display: grid;
  min-height: 280px;
  margin: 0;
  place-items: center;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 4% 0% 2%;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(5,150,105,0.04) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.hero-media::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 10%;
  z-index: -1;
  height: 40px;
  content: "";
  background: rgba(5,150,105,0.08);
  border-radius: 50%;
  filter: blur(24px);
}

.hero-media img {
  width: min(80vw, 400px);
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* ═══════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════ */

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.section-heading h2, .final-cta h2 {
  color: var(--gray-900);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-heading p, .final-cta p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}

/* ═══════════════════════════════════════════════════
   PROOF / TRUST SECTION
   ═══════════════════════════════════════════════════ */

.proof {
  display: grid;
  gap: 28px;
  padding: 56px 16px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.proof::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0.3;
}

.proof-highlights {
  display: grid;
  gap: 12px;
}

.proof-highlight {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.proof-highlight:hover {
  border-color: rgba(5,150,105,0.2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(5,150,105,0.05);
  transform: translateY(-2px);
}

.proof-highlight-icon {
  width: 52px;
  height: 52px;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-subtle), rgba(5,150,105,0.1));
  border: 1px solid rgba(5,150,105,0.1);
  border-radius: 14px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(1200%) hue-rotate(130deg) brightness(95%) contrast(95%);
}

.proof-highlight h3 {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-highlight p {
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Metric grid ─── */

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 14px;
  min-height: 120px;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.metric-card:nth-child(even) {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.metric-card:nth-child(even)::before { display: none; }

.metric-card:nth-child(even):hover {
  border-color: rgba(5,150,105,0.2);
  box-shadow: var(--shadow);
}

.metric-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
}

.metric-card:nth-child(even) .metric-icon {
  background: var(--accent-subtle);
  filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(1200%) hue-rotate(130deg) brightness(95%) contrast(95%);
}

.metric-card strong {
  align-self: end;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.metric-card > span:last-child {
  max-width: 260px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   STRIP CTA
   ═══════════════════════════════════════════════════ */

.strip {
  display: grid;
  gap: 20px;
  margin: 56px 16px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.strip::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.strip h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.strip p {
  margin-top: 4px;
  max-width: 560px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════════════════ */

.catalog, .order-flow, .final-cta { padding: 0 16px 56px; }
.catalog { padding-top: 56px; }

.product-rail {
  display: grid;
  grid-auto-columns: minmax(270px, 80vw);
  grid-auto-flow: column;
  gap: 16px;
  margin: 0 -16px;
  padding: 0 16px 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar { display: none; }

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  scroll-snap-align: start;
  transition: all var(--ease);
}

.product-card:hover {
  border-color: rgba(5,150,105,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1190 / 1684;
  object-fit: cover;
  object-position: top;
  background: var(--gray-50);
}

.product-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.product-card h3 {
  color: var(--gray-900);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.55;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 4px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  border-radius: 10px;
}

.mini-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 14px var(--accent-glow);
  transform: translateY(-1px);
}

.mini-cta:active { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════
   ORDER FLOW
   ═══════════════════════════════════════════════════ */

.order-flow {
  position: relative;
  padding-top: 56px;
}

.order-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.flow-timeline {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.flow-timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  align-items: start;
  padding: 22px 0;
  position: relative;
}

.flow-timeline li::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.flow-timeline li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 66px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-light), var(--gray-200));
}

.flow-timeline li:last-child::after { display: none; }

.flow-timeline strong, .flow-timeline span { grid-column: 2; }

.flow-timeline strong {
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 700;
  align-self: center;
}

.flow-timeline span {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */

.faq {
  padding: 56px 16px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--ease);
}

.faq-item:hover { border-color: var(--gray-300); }

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(5,150,105,0.2);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  cursor: pointer;
  list-style: none;
  transition: color var(--ease);
}

.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: inline-grid;
  width: 30px;
  height: 30px;
  background: var(--accent-subtle);
  border: 1px solid rgba(5,150,105,0.1);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  place-items: center;
  transition: all var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */

.final-cta {
  display: grid;
  gap: 16px;
  padding-top: 56px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(5,150,105,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta .button { margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.site-footer {
  background: var(--gray-950);
  color: var(--gray-400);
  padding: 56px 16px 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand .brand { display: inline-flex; margin-bottom: 12px; }
.footer-brand .brand span:first-child { color: var(--white); }
.footer-brand .brand span:last-child { color: var(--accent-light); }

.footer-brand p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--gray-200);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  color: var(--gray-400);
  font-size: 14px;
  transition: color var(--ease);
}

.footer-col ul a:hover { color: var(--accent-light); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg { width: 18px; height: 18px; }

.footer-note {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p { color: var(--gray-500); font-size: 12px; }

.footer-bottom-links { display: flex; gap: 16px; }

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 12px;
  transition: color var(--ease);
}

.footer-bottom-links a:hover { color: var(--accent-light); }

/* ═══════════════════════════════════════════════════
   CONTACT FAB
   ═══════════════════════════════════════════════════ */

.contact-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(5,150,105,0.3);
  transition: all var(--ease);
  animation: fab-entrance 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.contact-fab:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 30px rgba(5,150,105,0.35);
  transform: translateY(-3px);
}

.contact-fab:active { transform: scale(0.97); }
.contact-fab svg { flex-shrink: 0; }

@keyframes fab-entrance {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 639px) {
  .contact-fab { left: 16px; right: 16px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   CONTACT DRAWER
   ═══════════════════════════════════════════════════ */

.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
}

.contact-drawer.is-open { pointer-events: auto; visibility: visible; }

.contact-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.contact-drawer.is-open .contact-drawer-overlay { opacity: 1; }

.contact-drawer-panel {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 28px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80vh;
  overflow-y: auto;
}

.contact-drawer.is-open .contact-drawer-panel { transform: translateY(0); }

.contact-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.contact-drawer-header h3 {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 700;
}

.contact-drawer-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-500);
  transition: all var(--ease);
}

.contact-drawer-close:hover { background: var(--gray-100); color: var(--gray-700); }

.contact-drawer-options { display: grid; gap: 12px; }

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.contact-option:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow), 0 0 0 1px rgba(5,150,105,0.05);
}

.contact-option svg { flex-shrink: 0; color: var(--accent); }

.contact-option strong {
  display: block;
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 600;
}

.contact-option span { color: var(--gray-500); font-size: 13px; }

@media (min-width: 640px) {
  .contact-drawer-panel {
    left: auto;
    width: 400px;
    right: 20px;
    bottom: 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE: TABLET (640px+)
   ═══════════════════════════════════════════════════ */

@media (min-width: 640px) {
  .site-header { padding: 14px 24px; }

  h1 { font-size: 40px; line-height: 1.1; }

  .section-heading h2, .final-cta h2 { font-size: 32px; line-height: 1.2; }

  .hero { padding: 56px 24px 48px; }

  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-actions .button { width: auto; }

  .proof { padding: 64px 24px; }
  .proof-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .strip { margin: 56px 24px; padding: 40px 36px; }

  .catalog, .order-flow, .final-cta { padding-left: 24px; padding-right: 24px; }
  .catalog { padding-top: 64px; }

  .product-rail {
    grid-auto-columns: minmax(300px, 32vw);
    margin: 0 -24px;
    padding: 0 24px 20px;
  }

  .faq { padding: 64px 24px; }
  .faq-list { max-width: 700px; }

  .sticky-cta { right: 24px; left: auto; width: 340px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE: DESKTOP (1024px+)
   ═══════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .site-header { padding: 14px 40px; }
  .header-nav { display: flex; }
  .header-hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .header-cta { margin-left: 8px; }

  h1 { font-size: 52px; line-height: 1.08; }

  .section-heading h2, .final-cta h2 { font-size: 38px; line-height: 1.15; }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1.1fr);
    align-items: center;
    min-height: 660px;
    padding: 72px 40px 48px;
  }

  .hero-media { align-self: stretch; min-height: 540px; }
  .hero-media img { width: min(40vw, 480px); height: auto; }

  .proof { padding: 72px 40px; }
  .proof-highlight { padding: 28px; }

  .metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .metric-card {
    grid-template-columns: 1fr;
    min-height: 180px;
  }

  .metric-icon { grid-row: auto; }
  .metric-card strong { font-size: clamp(28px, 3vw, 44px); }

  .strip {
    margin: 72px 40px;
    padding: 48px 48px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .catalog, .order-flow, .final-cta { padding-left: 40px; padding-right: 40px; }
  .catalog { padding-top: 72px; padding-bottom: 72px; }

  .product-rail {
    grid-auto-columns: 320px;
    margin: 0 -40px;
    padding: 0 40px 20px;
  }

  .flow-timeline { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .flow-timeline li {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 12px 20px;
  }

  .flow-timeline li::before { margin: 0 auto 14px; }

  .flow-timeline li::after {
    left: calc(50% + 26px);
    top: 21px;
    bottom: auto;
    width: calc(100% - 52px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-light), var(--gray-200));
  }

  .flow-timeline strong, .flow-timeline span { grid-column: 1; }

  .faq { padding: 72px 40px; }
  .faq-list { max-width: 760px; }

  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 40px 40px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE: ULTRA (1280px+)
   ═══════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  .site-header, .hero, .benefits, .catalog, .order-flow, .final-cta {
    max-width: var(--max-w);
    margin-right: auto;
    margin-left: auto;
  }

  .site-header { padding: 14px 48px; }

  .hero { padding: 88px 48px 56px; min-height: 700px; }
  .hero-media { margin-right: -1vw; }

  .proof, .faq {
    padding-left: calc((100% - var(--max-w)) / 2 + 48px);
    padding-right: calc((100% - var(--max-w)) / 2 + 48px);
  }

  .strip {
    max-width: calc(var(--max-w) - 96px);
    margin-right: auto;
    margin-left: auto;
  }

  .catalog, .order-flow, .final-cta { padding-left: 48px; padding-right: 48px; }

  .product-rail {
    grid-auto-columns: 340px;
    margin: 0 -48px;
    padding: 0 48px 20px;
  }
}

@media (max-width: 1023px) {
  .header-cta { display: none; }
}
@media (max-width: 639px) {
  .hero-actions .button { width: 100%; }
}

/* ─── Footer responsive ─── */

@media (min-width: 640px) {
  .site-footer { padding: 64px 24px 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 1280px) {
  .site-footer { padding: 72px 48px 32px; }
  .footer-grid { max-width: var(--max-w); margin: 0 auto; }
  .footer-bottom { max-width: var(--max-w); margin-left: auto; margin-right: auto; margin-top: 48px; }
}

/* ═══════════════════════════════════════════════════
   STICKY CTA
   ═══════════════════════════════════════════════════ */

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-cta span { font-size: 13px; font-weight: 500; color: var(--gray-500); }

.sticky-cta strong {
  padding: 8px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
}

/* ─── Benefits ─── */

.benefits {
  display: grid;
  gap: 12px;
  padding: 32px 16px 48px;
}

.benefits article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 16px;
  min-height: 120px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.benefits article:hover { border-color: var(--gray-300); box-shadow: var(--shadow); }

.benefits h2 { align-self: end; color: var(--gray-900); font-size: 20px; font-weight: 600; line-height: 1.1; }
.benefits p { grid-column: 2; color: var(--gray-500); font-size: 15px; }

.benefit-icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--accent-subtle);
  border: 1px solid rgba(5,150,105,0.1);
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════════
   SUBPAGE HERO
   ═══════════════════════════════════════════════════ */

.subpage-hero {
  padding: 48px 16px 36px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.subpage-hero h1 { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--gray-950); letter-spacing: -0.025em; }
.subpage-hero p { margin-top: 10px; color: var(--gray-500); font-size: 16px; line-height: 1.65; max-width: 520px; }

@media (min-width: 640px) {
  .subpage-hero { padding: 60px 24px 44px; }
  .subpage-hero h1 { font-size: 38px; }
}

@media (min-width: 1024px) {
  .subpage-hero { padding: 80px 40px 52px; }
  .subpage-hero h1 { font-size: 44px; }
}

@media (min-width: 1280px) {
  .subpage-hero {
    padding-left: calc((100% - var(--max-w)) / 2 + 48px);
    padding-right: calc((100% - var(--max-w)) / 2 + 48px);
  }
}

/* ═══════════════════════════════════════════════════
   TRACKING PAGE — Clean Redesign v2
   ═══════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────── */
.track-hero {
  position: relative;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 80px 24px 56px;
}
.track-hero-inner {
  max-width: 540px; margin: 0 auto; text-align: center;
}
.track-hero-title {
  font-size: clamp(26px, 4.5vw, 38px); font-weight: 800;
  color: var(--gray-900); line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.track-hero-sub {
  font-size: 15px; color: var(--gray-500);
  line-height: 1.6; max-width: 420px; margin: 0 auto 28px;
}

/* ── Search form ────────────────────────────────────── */
.track-search {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto;
}
.track-search-field { flex: 1; position: relative; }
.track-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); pointer-events: none;
}
.track-search-input {
  width: 100%; padding: 14px 14px 14px 44px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--gray-900); background: var(--white);
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  transition: all 0.15s ease;
}
.track-search-input::placeholder { color: var(--gray-400); }
.track-search-input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.track-search-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 22px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.15s ease; white-space: nowrap;
}
.track-search-btn:hover { background: var(--accent-hover); }
.track-search-btn:active { transform: scale(0.97); }

@media (max-width: 480px) {
  .track-search { flex-direction: column; }
  .track-search-btn { justify-content: center; }
}

.track-hint {
  margin-top: 12px; color: var(--gray-400);
  font-size: 12px; text-align: center;
}
.track-hint.is-error { color: #dc2626; }

/* ── Results section ────────────────────────────────── */
.track-results-section { padding: 0 24px; }
.track-results-wrap { max-width: 680px; margin: 0 auto; }
.tracking-result {
  margin-top: 24px; position: relative;
  padding: 28px; background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: none;
}
.tracking-result.is-visible {
  display: block;
  animation: resultSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes resultSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Status badge */
.tracking-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0.01em;
}
.tracking-status svg { width: 14px; height: 14px; flex-shrink: 0; }
.tracking-status--notfound    { background: var(--gray-100); color: var(--gray-600); }
.tracking-status--info        { background: #eff6ff; color: #1d4ed8; }
.tracking-status--transit     { background: #fef3c7; color: #92400e; }
.tracking-status--expired     { background: var(--gray-100); color: var(--gray-600); }
.tracking-status--pickup      { background: #f0fdf4; color: #15803d; }
.tracking-status--outdelivery { background: #fdf4ff; color: #a21caf; }
.tracking-status--failure     { background: #fef2f2; color: #dc2626; }
.tracking-status--delivered   { background: rgba(5,150,105,0.08); color: var(--accent); }
.tracking-status--exception   { background: #fff7ed; color: #c2410c; }
.tracking-status--error       { background: #fef2f2; color: #dc2626; }
.tracking-status--loading     { background: var(--gray-50); color: var(--gray-500); }

/* Pulse */
.tracking-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
  animation: tpulse 1.2s ease-in-out infinite;
}
@keyframes tpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* Summary card */
.tracking-details { display: grid; gap: 0; }
.tracking-summary {
  display: grid; gap: 0;
  background: var(--gray-50); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 20px;
}
.tracking-detail {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
}
.tracking-detail:last-child { border-bottom: none; padding-bottom: 0; }
.tracking-detail:first-child { padding-top: 0; }
.tracking-detail-label { color: var(--gray-400); font-size: 13px; font-weight: 500; }
.tracking-detail-value { color: var(--gray-900); font-size: 13px; font-weight: 600; text-align: right; }

/* Actions row */
.tracking-result-actions {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; flex-wrap: wrap;
}
.tracking-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px;
  border: 1px solid var(--gray-200); background: var(--white);
  color: var(--gray-600); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.15s ease; font-family: inherit;
}
.tracking-share-btn:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(5,150,105,0.03);
}
.tracking-share-btn svg { flex-shrink: 0; }

.tracking-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px;
  background: #25d366; color: #fff;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.15s ease;
}
.tracking-whatsapp-btn:hover { background: #22c55e; }
.tracking-whatsapp-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.tracking-copied {
  font-size: 12px; font-weight: 600; color: var(--accent);
  margin-top: 6px; opacity: 0; transition: opacity 0.3s ease;
  height: 0; overflow: hidden;
}
.tracking-copied.is-visible { opacity: 1; height: auto; }

/* ── Progress bar ───────────────────────────────────── */
.tracking-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 24px; padding: 20px 12px;
  background: var(--gray-50); border-radius: var(--radius);
}
.tp-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; position: relative; min-width: 72px;
}
.tp-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); color: var(--gray-400);
  transition: all 0.3s ease; flex-shrink: 0;
}
.tp-icon svg { width: 16px; height: 16px; }
.tp-step--done .tp-icon { background: var(--accent); color: #fff; }
.tp-step--active .tp-icon {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 4px rgba(5,150,105,0.1);
}
.tp-step--error .tp-icon {
  background: #dc2626; color: #fff;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}
.tp-label {
  font-size: 10px; font-weight: 600; color: var(--gray-400);
  text-align: center; white-space: nowrap;
}
.tp-step--done .tp-label,
.tp-step--active .tp-label { color: var(--gray-900); }
.tp-step--error .tp-label { color: #dc2626; }

.tp-line {
  flex: 1; height: 2px; min-width: 20px; max-width: 56px;
  background: var(--gray-200); border-radius: 1px;
  margin-top: -18px;
}
.tp-line--done { background: var(--accent); }

@media (max-width: 480px) {
  .tp-step { min-width: 52px; }
  .tp-icon { width: 32px; height: 32px; }
  .tp-icon svg { width: 13px; height: 13px; }
  .tp-label { font-size: 9px; }
  .tp-line { min-width: 8px; max-width: 24px; margin-top: -15px; }
}

/* ── Timeline ───────────────────────────────────────── */
.tracking-timeline { margin-top: 4px; }
.tracking-timeline-title {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.tracking-timeline-title svg { color: var(--accent); }
.tracking-timeline-list { position: relative; padding-left: 24px; }
.tl-item {
  position: relative; padding-bottom: 24px; padding-left: 20px;
  border-left: 2px solid var(--gray-200);
}
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-item--active { border-left-color: var(--accent); }
.tl-dot {
  position: absolute; left: -6px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-300); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--gray-200);
}
.tl-item--active .tl-dot { width: 12px; height: 12px; left: -7px; top: 3px; }
.tl-dot--delivered, .tl-dot--transit, .tl-dot--outdelivery, .tl-dot--pickup {
  background: var(--accent); box-shadow: 0 0 0 2px rgba(5,150,105,0.15);
}
.tl-dot--failure, .tl-dot--exception {
  background: #dc2626; box-shadow: 0 0 0 2px rgba(220,38,38,0.15);
}
.tl-dot--info { background: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.15); }
.tl-content { min-height: 28px; }
.tl-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 3px; }
.tl-time { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.tl-stage {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 2px 8px; border-radius: 999px;
}
.tl-stage--delivered   { background: rgba(5,150,105,0.08); color: var(--accent); }
.tl-stage--transit, .tl-stage--outdelivery { background: #fef3c7; color: #92400e; }
.tl-stage--info        { background: #eff6ff; color: #1d4ed8; }
.tl-stage--failure, .tl-stage--exception   { background: #fef2f2; color: #dc2626; }
.tl-stage--pickup      { background: #f0fdf4; color: #15803d; }
.tl-desc { font-size: 13px; color: var(--gray-700); line-height: 1.5; font-weight: 500; }
.tl-location {
  font-size: 12px; color: var(--gray-400); margin-top: 2px;
  display: flex; align-items: center; gap: 4px;
}
.tl-location svg { flex-shrink: 0; width: 12px; height: 12px; }

/* ── Skeleton ───────────────────────────────────────── */
.tracking-skeleton { display: grid; gap: 12px; padding: 4px 0; }
.skel {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skel-line { height: 14px; }
.skel-w80 { width: 80%; } .skel-w60 { width: 60%; }
.skel-w90 { width: 90%; } .skel-w50 { width: 50%; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Error & empty ──────────────────────────────────── */
.tracking-empty {
  text-align: center; padding: 24px 16px;
  color: var(--gray-400); font-size: 13px;
}
.tracking-error-msg {
  text-align: center; padding: 20px;
  color: #dc2626; font-size: 13px;
  background: #fef2f2; border-radius: var(--radius); border: 1px solid #fecaca;
}

/* ── Info cards ─────────────────────────────────────── */
.track-info {
  padding: 48px 24px;
  max-width: 900px; margin: 0 auto;
}
.track-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .track-info-grid { grid-template-columns: 1fr; gap: 12px; }
}
.track-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--gray-200); background: var(--white);
  transition: border-color 0.15s ease;
}
.track-info-card:hover { border-color: var(--gray-300); }
.track-info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,150,105,0.06); color: var(--accent);
  flex-shrink: 0;
}
.track-info-card h3 {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px; line-height: 1.3;
}
.track-info-card p {
  font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0;
}

/* ── Tracking FAQ ───────────────────────────────────── */
.tracking-faq {
  padding: 48px 24px 56px;
  border-top: 1px solid var(--gray-200);
}
.tracking-faq-title {
  font-size: 20px; font-weight: 800; color: var(--gray-900);
  text-align: center; margin-bottom: 24px; letter-spacing: -0.02em;
}
.tracking-faq .faq-list { max-width: 600px; margin: 0 auto; }
.tracking-faq .faq-item summary {
  display: flex; align-items: center; gap: 10px;
}
.tracking-faq .faq-item summary svg {
  flex-shrink: 0; color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════
   POLICY PAGE
   ═══════════════════════════════════════════════════ */

.policy-content { padding: 56px 16px; }
.policy-layout { display: grid; gap: 48px; }
.policy-nav { display: none; }

.policy-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }

.policy-nav a {
  display: block;
  padding: 8px 12px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--ease);
}

.policy-nav a:hover, .policy-nav a.is-active { color: var(--accent); background: var(--accent-subtle); }

.policy-section { padding-top: 32px; }
.policy-section:first-child { padding-top: 0; }
.policy-section + .policy-section { border-top: 1px solid var(--gray-200); }

.policy-section h2 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.policy-section .faq-list { max-width: none; }

.policy-text { color: var(--gray-500); font-size: 15px; line-height: 1.7; }
.policy-text p + p { margin-top: 16px; }

.policy-contact {
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-top: 32px;
}

.policy-contact h3 { color: var(--gray-900); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.policy-contact p { color: var(--gray-500); font-size: 15px; margin-bottom: 16px; }
.policy-contact-links { display: flex; flex-wrap: wrap; gap: 12px; }

@media (min-width: 640px) { .policy-content { padding: 64px 24px; } }

@media (min-width: 1024px) {
  .policy-content { padding: 72px 40px; }
  .policy-layout { grid-template-columns: 200px 1fr; gap: 48px; max-width: var(--max-w); margin: 0 auto; }
  .policy-nav { display: block; position: sticky; top: 80px; align-self: start; }
  .policy-section h2 { font-size: 28px; }
}

@media (min-width: 1280px) { .policy-content { padding: 80px 48px; } }

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
