/* =============================================================================
   QUISQUEYA HIVE — Storefront Theme
   YETI section architecture · DeWalt color + typography
   ============================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Core colors */
  --dark:          #111111;
  --darker:        #0A0A0A;
  --dark-card:     #1A1A1A;
  --dark-border:   rgba(255,255,255,0.1);
  --gold:          #F0A500;
  --gold-hover:    #C47F00;
  --gold-light:    rgba(240,165,0,0.1);
  --white:         #FFFFFF;
  --off-white:     #F8F8F6;
  --light:         #F4F4F2;
  --border:        #E8E8E5;
  --text:          #111111;
  --text-mid:      #444444;
  --text-muted:    #888888;

  /* Typography */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  /* Type scale */
  --hero-size:     clamp(56px, 10vw, 108px);
  --h1:            clamp(40px, 6vw, 72px);
  --h2:            clamp(32px, 4vw, 56px);
  --h3:            clamp(22px, 3vw, 36px);
  --body-lg:       18px;
  --body:          16px;
  --small:         14px;
  --label:         12px;

  /* Layout */
  --container:     1280px;
  --pad-x:         24px;
  --section-py:    96px;
  --nav-h:         68px;

  /* Effects */
  --radius:        4px;
  --radius-lg:     8px;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.14);
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.uppercase    { text-transform: uppercase; }
.font-display { font-family: var(--font-display); }

/* ── Reveal animations ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal-group] > *.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-ghost-gold:hover { background: var(--gold-light); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #222; }

.btn-lg { padding: 17px 40px; font-size: 14px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ── Section labels ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── Section headline ─────────────────────────────────────────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
.qh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.qh-nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.qh-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo-hex {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--gold); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active { color: var(--gold); }

/* Cart icon */
.nav-cart {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-cart:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* B2B button */
.nav-b2b {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.nav-b2b:hover { background: var(--gold-hover); color: var(--dark); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}

/* ── Mobile Menu Overlay ──────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu.open {
  opacity: 1;
}
@media (max-width: 1023px) {
  .mobile-menu { display: flex; pointer-events: none; }
  .mobile-menu.open { pointer-events: all; }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-close {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer; padding: 8px;
  border-radius: 4px;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav-links {
  list-style: none;
  flex: 1;
}
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold); }

.mobile-menu-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-lang {
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════════════════ */
.qh-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--darker);

  /* Replace this with background-image when you have the hero photo */
  background-image:
    linear-gradient(135deg, #1C1C1C 0%, #0D0D0D 60%, #1A1209 100%);
}

/* Hero photo overlay — uncomment when you have a real image */
/*
.qh-hero {
  background-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center top;
}
.qh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.2) 100%);
}
*/

/* Hex canvas overlay */
.hero-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Gold accent line (DeWalt inspired) */
.qh-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--hero-size);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.3s;
}
.hero-scroll-indicator svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════════════ */
.qh-trust {
  background: var(--gold);
  padding: 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(0,0,0,0.05); }
.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--dark);
  flex-shrink: 0;
}
.trust-text { flex: 1; min-width: 0; }
.trust-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORIES — Dark cards on white (DeWalt energy)
═══════════════════════════════════════════════════════════════════════════ */
.qh-categories {
  background: var(--white);
  padding: var(--section-py) 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header .section-headline { font-size: var(--h2); color: var(--dark); }
.section-header a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--transition);
}
.section-header a:hover { color: var(--gold-hover); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.category-card {
  background: var(--dark-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background var(--transition);
  min-height: 260px;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.category-card:hover { background: #1E1E1E; }
.category-card:hover::before { transform: scaleX(1); }

/* Big background number (DeWalt style) */
.category-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.category-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.category-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.category-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  flex: 1;
}
.category-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.category-card:hover .category-cta { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════════════════════════════════ */
.qh-featured {
  background: var(--light);
  padding: var(--section-py) 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(240,165,0,0.35);
  transform: translateY(-3px);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A1A, #111111);
  font-size: 48px;
}

/* Featured badge */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-sku {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: monospace;
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.product-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  margin-top: auto;
  padding-top: 12px;
}
.product-card-price-currency {
  font-size: 14px;
  opacity: 0.8;
  margin-right: 2px;
}
.product-card-action {
  margin-top: 14px;
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.product-card-action:hover { background: var(--gold); color: var(--dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   B2B BANNER — YETI-style dark CTA section
═══════════════════════════════════════════════════════════════════════════ */
.qh-b2b {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}

/* Hex decoration */
.b2b-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Gold left accent line */
.qh-b2b::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.b2b-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2b-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.b2b-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--h1);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.93;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.b2b-headline em {
  font-style: normal;
  color: var(--gold);
}
.b2b-desc {
  font-size: var(--body-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.b2b-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2b-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.b2b-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Right side graphic */
.b2b-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.b2b-tiers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 380px;
}
.b2b-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), border-left-color var(--transition);
}
.b2b-tier:hover { background: rgba(255,255,255,0.07); }
.b2b-tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.b2b-tier-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.b2b-tier-badge {
  float: right;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BEGINNERS SECTION
═══════════════════════════════════════════════════════════════════════════ */
.qh-beginners {
  background: var(--white);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.beginners-header {
  text-align: center;
  margin-bottom: 60px;
}
.beginners-header .section-headline { font-size: var(--h2); color: var(--dark); }
.beginners-header p {
  font-size: var(--body-lg);
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 56px;
}
.step-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.step-icon {
  position: absolute;
  top: 36px; right: 32px;
  width: 32px; height: 32px;
  color: var(--gold);
}
.beginners-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════════ */
.qh-testimonials {
  background: var(--light);
  padding: var(--section-py) 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-headline { font-size: var(--h2); color: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.testimonial-flag { font-size: 16px; margin-left: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.qh-footer {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer logo col */
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--gold); color: var(--dark); }

/* Footer nav cols */
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

/* Contact col */
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-langs {
  display: flex;
  gap: 6px;
}
.footer-lang-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 4px 8px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.footer-lang-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.footer-lang-link.active { color: var(--gold); }

/* ── WhatsApp Floating Button ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --pad-x: 40px; }
}
@media (min-width: 1200px) {
  :root { --pad-x: 64px; }
}

/* Tablet: ≤1023px */
@media (max-width: 1023px) {
  :root { --section-py: 72px; }

  .nav-links, .nav-b2b { display: none; }
  .mobile-toggle { display: flex; }

  .b2b-inner { grid-template-columns: 1fr; gap: 48px; }
  .b2b-tiers { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
}

/* Mobile: ≤767px */
@media (max-width: 767px) {
  :root {
    --section-py: 56px;
    --nav-h: 60px;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .categories-grid { grid-template-columns: 1fr; gap: 2px; }
  .category-card { min-height: 200px; padding: 28px 24px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-body { padding: 14px; }
  .product-card-name { font-size: 15px; }

  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trust-inner { grid-template-columns: 1fr 1fr; }

  .lang-switcher { display: none; }
}

/* Very small: ≤480px */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
}
