/* ═══════════════════════════════════════════
   TAMIMA — CSS
═══════════════════════════════════════════ */

:root {
  --bg:     #100700;
  --amber:  #C47A10;
  --gold:   #E8A33F;
  --cream:  #FFF4E0;
  --light:  #FFFAF5;
  --muted:  rgba(255, 240, 200, 0.50);
  --bord:   rgba(196, 122, 16, 0.22);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: #1A0E06;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F5EDE4; }
::-webkit-scrollbar-thumb { background: rgba(196,122,16,.45); border-radius: 2px; }
::selection { background: rgba(232,163,63,.30); color: #1A0700; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

/* ── BEE CANVAS ── */
#bee-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 50;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 52px;
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .35s, box-shadow .35s, border-color .35s, backdrop-filter .35s;
  opacity: 0;
}
#hdr.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
  border-color: rgba(196,122,16,.14);
}
#hdr.scrolled nav a { color: rgba(30,10,0,.75); }
#hdr.scrolled nav a:hover { color: #1A0700; }
#hdr.scrolled nav a.active { color: #1A0700; }
#hdr.scrolled nav a.active::after { background: var(--amber); }
#hdr.scrolled .btn-wa { border-color: rgba(196,122,16,.30); color: #1A0700; }
#hdr.scrolled .btn-wa:hover { background: rgba(196,122,16,.08); border-color: rgba(196,122,16,.50); }
#hdr.scrolled .hamburger span { background: #1A0E06; }

/* Logo */
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  height: 40px; width: auto; display: block; object-fit: contain;
  transition: filter .35s;
}
#hdr.scrolled .logo-img {
  filter: brightness(0) saturate(100%);
}

/* Nav — white on amber */
nav { display: flex; align-items: center; gap: 0; margin: 0 auto; }
nav a {
  padding: 8px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); text-decoration: none;
  transition: color .25s;
  position: relative;
}
nav a:hover { color: #fff; }
nav a.active { color: #fff; }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.hdr-right { display: flex; align-items: center; gap: 10px; }
.hdr-right .btn-wa {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.40);
  color: #fff;
  box-shadow: none;
  transition: background .25s, border-color .25s, color .25s;
}
.hdr-right .btn-wa:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px) scale(1.03); }
.btn:active { transform: scale(0.97); }

.btn-wa {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 20px rgba(196,122,16,.42);
}
.btn-wa:hover { box-shadow: 0 8px 32px rgba(196,122,16,.62); filter: brightness(1.08); }

.btn-amber {
  background: #3D1500; color: #FFF4E0;
  box-shadow: 0 6px 28px rgba(61,21,0,.35);
}
.btn-amber:hover {
  background: #521D00;
  box-shadow: 0 10px 40px rgba(61,21,0,.45);
}

/* Ghost button — white on amber */
.btn-ghost {
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.40);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.65); }

.btn-lg { padding: 16px 42px; font-size: 13px; }
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-white { background: #fff; color: var(--amber); box-shadow: 0 6px 26px rgba(0,0,0,.2); }
.btn-white:hover { box-shadow: 0 10px 38px rgba(0,0,0,.32); }

/* ══════════════════════════════════════════
   HERO — golden honey, two-column
══════════════════════════════════════════ */
#hero {
  position: relative;
  background: #E8A33F;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Honeycomb texture — white strokes on amber, fades at bottom */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='100'%3E%3Cpolygon points='29,2 55,16.5 55,45.5 29,60 3,45.5 3,16.5' fill='none' stroke='%23ffffff' stroke-width='.7' opacity='.08'/%3E%3Cpolygon points='29,62 55,76.5 55,100 3,100 3,76.5' fill='none' stroke='%23ffffff' stroke-width='.7' opacity='.08'/%3E%3C/svg%3E");
  background-size: 58px 100px;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Hero → section transition gradient */
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,248,242,.6) 50%, #FFF8F2 100%);
  z-index: 1; pointer-events: none;
}

/* Floating hex particles */
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hp {
  position: absolute;
  opacity: 0;
  animation: hpFloat linear infinite;
}
@keyframes hpFloat {
  0%   { transform: translateY(0) rotate(0deg);     opacity: 0; }
  10%  { opacity: 0.20; }
  90%  { opacity: 0.20; }
  100% { transform: translateY(-90vh) rotate(180deg); opacity: 0; }
}

/* Honeycomb cell glow — applied per-cell with staggered delays in JS */
@keyframes honeyPulse {
  0%, 100% { fill: rgba(255,255,255,0.04); }
  50%       { fill: rgba(255,255,255,0.28); }
}

.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  max-width: 1360px; margin: 0 auto; width: 100%;
  padding: 130px 52px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.hero-content {
  display: flex; flex-direction: column; gap: 28px;
}

.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.70);
  text-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.tag-dot { opacity: .40; }

.hero-title {
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.025em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.12);
  /* GSAP clip-path reveal starts here */
  clip-path: inset(0 100% 0 0);
}
.hero-title-accent { color: rgba(255,255,255,.80); }

.hero-sub {
  font-size: 15px; font-weight: 600; line-height: 1.75;
  color: rgba(255,255,255,.75); max-width: 420px;
}

.hero-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

/* ── Trust badges ── */
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 4px;
}
.hero-trust-label {
  font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,.10);
}
.hero-badges-row {
  display: flex; align-items: flex-start; gap: 10px;
}
.hbadge-lg {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: default;
}
.hbadge-icon {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.20), 0 1px 6px rgba(0,0,0,.10);
  transition: transform .22s, box-shadow .22s;
}
.hbadge-lg:hover .hbadge-icon { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.hbadge-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hbadge-icon svg { display: block; }
.hbadge-label {
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-align: center; max-width: 72px;
}

/* ── Right column: video on honeycomb ── */
.hero-video-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  min-height: 400px;
}

.hvc-honeycomb {
  position: absolute; inset: -40px;
  z-index: 0; pointer-events: none;
  opacity: 0.50;
  overflow: hidden;
}
.hvc-honeycomb svg { width: 100%; height: 100%; }

.hvc-frame {
  position: relative; z-index: 1;
  width: clamp(200px, 26vw, 300px);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.50);
  box-shadow:
    0 0 0 7px rgba(255,255,255,.12),
    0 0 0 14px rgba(255,255,255,.06),
    0 28px 80px rgba(0,0,0,.40),
    0 8px 28px rgba(0,0,0,.20);
  animation: videoFloat 6s ease-in-out infinite;
}

@keyframes videoFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%       { transform: rotate(1.2deg) translateY(-14px); }
}

.hvc-iframe {
  /* YouTube is 16:9; frame is 9:16.
     To fill the height: iframe_width = frame_height × (16/9) = frame_width × (16/9)² ≈ 316% */
  position: absolute;
  top: 50%; left: 50%;
  width: 316%;
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  display: block;
}

.hvc-glow {
  position: absolute; inset: 0; border-radius: 26px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.12) 0%, transparent 60%);
}

.hvc-hex {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexFloat 5s ease-in-out infinite;
}
.hvc-hex-1 { width: 46px; height: 52px; top: 8%;  right: -6%;  animation-delay: 0s; }
.hvc-hex-2 { width: 30px; height: 34px; bottom: 16%; left: -8%;  animation-delay: -2.1s; }
.hvc-hex-3 { width: 20px; height: 23px; top: 52%;  right: -12%; animation-delay: -3.7s; }
@keyframes hexFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(18deg); }
}

/* ══════════════════════════════════════════
   HAMBURGER + MOBILE MENU
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4.5px; width: 38px; height: 38px;
  border: none; background: transparent;
  cursor: pointer; padding: 0; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .24s ease, background .35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 198;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mob-overlay.open { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed; top: 0; right: 0;
  width: min(300px, 85vw); height: 100vh;
  background: rgba(8,3,0,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  display: flex; flex-direction: column;
  padding: 78px 28px 40px; gap: 4px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--bord);
}
.mob-menu.open { transform: translateX(0); }

.mob-link {
  display: block; padding: 15px 10px;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid var(--bord);
  transition: color .2s, padding-left .2s;
}
.mob-link:hover { color: var(--gold); padding-left: 16px; }
.mob-wa { margin-top: 24px; width: 100%; justify-content: center; background: var(--amber); color: #fff; box-shadow: 0 4px 20px rgba(196,122,16,.42); }


/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 52px; }
.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.s-label::before { content: ''; width: 20px; height: 1.5px; background: var(--amber); }
.s-title {
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -.02em; text-transform: uppercase;
  color: #1A0E06; margin-bottom: 14px;
}
.s-sub {
  font-size: 15px; font-weight: 500;
  color: #6B4B35; line-height: 1.7;
  max-width: 500px; margin-bottom: 52px;
}
.drip {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(196,122,16,.18) 30%, rgba(196,122,16,.30) 50%, rgba(196,122,16,.18) 70%, transparent);
}

/* ══ Why section ══ */
#why {
  background: #FFF8F2;
}

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.wc {
  padding: 34px 28px;
  border: 1px solid rgba(196,122,16,.14); border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
}
.wc:hover { border-color: rgba(196,122,16,.30); background: #FFF8F0; transform: translateY(-7px); box-shadow: 0 8px 32px rgba(196,122,16,.12); }
.wc-n { font-size: 50px; font-weight: 900; line-height: 1; margin-bottom: 16px; color: rgba(196,122,16,.18); }
.wc h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; color: #1A0E06; }
.wc p { font-size: 13.5px; color: #6B4B35; line-height: 1.72; }
.wc-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #FFF2E6, #FFE0C4);
}
.wc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Catalog */
#catalog {
  background: #fff;
  overflow-x: hidden;
}

.cat-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.cat-hdr-actions { display: flex; gap: 10px; align-items: center; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(196,122,16,.35);
  background: transparent; color: var(--amber);
  cursor: pointer; transition: all .22s; white-space: nowrap;
}
.btn-ghost-dark:hover { background: rgba(196,122,16,.08); border-color: var(--amber); transform: translateY(-1px); }

.cat-filter-wrap {
  position: relative; margin-bottom: 32px;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-radius: 16px;
  z-index: 100;
}
.cat-filter-wrap.stuck {
  position: sticky; top: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(196,122,16,.10);
  padding: 12px 16px;
  margin-left: -16px; margin-right: -16px;
  border-radius: 16px;
}
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-btn svg { flex-shrink: 0; opacity: .75; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid rgba(196,122,16,.30);
  background: transparent; color: rgba(30,10,0,.70);
  cursor: pointer; transition: all .22s;
}
.cat-btn .cat-cnt { font-size: 10px; background: rgba(196,122,16,.12); color: var(--amber); padding: 2px 6px; border-radius: 20px; }
.cat-btn:hover { border-color: rgba(196,122,16,.55); color: #1A0700; background: rgba(196,122,16,.06); }
.cat-btn.active { background: var(--amber); color: #fff; border-color: var(--amber); }
.cat-btn.active .cat-cnt { background: rgba(255,255,255,.25); color: #fff; }

.cat-more-wrap { display: flex; justify-content: center; margin-top: 44px; }
.cat-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 40px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid rgba(196,122,16,.30);
  background: transparent; color: var(--amber);
  cursor: pointer; transition: all .22s;
}
.cat-more:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.cat-more svg { transition: transform .22s; }
.cat-more:hover svg { transform: translateY(2px); }

/* ── Regular product card grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pc {
  background: #FAFAFA;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196,122,16,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  cursor: pointer;
  position: relative;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, border-color .28s;
}
.pc:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 44px rgba(196,122,16,.16);
  border-color: rgba(196,122,16,.28);
}
/* "Подробнее →" hint on hover */
.pc::after {
  content: 'Подробнее →';
  position: absolute;
  bottom: 16px; left: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .22s, transform .22s;
  pointer-events: none;
}
.pc:hover::after { opacity: 1; transform: translateY(0); }

.pc-img {
  width: 100%; aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF2E6, #FFE4C0);
  display: flex; align-items: center; justify-content: center;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.pc:hover .pc-img img { transform: scale(1.06); }
/* Placeholder for products without a photo */
.pc-placeholder {
  width: 60px; height: 60px; opacity: 0.35;
}
.pc-body { padding: 16px 18px 36px; }
.pc-name {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: #1A0E06; margin-bottom: 7px;
  line-height: 1.28;
}
.pc-desc { font-size: 13px; color: #7A5A40; line-height: 1.55; }

/* ── Product Modal ── */
.prod-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,4,0,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.prod-modal-overlay.open { opacity: 1; pointer-events: auto; }

.prod-modal-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.44);
}
.prod-modal-card.no-img { grid-template-columns: 1fr; }

.prod-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1A0E06; transition: background .2s;
}
.prod-modal-close:hover { background: rgba(0,0,0,.16); }

.prod-modal-img-wrap {
  background: linear-gradient(135deg, #FFF2E6, #FFE0C0);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 300px;
}
.prod-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.prod-modal-body {
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.prod-modal-cat {
  font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber);
}
.prod-modal-name {
  font-size: 22px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.01em; color: #1A0E06; line-height: 1.15;
}
.prod-modal-short {
  font-size: 13px; font-weight: 600; color: var(--amber); margin: 0;
}
.prod-modal-full {
  font-size: 13.5px; color: #5A3A22; line-height: 1.76; margin: 0; flex: 1;
}
.prod-modal-cta { margin-top: 8px; align-self: flex-start; }

/* Footer — styles at end of file */

/* ══════════════════════════════════════════
   CUSTOMER REVIEWS CAROUSEL
══════════════════════════════════════════ */
.review-pair {
  display: flex; gap: 24px;
  justify-content: center;
  padding: 10px 0;
}
.review-card {
  flex: 0 1 300px;
  border-radius: 18px; overflow: hidden;
  background: #fff; border: 1px solid rgba(196,122,16,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(196,122,16,.12); }
.review-video {
  aspect-ratio: 9/16;
  background: #111;
  position: relative; overflow: hidden;
}
.review-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.review-name { padding: 14px 16px; font-size: 13px; font-weight: 700; color: #1A0E06; text-align: center; }

.carousel-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 24px; }
.carousel-prev, .carousel-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(196,122,16,.25); background: #fff;
  cursor: pointer; font-size: 16px; color: #1A0E06;
  display: flex; align-items: center; justify-content: center;
  transition: all .22s;
}
.carousel-prev:hover, .carousel-next:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(196,122,16,.20); transition: all .3s;
}
.carousel-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════
   PRODUCTION VIDEOS
══════════════════════════════════════════ */
.prod-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prod-video-card {
  border-radius: 20px; overflow: hidden;
  background: #fff; border: 1px solid rgba(196,122,16,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.prod-video-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(196,122,16,.12); }
.prod-video-frame {
  aspect-ratio: 16/10;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-video-card h3 { padding: 20px 22px 6px; font-size: 15px; font-weight: 800; color: #1A0E06; text-transform: uppercase; letter-spacing: .04em; }
.prod-video-card p { padding: 0 22px 22px; font-size: 13px; color: #6B4B35; line-height: 1.6; }

/* Video cover overlay */
.prod-native-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod-cover {
  position: absolute; inset: 0; z-index: 2; cursor: pointer;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.22) 55%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .3s;
}
.prod-cover.hidden { opacity: 0; pointer-events: none; }
.prod-cover-play {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(196,122,16,.55);
  transition: transform .2s, box-shadow .2s;
}
.prod-cover:hover .prod-cover-play {
  transform: scale(1.10); box-shadow: 0 10px 36px rgba(196,122,16,.70);
}
.prod-cover-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.80);
}

/* ══════════════════════════════════════════
   CERTIFICATES
══════════════════════════════════════════ */

/* Certificate photo layout */
.cert-layout { display: flex; flex-direction: column; gap: 24px; }
.cert-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cert-photo-card {
  background: #fff; border: 1px solid rgba(196,122,16,.16);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.cert-photo-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(196,122,16,.14); }
.cert-photo-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden; background: #f9f5f0;
}
.cert-photo-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 12px;
}
.cert-photo-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid rgba(196,122,16,.10);
  background: #FFFAF5;
}
.cert-photo-tag {
  display: block; font-size: 9px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(196,122,16,.60); margin-bottom: 3px;
}
.cert-photo-name {
  display: block; font-size: 16px; font-weight: 900; color: #1A0E06;
}
.cert-photo-link {
  font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: .05em; white-space: nowrap;
}
/* Trust badges row */
.cert-trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cert-trust-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px; border-radius: 16px;
  background: #FFFAF5; border: 1px solid rgba(196,122,16,.12);
  color: var(--amber);
}
.cert-trust-item svg { flex-shrink: 0; margin-top: 2px; }
.cert-trust-name {
  display: block; font-size: 15px; font-weight: 800; color: #1A0E06; margin-bottom: 4px;
}
.cert-trust-item p { font-size: 12px; color: #6B4B35; line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════
   MARKETING SUPPORT
══════════════════════════════════════════ */
.mkt-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,240,220,.10);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, border-color .3s, background .3s;
}
.mkt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,200,120,.28);
  background: rgba(255,255,255,.07);
}
.mkt-num {
  position: absolute;
  top: 14px; left: 18px;
  font-size: 10px; font-weight: 900;
  letter-spacing: .18em;
  color: rgba(232,163,63,.55);
  z-index: 2;
  line-height: 1;
}
.mkt-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.mkt-body h3 {
  font-size: 16px; font-weight: 800;
  color: #fff; margin: 0; line-height: 1.25;
}
.mkt-body p {
  font-size: 13px;
  color: rgba(255,240,220,.55);
  line-height: 1.6; margin: 0;
}

/* New mkt-layout */
.mkt-layout { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.mkt-images-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mkt-card-shorts { overflow: hidden; }
.mkt-body-top { padding: 22px 24px 16px; }

/* 16:10 image wrap for store/banner cards */
.mkt-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.mkt-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Content card (03) — video + text side by side */
.mkt-card-content { overflow: hidden; }
.mkt-content-row {
  display: flex; gap: 24px; padding: 20px;
  align-items: center;
}
.mkt-short-single {
  flex: 0 0 220px;
  aspect-ratio: 9/16;
  border-radius: 14px; overflow: hidden;
  background: #111; position: relative;
}
.mkt-short-single iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.mkt-content-row .mkt-body { flex: 1; }

/* 4× 9:16 Shorts grid */
.mkt-shorts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 0 20px 20px;
}
.mkt-short-item {
  position: relative; aspect-ratio: 9/16;
  border-radius: 14px; overflow: hidden;
  background: #111;
}
.mkt-short-item iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* Product modal — effects & composition */
.pm-effects {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  margin: 4px 0 0 0; padding: 0;
}
.pm-effects li {
  font-size: 12.5px; color: #5A3A22; padding-left: 16px;
  position: relative; line-height: 1.5;
}
.pm-effects li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--amber); font-weight: 700; font-size: 11px;
}
.pm-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber);
  margin-top: 10px; display: block;
}
.pm-comp {
  font-size: 12px; color: #8A6A50; line-height: 1.65;
  margin: 0; font-style: italic;
}

/* ══════════════════════════════════════════
   SUPPORT SECTION
══════════════════════════════════════════ */
.support-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.support-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.support-list li {
  padding-left: 28px; position: relative;
  font-size: 14px; font-weight: 600; color: #1A0E06; line-height: 1.55;
}
.support-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--amber); font-weight: 900; }
.support-chat-mockup {
  background: #fff; border-radius: 22px; padding: 28px;
  border: 1px solid rgba(196,122,16,.12);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 10px;
}
.chat-bubble {
  padding: 12px 18px; border-radius: 16px;
  font-size: 13px; line-height: 1.55;
  max-width: 85%;
}
.chat-them { background: #F2F0ED; color: #1A0E06; border-bottom-left-radius: 4px; }
.chat-us { background: var(--amber); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }

/* ══════════════════════════════════════════
   PARTNER REVIEWS
══════════════════════════════════════════ */
.partner-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 10px 0;
}
.partner-track::-webkit-scrollbar { display: none; }
.partner-card {
  flex: 0 0 calc(33.33% - 16px); scroll-snap-align: start;
  background: #FFFAF5; border: 1px solid rgba(196,122,16,.12);
  border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(196,122,16,.10); }
.partner-quote { font-size: 14.5px; font-weight: 500; color: #1A0E06; line-height: 1.65; font-style: italic; flex: 1; }
.partner-info { display: flex; align-items: center; gap: 12px; }
.partner-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.partner-name { font-size: 13px; font-weight: 800; color: #1A0E06; }
.partner-role { font-size: 11.5px; color: #7A5A40; }

/* ══════════════════════════════════════════
   MOBILE
══════════════════════════════════════════ */
@media (max-width: 800px) {

  #hdr { padding: 0 18px; height: 60px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hdr-right { margin-left: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 20px 36px;
    gap: 24px;
  }
  .hero-video-wrap { order: -1; min-height: 0; }
  .hvc-frame { width: 54vw; max-width: 220px; border-radius: 22px; }
  .hero-title { font-size: clamp(32px, 9.5vw, 52px); }
  .hero-sub { font-size: 13.5px; }
  .btn-lg { padding: 13px 28px; font-size: 12px; }

  .logo-img { height: 32px; }

  .hero-trust { gap: 10px; }
  .hbadge-icon { width: 56px; height: 56px; border-radius: 11px; }
  .hbadge-label { font-size: 8px; max-width: 56px; }

  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .s-title { font-size: clamp(32px, 8vw, 48px); }

  /* Mobile why-grid — sticky card stacking */
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 16px;
  }
  .wc {
    position: sticky;
    margin-bottom: 14px;
    border-radius: 18px;
  }
  .wc:nth-child(1) { top: 68px; z-index: 1; }
  .wc:nth-child(2) { top: 76px; z-index: 2; }
  .wc:nth-child(3) { top: 84px; z-index: 3; }

  /* Mobile catalog — 2 columns */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-img { aspect-ratio: 3 / 4; }
  .pc-name { font-size: 12px; }
  .pc-body { padding: 12px 14px 32px; }
  .pc::after { font-size: 9.5px; bottom: 12px; left: 14px; }
  .cat-hdr { flex-direction: column; gap: 14px; align-items: flex-start; }
  /* Modal single column on mobile */
  .prod-modal-card { grid-template-columns: 1fr; max-height: 85vh; }
  .prod-modal-img-wrap { min-height: 200px; aspect-ratio: 4/3; }
  .prod-modal-body { padding: 28px 24px; }
  .prod-modal-name { font-size: 18px; }
  .cat-hdr-actions { flex-direction: column; gap: 8px; width: 100%; }
  .cat-hdr-actions .btn,
  .cat-hdr-actions .btn-ghost-dark { width: 100%; justify-content: center; }

  /* New sections mobile */
  .review-pair { flex-direction: column; align-items: center; gap: 16px; }
  .review-card { flex: none; width: 100%; max-width: 300px; }
  .prod-videos { grid-template-columns: 1fr; }
  .support-layout { grid-template-columns: 1fr; gap: 32px; }
  .partner-card { flex: 0 0 85vw; }
  .mkt-images-row { grid-template-columns: 1fr; }
  .cert-photos { grid-template-columns: 1fr; }
  .cert-trust-row { grid-template-columns: 1fr; }
  .mkt-shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 14px 16px; }
  .mkt-content-row { flex-direction: column; gap: 16px; }
  .mkt-short-single { flex: none; width: 100%; max-width: 280px; margin: 0 auto; }
  .cat-filter-wrap.stuck { top: 60px; padding: 10px 12px; margin-left: -18px; margin-right: -18px; border-radius: 0 0 14px 14px; }
  .cat-filter-wrap::before,
  .cat-filter-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 28px;
    z-index: 2; pointer-events: none; opacity: 0; transition: opacity .25s;
  }
  .cat-filter-wrap::before { left: 0; background: linear-gradient(to right, rgba(255,255,255,.92) 30%, transparent); }
  .cat-filter-wrap::after  { right: 0; background: linear-gradient(to left, rgba(255,255,255,.92) 30%, transparent); }
  .cat-filter-wrap.fade-left::before  { opacity: 1; }
  .cat-filter-wrap.fade-right::after  { opacity: 1; }
  .cat-filter { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: none; }
  .cat-filter::-webkit-scrollbar { display: none; }

  /* Mobile touch feedback */
  .pc:active { transform: scale(0.98); }
  .cat-btn:active { transform: scale(0.96); }
  .wc:active { transform: scale(0.98); }
  .cert-photo-card:active { transform: scale(0.98); }
  .partner-card:active { transform: scale(0.98); }
  .pc::after { opacity: .6; transform: translateY(0); }
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-float-label { display: none; }

}

/* Fade-in animation targets */
.fi  { opacity: 0; transform: translateY(30px); will-change: opacity, transform; }
.fir { opacity: 0; transform: translateX(28px); will-change: opacity, transform; }

/* Carousel disabled state */
.carousel-prev:disabled, .carousel-next:disabled {
  opacity: .3; cursor: default; pointer-events: none;
}

/* Focus-visible states for keyboard accessibility */
.cat-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.pc:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; transform: translateY(-7px); box-shadow: 0 14px 44px rgba(196,122,16,.16); }
.carousel-prev:focus-visible, .carousel-next:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.cert-photo-card:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.mkt-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* CTA honeycomb texture + WA pulse */
#cta-s {
  position: relative;
  background: var(--amber); padding: 110px 0; text-align: center;
}
#cta-s .s-label { color: rgba(255,255,255,.45); }
#cta-s .s-title { color: #fff; }
#cta-s .s-sub   { color: rgba(255,255,255,.72); margin: 0 auto 36px; }
#cta-s::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='100'%3E%3Cpolygon points='29,2 55,16.5 55,45.5 29,60 3,45.5 3,16.5' fill='none' stroke='%23ffffff' stroke-width='.7' opacity='.08'/%3E%3Cpolygon points='29,62 55,76.5 55,100 3,100 3,76.5' fill='none' stroke='%23ffffff' stroke-width='.7' opacity='.08'/%3E%3C/svg%3E");
  background-size: 58px 100px;
}
#cta-s .container { position: relative; z-index: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 26px rgba(0,0,0,.2); }
  50% { box-shadow: 0 6px 26px rgba(0,0,0,.2), 0 0 0 8px rgba(255,255,255,.10); }
}
#cta-s .btn-white { animation: waPulse 3s ease-in-out infinite; }

/* ── Floating WhatsApp ── */
@keyframes waFloatPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.38); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,.38), 0 0 0 12px rgba(37,211,102,.10); }
}
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 20px 14px 18px; border-radius: 100px;
  box-shadow: 0 6px 28px rgba(37,211,102,.38);
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  transition: transform .22s, box-shadow .22s, padding .22s;
  overflow: hidden; max-width: 200px;
  animation: waFloatPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 38px rgba(37,211,102,.52); animation: none; }
.wa-float-label { white-space: nowrap; }

/* ── Footer redesign ── */
footer {
  background: #080300;
  padding: 64px 0 36px;
  border-top: 3px solid var(--amber);
  position: relative; overflow: hidden;
}
.ft {
  max-width: 1360px; margin: 0 auto; padding: 0 52px;
  position: relative; z-index: 1;
}
.ft-watermark {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,240,200,.03);
  white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
  line-height: 1;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,240,200,.08);
  margin-bottom: 28px;
}
.ft-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ft-logo-img { height: 44px; width: auto; display: block; object-fit: contain; }
.ft-tagline {
  font-size: 13.5px; color: rgba(255,240,200,.45); line-height: 1.6;
  max-width: 280px;
}
.ft-social-links { display: flex; gap: 10px; margin-top: 4px; }
.ft-social-links a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,240,200,.06); border: 1px solid rgba(255,240,200,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,240,200,.50); transition: all .25s; text-decoration: none;
}
.ft-social-links a:hover { background: var(--amber); color: #fff; border-color: var(--amber); transform: translateY(-2px); }
.ft-social-links svg { display: block; }
.ft-nav, .ft-contact, .ft-cta { display: flex; flex-direction: column; gap: 12px; }
.ft-nav h4, .ft-contact h4, .ft-cta h4 {
  font-size: 10px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,240,200,.30); margin-bottom: 4px;
}
.ft-nav a, .ft-contact a, .ft-contact span {
  font-size: 13.5px; font-weight: 500; color: rgba(255,240,200,.50);
  text-decoration: none; transition: color .2s;
}
.ft-nav a:hover, .ft-contact a:hover { color: var(--gold); }
.ft-cta .btn-wa {
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(196,122,16,.35);
}
.ft-bottom { text-align: center; }
.ft-copy { font-size: 11.5px; color: rgba(255,238,200,.20); letter-spacing: .04em; }

/* ── Footer tablet/mobile ── */
@media (max-width: 1024px) {
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  footer { padding: 40px 0 24px; }
  .ft { padding: 0 20px; }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 0; padding-bottom: 24px; margin-bottom: 16px;
  }
  .ft-brand {
    text-align: center; align-items: center;
    padding-bottom: 24px; margin-bottom: 0;
    border-bottom: 1px solid rgba(255,240,200,.08);
  }
  .ft-logo-img { height: 36px; }
  .ft-tagline { max-width: 240px; text-align: center; font-size: 12.5px; margin: 0 auto; }
  .ft-social-links { justify-content: center; }
  .ft-nav, .ft-contact, .ft-cta {
    padding: 18px 0; gap: 10px;
    border-bottom: 1px solid rgba(255,240,200,.06);
  }
  .ft-nav h4, .ft-contact h4, .ft-cta h4 { margin-bottom: 2px; }
  .ft-cta {
    border-bottom: none; padding-bottom: 0;
    align-items: center; text-align: center;
  }
  .ft-cta h4 { text-align: center; }
  .ft-cta .btn-wa { width: 100%; justify-content: center; max-width: 320px; }
  .ft-watermark { font-size: 56px; bottom: -4px; }
  .ft-bottom { margin-top: 8px; }
  .ft-copy { font-size: 10.5px; }
}

/* Print */
@media print {
  #bee-canvas, .hero-particles, .hvc-honeycomb, .hvc-hex,
  .hvc-glow, #hero::before, #hero::after { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .fi, .fir { opacity: 1 !important; transform: none !important; }
  .hero-title { clip-path: none !important; }
  .hp, .hvc-frame, .hvc-hex, .wa-float, #cta-s .btn-white { animation: none !important; }
}
