/* ── Loot My Print – main.css v1.4 ───────────────────────────────────────── */
:root {
  --navy:      #1B1630;
  --navy-2:    #221b3a;
  --navy-3:    #2b2347;
  --navy-card: #1f1b38;
  --gold:      #F2B72B;
  --gold-soft: #f7cf6b;
  --cream:     #F3EEE4;
  --muted:     rgba(243,238,228,.55);
  --muted-2:   rgba(243,238,228,.35);
  --line:      rgba(243,238,228,.12);
  --serif:     'Cormorant Garamond', serif;
  --sans:      'Jost', sans-serif;
  --script:    'Parisienne', cursive;
  --r-card:    16px;
  --r-btn:     999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }

.wrap    { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section  { padding: 80px 0; }

/* ── Zone WooCommerce ────────────────────────────────────────────────────── */
.wc-main { display: block; width: 100%; min-height: 60vh; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--gold); color: var(--navy);
  text-align: center; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; padding: 9px 16px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 100; transition: .4s; border-bottom: 1px solid transparent; }
header.scrolled { background: rgba(27,22,48,.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: var(--script); font-size: 34px; line-height: 1; white-space: nowrap; }
.logo .gold { color: var(--gold); }
.menu { display: flex; gap: 34px; list-style: none; }
.menu a {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 4px 0; transition: color .3s;
}
.menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width .35s; }
.menu a:hover { color: var(--cream); }
.menu a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn { background: none; border: none; color: var(--cream); cursor: pointer; display: flex; transition: color .3s; }
.icon-btn:hover { color: var(--gold); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; font-family: var(--sans);
  transform: scale(0); transition: transform .3s cubic-bezier(.3,1.6,.5,1);
}
.cart-count.show { transform: scale(1); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--sans); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  padding: 15px 30px; border: none; cursor: pointer;
  transition: .35s; border-radius: var(--r-btn); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover  { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(242,183,43,.5); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(243,238,228,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Kicker / section labels ─────────────────────────────────────────────── */
.kicker { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ── Hero – Film slideshow ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh; overflow: hidden;
}

/* Backgrounds */
.hf-bgs { position: absolute; inset: 0; z-index: 0; }
.hf-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s cubic-bezier(.4,0,.2,1);
}
.hf-bg.active { opacity: 1; }

/* Vignette */
.hf-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(13,11,24,.96) 0%,
    rgba(13,11,24,.88) 28%,
    rgba(13,11,24,.50) 50%,
    rgba(13,11,24,.18) 68%,
    rgba(13,11,24,.05) 100%
  );
}

/* Glows */
.hero-bg { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-bg .glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.glow.g1 { width: 480px; height: 480px; background: radial-gradient(circle,rgba(242,183,43,.2),transparent 70%); top: -80px; left: -60px; opacity: .5; }
.glow.g2 { display: none; }

/* Left content */
.hf-wrap {
  position: relative; z-index: 3;
  min-height: 100dvh; display: flex; align-items: center;
  padding-top: 76px; padding-bottom: 100px;
}
.hf-left { max-width: 440px; display: flex; flex-direction: column; }

/* Per-slide texts */
.hf-text { display: none; flex-direction: column; }
.hf-text.active { display: flex; }
.hf-eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; font-weight: 500;
  animation: fadeUp .65s cubic-bezier(.2,.7,.2,1) both;
}
.hf-eyebrow .rule { height: 1px; width: 48px; background: var(--gold); opacity: .6; flex-shrink: 0; }
.hf-title {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(44px,5.5vw,76px); line-height: 1.08; color: #fff;
  margin-bottom: 18px;
  animation: fadeUp .65s .1s cubic-bezier(.2,.7,.2,1) both;
}
.hf-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 40ch; margin-bottom: 34px;
  animation: fadeUp .65s .2s cubic-bezier(.2,.7,.2,1) both;
}
.hf-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }

/* Hero text utilities (shared) */
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; font-weight: 500;
}
.eyebrow .rule { height: 1px; width: 48px; background: var(--gold); opacity: .6; }
.hero h1 { font-family: var(--script); font-weight: 400; font-size: clamp(46px,6vw,82px); line-height: 1.08; letter-spacing: 0; }
.hero h1 .gold { color: var(--gold); }
.rot { display: inline-block; color: var(--gold); font-family: var(--script); font-weight: 400; transition: opacity .4s, transform .4s; }
.rot.out { opacity: 0; transform: translateY(12px); }
.hero p.lead { font-size: 17px; color: var(--muted); max-width: 46ch; margin: 26px 0 36px; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.micro { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.micro div { font-size: 12px; letter-spacing: .06em; color: var(--muted); display: flex; align-items: center; gap: 7px; text-transform: uppercase; }

/* Sparkles */
.sparkle { position: absolute; z-index: 5; color: var(--gold); animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{opacity:.25;transform:scale(.8)} 50%{opacity:1;transform:scale(1.1)} }
.sp1 { top: 18%; right: 7%; width: 34px; }
.sp2 { top: 65%; right: 16%; width: 18px; animation-delay: 1.1s; }
.sp3 { top: 38%; left: 4%; width: 24px; animation-delay: 2s; }
.fade { opacity: 0; transform: translateY(22px); animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.d1{animation-delay:.1s} .d2{animation-delay:.25s} .d3{animation-delay:.4s} .d4{animation-delay:.55s} .d5{animation-delay:.7s} .d6{animation-delay:.9s}

/* ── Product image (right, sharp) ────────────────────────────────────────── */
.hf-product {
  display: none;
}
.hf-product-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
}
.hf-product-img:first-child { position: relative; visibility: hidden; }
.hf-product-img.active { opacity: 1; }

/* ── Thumbnail strip ──────────────────────────────────────────────────────── */
.hf-strip {
  position: absolute; z-index: 4;
  top: 50%; transform: translateY(-52%);
  left: 53%; right: 0;
  overflow: hidden;
  display: flex; gap: 14px;
}
.hf-card {
  flex: 0 0 190px; aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  border-radius: 16px; display: block;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.65);
  transition: opacity .5s ease;
}
.hf-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.hf-card:hover img { transform: scale(1.05); }
.hf-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,24,.92) 0%, rgba(13,11,24,0) 55%);
}
.hf-card-info {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 3px; pointer-events: none;
}
.hf-card-tag {
  font-size: 9px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.hf-card-name {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.hf-hidden { display: none !important; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.hf-nav {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
}
.hf-nav-btns { display: flex; gap: 8px; }
.hf-btn {
  width: 42px; height: 42px; border-radius: 50%; padding: 0;
  border: 1px solid rgba(243,238,228,.22);
  background: rgba(13,11,24,.45); backdrop-filter: blur(10px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
}
.hf-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hf-counter {
  font-family: var(--ui); font-size: 52px; font-weight: 800;
  color: rgba(243,238,228,.18); letter-spacing: -.03em; line-height: 1;
}

/* Progress bar */
.hf-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  height: 2px; background: rgba(243,238,228,.1);
}
.hf-fill {
  height: 100%; background: var(--gold);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* ── Trust logos bar ─────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.trust-bar .lbl { text-align: center; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 28px; font-weight: 500; }
.logo-circles { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 40px; }
.logo-circle { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.logo-circle-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-3); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .05em;
  font-family: var(--sans);
}
.logo-circle span { font-size: 12px; color: var(--muted-2); letter-spacing: .04em; text-align: center; max-width: 90px; line-height: 1.3; }

/* ── Procédés ────────────────────────────────────────────────────────────── */
.proc { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 60px 0; }
.proc-head { text-align: center; margin-bottom: 44px; }
.proc-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.proc-item { width: 120px; text-align: center; cursor: pointer; transition: transform .35s; }
.proc-item:hover { transform: translateY(-5px); }
.proc-ic { width: 84px; height: 84px; margin: 0 auto 14px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--navy); transition: .35s; }
.proc-item:hover .proc-ic { border-color: var(--gold); background: rgba(242,183,43,.08); }
.proc-ic svg { width: 38px; height: 38px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.proc-item span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats { text-align: center; }
.stats .kicker { margin-bottom: 16px; }
.stats h2 { font-family: var(--script); font-size: clamp(36px,4.4vw,54px); font-weight: 400; margin-bottom: 56px; }
.stats h2 em, .sec-head h2 em, .explain h2 em, .news h2 em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.05em; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat .n { font-family: var(--script); font-size: clamp(50px,6vw,74px); color: var(--gold); line-height: 1; }
.stat .l { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ── Segments ────────────────────────────────────────────────────────────── */
.segs { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.seg {
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 26px;
  background: var(--navy-card); transition: transform .4s, border-color .4s; cursor: pointer;
}
.seg:hover { transform: translateY(-6px); border-color: rgba(242,183,43,.4); }
.seg .seg-ic { width: 44px; height: 44px; margin-bottom: 18px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.seg h3 { font-family: var(--script); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.seg p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Section headings ────────────────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 58px; }
.sec-head .kicker { margin-bottom: 16px; }
.sec-head h2 { font-family: var(--script); font-weight: 400; font-size: clamp(38px,5vw,60px); line-height: 1.1; }
.sec-head p  { color: var(--muted); margin-top: 14px; max-width: 52ch; margin-inline: auto; font-size: 16px; line-height: 1.65; }

/* ── Best-sellers grid ───────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card {
  background: var(--navy-card); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .4s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(242,183,43,.4); }
.card .thumb {
  aspect-ratio: 1/1; position: relative; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 35%,var(--navy-3),var(--navy-2)); overflow: hidden;
}
.card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.card:hover .thumb img { transform: scale(1.05); }
.card .thumb svg { width: 56%; }
.card .thumb a { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 4px 10px; border-radius: var(--r-btn);
}
.card .info { padding: 18px 18px 20px; }
.card .info h3 { font-family: var(--script); font-size: 24px; font-weight: 400; margin-bottom: 3px; }
.card .info h3 a { color: var(--cream); }
.card .info .type { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.price { font-family: var(--sans); font-size: 19px; font-weight: 700; color: var(--gold); }
.add {
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  background: transparent; border: 1px solid rgba(243,238,228,.2); color: var(--cream);
  padding: 8px 16px; border-radius: var(--r-btn); cursor: pointer; transition: .3s; display: inline-block;
}
.add:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.center { text-align: center; margin-top: 50px; }

/* ── Bento grid – Collections ────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 16px; }
.bento-cell {
  position: relative; border-radius: var(--r-card); overflow: hidden; cursor: pointer;
}
.bento-cell.wide { grid-column: span 2; aspect-ratio: 16/9; }
.bento-cell.tall { aspect-ratio: 4/5; }
.bento-cell.sq   { aspect-ratio: 1/1; }
.bento-cell img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.bento-cell:hover img { transform: scale(1.05); }
.bento-cell .bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,22,48,.82) 0%, rgba(27,22,48,.1) 55%, transparent 100%);
}
.bento-cell .bento-label {
  position: absolute; bottom: 20px; left: 20px;
}
.bento-cell .bento-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.bento-cell .bento-name {
  font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.01em;
  font-family: var(--sans);
}
.bento-cell.wide .bento-name { font-size: 22px; }
.bento-cell.sq .bento-label { bottom: 14px; left: 14px; }
.bento-cell.sq .bento-tag { font-size: 9px; }
.bento-cell.sq .bento-name { font-size: 14px; }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step-lead h2 { font-family: var(--script); font-size: clamp(34px,4.2vw,52px); font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.step-lead h2 em { font-style: normal; color: var(--gold); }
.step-lead p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.step-list { display: flex; flex-direction: column; gap: 22px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
}
.step-item:nth-child(3) .step-num,
.step-item:nth-child(4) .step-num {
  background: var(--navy-3); color: var(--muted); border: 1px solid var(--line);
}
.step-item h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.step-item p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Explain (print-on-demand) ───────────────────────────────────────────── */
.explain { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.explain .visual {
  aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--r-card);
  background: radial-gradient(circle at 50% 40%,var(--navy-3),var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.explain .visual svg.big { width: 46%; }
.explain .visual .glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle,rgba(242,183,43,.25),transparent 70%); filter: blur(30px); }
.explain h2 { font-family: var(--script); font-size: clamp(36px,4.6vw,54px); font-weight: 400; line-height: 1.12; margin-bottom: 22px; }
.explain p   { color: var(--muted); line-height: 1.8; font-size: 16px; margin-bottom: 18px; max-width: 480px; }

/* ── B2B section ─────────────────────────────────────────────────────────── */
.b2b { background: var(--navy-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.b2b-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.b2b-text h2 { font-family: var(--script); font-size: clamp(32px,4vw,52px); font-weight: 400; margin-bottom: 16px; line-height: 1.1; }
.b2b-text h2 em { font-style: normal; color: var(--gold); }
.b2b-text p  { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 46ch; }
.b2b-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.b2b-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.b2b-list li svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.b2b-img { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4/3; }
.b2b-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Galerie masonry ─────────────────────────────────────────────────────── */
.gallery { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery h2 { font-family: var(--script); font-size: clamp(32px,4vw,48px); font-weight: 400; margin-bottom: 10px; }
.gallery .sub { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.gallery-cols { columns: 3; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }

/* ── Techniques ──────────────────────────────────────────────────────────── */
.tech { }
.tech .sec-head { text-align: left; margin-bottom: 44px; }
.tech-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.tech-card {
  border-radius: var(--r-card); padding: 32px 30px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.tc-dtf { background: rgba(242,183,43,.07); border: 1px solid rgba(242,183,43,.15); }
.tc-flo { background: rgba(91,155,255,.07); border: 1px solid rgba(91,155,255,.12); }
.tc-sub { background: rgba(167,139,250,.07); border: 1px solid rgba(167,139,250,.12); }
.tc-las { background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.12); }
.tech-card:hover { transform: translateY(-5px); }
.tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.tc-emoji { font-size: 28px; line-height: 1; }
.tc-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-btn); background: rgba(243,238,228,.08); color: var(--muted);
}
.tech-card h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.tech-card .tc-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-weight: 400; }
.tech-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 44px; max-width: 740px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--cream);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pricing-lead h2 { font-family: var(--script); font-size: clamp(32px,4vw,52px); font-weight: 400; margin-bottom: 14px; line-height: 1.1; }
.pricing-lead h2 em { font-style: normal; color: var(--gold); }
.pricing-lead p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 42ch; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-card {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 20px; transition: border-color .3s;
}
.price-card:hover { border-color: rgba(242,183,43,.4); }
.price-card .pc-label { font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 400; }
.price-card .pc-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price-card .pc-num { font-family: var(--sans); font-size: 26px; font-weight: 700; color: var(--cream); }
.price-card .pc-unit { font-size: 12px; color: var(--muted); }
.price-card .pc-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-btn);
  background: rgba(242,183,43,.12); color: var(--gold);
  display: inline-block;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rev { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: var(--navy-card); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; }
.rev p  { font-family: var(--script); font-size: 22px; font-style: normal; line-height: 1.5; margin-bottom: 18px; }
.rev .who { font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.rev .who b { color: var(--cream); font-weight: 500; font-style: normal; }

/* ── Trust marquee ───────────────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-2); overflow: hidden; }
.trust .lbl { text-align: center; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); padding: 36px 0 22px; font-weight: 500; }
.logo-track { display: flex; gap: 64px; align-items: center; white-space: nowrap; animation: scroll 26s linear infinite; padding: 0 32px 40px; }
.logo-track span { font-family: var(--script); font-size: 28px; color: var(--muted); opacity: .6; font-weight: 400; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.news { text-align: center; }
.news-card {
  max-width: 620px; margin: 0 auto;
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 54px 46px; position: relative; overflow: hidden;
}
.news-card .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(242,183,43,.22),transparent 70%); top: -120px; left: 50%; transform: translateX(-50%); filter: blur(40px); }
.news h2 { font-family: var(--script); font-size: 44px; font-weight: 400; margin-bottom: 12px; position: relative; }
.news p  { color: var(--muted); margin-bottom: 28px; position: relative; }
.news-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; position: relative; }
.news-form input { flex: 1; background: var(--navy); border: 1px solid var(--line); color: var(--cream); padding: 15px 18px; border-radius: var(--r-btn); font-family: var(--sans); font-size: 14px; }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form input::placeholder { color: var(--muted); }

/* ── CTA Final ───────────────────────────────────────────────────────────── */
.final-cta { }
.fc-inner {
  position: relative; overflow: hidden;
  background: var(--navy-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 72px 64px; text-align: center;
}
.fc-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(242,183,43,.14) 0%, transparent 70%); pointer-events: none; }
.fc-inner h2 { font-family: var(--script); font-size: clamp(36px,4.5vw,58px); font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.fc-inner p  { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 52ch; margin: 0 auto 36px; }
.fc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.fc-contact { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.fc-contact a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; letter-spacing: .06em; color: var(--muted); transition: color .2s; }
.fc-contact a:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 68px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand .logo { margin-bottom: 16px; }
.foot-brand p  { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 300px; }
.foot-col h5   { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.foot-col a    { display: block; color: var(--muted); font-size: 14px; margin-bottom: 11px; transition: color .3s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom   { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 26px; flex-wrap: wrap; gap: 16px; }
.foot-bottom p { font-size: 12px; color: var(--muted); }
.pay           { display: flex; gap: 8px; }
.pay span      { font-size: 10px; letter-spacing: .08em; border: 1px solid var(--line); padding: 6px 10px; border-radius: 3px; color: var(--muted); }

/* ── Cart drawer ─────────────────────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; background: rgba(10,7,20,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .4s; z-index: 200; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: var(--navy-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1); z-index: 201; display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--script); font-size: 30px; font-weight: 400; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 28px; }
.drawer-foot { padding: 22px 28px; border-top: 1px solid var(--line); }
.totrow { display: flex; justify-content: space-between; margin-bottom: 16px; }
.totrow .t-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.totrow .t-val   { font-family: var(--sans); font-size: 24px; font-weight: 700; color: var(--gold); }
.woocommerce-mini-cart__empty-message { color: var(--muted); text-align: center; margin-top: 60px; font-size: 15px; }
.woocommerce-mini-cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.woocommerce-mini-cart-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.woocommerce-mini-cart-item .mini_cart_item a { font-family: var(--script); font-size: 18px; font-weight: 400; color: var(--cream); }
.woocommerce-mini-cart-item .quantity { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Zoom Modal ──────────────────────────────────────────────────────────── */
.img-zoom-modal { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: .3s; }
.img-zoom-modal.active { opacity: 1; visibility: visible; }
.img-zoom-modal .img-zoom-bg { position: absolute; inset: 0; background: rgba(10,7,20,.95); backdrop-filter: blur(4px); }
.img-zoom-modal img { max-width: 90vw; max-height: 90vh; object-fit: contain; z-index: 1; animation: zoomIn .3s cubic-bezier(.2,.7,.2,1); }
.img-zoom-modal button { position: absolute; top: 20px; right: 20px; z-index: 2; background: rgba(255,255,255,.1); border: 1px solid rgba(243,238,228,.3); color: var(--cream); font-size: 32px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; }
.img-zoom-modal button:hover { background: rgba(242,183,43,.2); border-color: var(--gold); color: var(--gold); }
@keyframes zoomIn { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Menu Burger ─────────────────────────────────────────────────────────── */
.menu-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { width: 24px; height: 2px; background: var(--cream); border-radius: 1px; transition: .3s; }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .tech-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
}
@media (max-width: 640px) {
  section { padding: 48px 0; }
}
@media (max-width: 1080px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-cell.wide { grid-column: span 2; }
  .pricing-wrap { grid-template-columns: 1fr; gap: 36px; }
  .b2b-inner { grid-template-columns: 1fr; gap: 40px; }
  .b2b-img { max-height: 340px; aspect-ratio: 16/9; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hf-strip { left: 0; top: auto; bottom: 140px; transform: none; height: 170px; }
  .hf-card { flex: 0 0 120px; }
  .hf-wrap { min-height: auto; padding-top: 100px; padding-bottom: 220px; }
  .hf-left { max-width: 100%; }
  .hf-title { font-size: clamp(36px,8vw,54px); }
  .hf-counter { font-size: 36px; }
  .step-layout { grid-template-columns: 1fr; gap: 36px; }
  .explain { grid-template-columns: 1fr; gap: 40px; }
  .menu-btn { display: flex; }
  .menu { position: fixed; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--navy-2); border-bottom: 1px solid var(--line); max-height: calc(100vh - 76px); overflow-y: auto; transform: translateY(-100%); opacity: 0; pointer-events: none; transition: .3s; z-index: 99; }
  .menu.open { transform: none; opacity: 1; pointer-events: all; }
  .menu li { border-bottom: 1px solid var(--line); }
  .menu a { display: block; padding: 16px 24px; font-size: 14px; }
  .segs { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cols { columns: 2; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 76px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell.wide { grid-column: span 1; aspect-ratio: 16/9; }
  .segs { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-card { padding: 36px 24px; }
  .fc-inner { padding: 40px 24px; }
  .fc-btns { flex-direction: column; align-items: center; }
  .logo-circles { gap: 20px 24px; }
  .gallery-cols { columns: 2; }
}
