/* =========================================================
   Red Rabbit Technology — Homepage redesign
   Bright, lively, commercial. Conversion + SEO focused.
   ========================================================= */

:root {
  --ink: #161325;
  --ink-soft: #4a4860;
  --muted: #6f6c84;
  --line: #ece7f4;
  --paper: #ffffff;
  --cream: #fff8f4;

  /* Brand / candy palette */
  --coral: #ff4d3d;
  --coral-dark: #e22414;
  --pink: #ff5fa9;
  --grape: #8b5cf6;
  --mint: #12c2a4;
  --sky: #3aa0ff;
  --gold: #ffb22e;

  --grad-coral: linear-gradient(135deg, #ff7a52, #ff3d63);
  --grad-pink: linear-gradient(135deg, #ff8fc4, #ff4d8d);
  --grape-grad: linear-gradient(135deg, #a78bfa, #7c4ddb);
  --mint-grad: linear-gradient(135deg, #3ee0c0, #0fb39a);
  --gold-grad: linear-gradient(135deg, #ffd25e, #ff9e2c);
  --sky-grad: linear-gradient(135deg, #6cc0ff, #2b86f0);
  --hero-grad: linear-gradient(120deg, #fff3ec 0%, #fdeafd 42%, #e9f6ff 100%);

  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 22px rgba(40, 22, 60, 0.07);
  --shadow: 0 18px 44px rgba(40, 22, 60, 0.12);
  --shadow-lg: 0 34px 80px rgba(40, 22, 60, 0.18);
  --ring: 0 0 0 4px rgba(255, 77, 61, 0.16);
  --glass-bg: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
  --glass-border: rgba(255,255,255,.72);
  --glass-line: rgba(255,255,255,.46);
  --glass-shadow: 0 18px 42px rgba(40,22,60,.16), inset 0 1px 0 rgba(255,255,255,.92), inset 0 -12px 28px rgba(40,22,60,.07);
  --glass-shadow-strong: 0 26px 60px rgba(40,22,60,.22), inset 0 1px 0 rgba(255,255,255,.95), inset 0 -16px 34px rgba(40,22,60,.08);
  --glass-highlight: linear-gradient(120deg, rgba(255,255,255,.72), rgba(255,255,255,0) 34%, rgba(255,255,255,.22) 64%, rgba(255,255,255,0));

  --maxw: 1200px;
  --font: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", "PingFang SC", "Hiragino Sans", "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }

[hidden] { display: none !important; }

/* RTL support (Arabic) */
[dir="rtl"] body { letter-spacing: 0; }
[dir="rtl"] .topbar-inner,
[dir="rtl"] .nav { direction: rtl; }

.wrap { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 77, 61, 0.1);
  color: var(--coral-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
}

.grad-text {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15.5px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--grad-coral);
  box-shadow: 0 14px 30px rgba(255, 61, 99, 0.32);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(255, 61, 99, 0.42); }
.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: rgba(255,77,61,.4); color: var(--coral-dark); }
.btn-light {
  color: var(--coral-dark);
  background: #fff;
  box-shadow: var(--shadow);
}
.btn-lg { min-height: 58px; padding: 16px 32px; font-size: 16.5px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: linear-gradient(90deg, #1b1430, #36143a 60%, #4a1130);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 9px 20px;
  flex-wrap: wrap;
}
.topbar-inner span { display: inline-flex; align-items: center; gap: 7px; opacity: .92; }
.topbar-inner b { color: var(--gold); }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(236, 231, 244, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img {
  width: 44px; height: 44px; border-radius: 12px; object-fit: contain;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.brand-name strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.brand-name small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: rgba(255, 77, 61, 0.08); color: var(--coral-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 6px; }

/* Language switcher */
.lang {
  position: relative;
  z-index: 90;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: border-color .18s ease;
}
.lang-btn:hover { border-color: rgba(255,77,61,.4); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  z-index: 120;
  width: 188px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  cursor: pointer;
}
.lang-menu button:hover { background: rgba(255,77,61,.08); }
.lang-menu button.active { background: rgba(255,77,61,.12); color: var(--coral-dark); font-weight: 800; }
.lang-menu .flag { font-size: 17px; line-height: 1; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--hero-grad);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .5;
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; top: -120px; inset-inline-start: -100px; background: radial-gradient(circle, rgba(255,95,169,.5), transparent 70%); }
.hero::after { width: 480px; height: 480px; bottom: -180px; inset-inline-end: -120px; background: radial-gradient(circle, rgba(58,160,255,.4), transparent 70%); }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 76px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 800;
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 540px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.hero-stats div {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.hero-stats strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-coral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: 12.5px; color: var(--muted); font-weight: 700; }

/* Hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero-blob {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: var(--grad-pink);
  filter: blur(2px);
  opacity: .92;
  animation: morph 9s ease-in-out infinite;
  box-shadow: 0 40px 90px rgba(255, 77, 137, 0.32);
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; transform: rotate(0deg); }
  50% { border-radius: 56% 44% 42% 58% / 44% 56% 44% 56%; transform: rotate(6deg); }
}
.hero-visual img.machine {
  position: relative;
  z-index: 2;
  max-height: 500px;
  max-width: 100%;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(40, 22, 60, 0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
}
.hero-chip i { font-style: normal; font-size: 20px; }
.hero-chip small { display: block; color: var(--muted); font-weight: 600; font-size: 11px; }
.hero-chip.c1 { top: 8%; inset-inline-start: -2%; }
.hero-chip.c2 { bottom: 14%; inset-inline-end: -4%; }
.hero-chip.c3 { bottom: 2%; inset-inline-start: 8%; }

/* ---------- Trust marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 20px 0;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.marquee-label { font-size: 13px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
}
.badge b { color: var(--coral-dark); }

/* ---------- Section scaffolding ---------- */
section { scroll-margin-top: 90px; }
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section.tint { background: var(--cream); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: start; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); }
.section-head p { margin-top: 16px; font-size: 17.5px; color: var(--ink-soft); }

/* ---------- Value props ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-ic {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #fff;
}
.value-ic svg { width: 26px; height: 26px; }
.value-card:nth-child(1) .value-ic { background: var(--grad-coral); }
.value-card:nth-child(2) .value-ic { background: var(--grape-grad); }
.value-card:nth-child(3) .value-ic { background: var(--mint-grad); }
.value-card:nth-child(4) .value-ic { background: var(--gold-grad); }
.value-card h3 { font-size: 19px; margin-bottom: 9px; }
.value-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-media {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}
.product-card:nth-child(1) .product-media { background: linear-gradient(160deg, #fff0f7, #ffe3ef); }
.product-card:nth-child(2) .product-media { background: linear-gradient(160deg, #f1ecff, #e7defc); }
.product-card:nth-child(3) .product-media { background: linear-gradient(160deg, #e7fbf6, #d6f6ec); }
.product-card:nth-child(4) .product-media { background: linear-gradient(160deg, #fff4e0, #ffe9c9); }
.product-card:nth-child(5) .product-media { background: linear-gradient(160deg, #e8f4ff, #d8ecff); }
.product-card:nth-child(6) .product-media { background: linear-gradient(160deg, #fdeef9, #f7e0f3); }
.product-card:nth-child(7) .product-media { background: linear-gradient(160deg, #e2f8fd, #cdeff7); }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 12px 26px rgba(40, 22, 60, 0.14);
  transition: transform .3s ease;
}
.product-card:hover .product-media img { transform: scale(1.05) translateY(-4px); }
.tag {
  position: absolute;
  top: 16px; inset-inline-start: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(4px);
}
.tag.t1 { background: rgba(255,77,137,.92); }
.tag.t2 { background: rgba(124,77,219,.92); }
.tag.t3 { background: rgba(15,179,154,.92); }
.tag.t4 { background: rgba(255,158,44,.95); }
.tag.t5 { background: rgba(43,134,240,.92); }
.tag.t6 { background: rgba(255,77,61,.92); }
.tag.t7 { background: rgba(31,182,214,.95); }
.tag.tr { inset-inline-start: auto; inset-inline-end: 16px; background: rgba(20,16,30,.8); }
.product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 21px; }
.product-body p { margin-top: 8px; font-size: 14px; color: var(--muted); flex: 1; }
.product-body .promo-line {
  flex: 0 0 auto;
  color: var(--coral-dark);
  font-weight: 800;
}
.product-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--coral-dark);
}
.product-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.product-card:hover .product-link svg { transform: translateX(4px); }
[dir="rtl"] .product-card:hover .product-link svg { transform: translateX(-4px); }

/* ---------- Social proof gallery ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.proof-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  box-shadow: var(--shadow-sm);
}
.proof-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.proof-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.proof-item:hover img { transform: scale(1.06); }
.proof-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 30px 20px 16px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(0deg, rgba(20,12,30,.82), transparent);
}
.proof-item figcaption span { display: block; font-weight: 600; font-size: 12.5px; opacity: .85; }

/* ---------- Cases gallery (tabbed) ---------- */
.gal-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.gal-tabs button {
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 800; font-size: 14.5px; color: var(--ink-soft); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.gal-tabs button:hover { transform: translateY(-2px); }
.gal-tabs button.active { color: #fff; background: var(--grad-coral); border-color: transparent; box-shadow: 0 10px 22px rgba(255,61,99,.28); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-grid[hidden] { display: none; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); background: var(--cream);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-controls { display: none; }
.gal-cta { text-align: center; margin-top: 26px; }
@media (max-width: 760px) {
  /* 3D liquid-glass carousel on phones. */
  .gal-grid {
    position: relative;
    display: block;
    grid-template-columns: none;
    width: min(100%, 520px);
    height: clamp(252px, 64vw, 336px);
    margin-inline: auto;
    overflow: visible;
    padding: 0;
    perspective: 1400px;
    transform-style: preserve-3d;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    isolation: isolate;
  }
  .gal-grid::before {
    content: "";
    position: absolute;
    inset: 18px 10px -16px;
    z-index: 0;
    border-radius: 30px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.18)),
      radial-gradient(circle at 28% 18%, rgba(255,255,255,.68), transparent 36%),
      rgba(255, 255, 255, .28);
    border: 1px solid rgba(255,255,255,.62);
    box-shadow:
      0 28px 60px rgba(40, 22, 60, .18),
      inset 0 1px 0 rgba(255,255,255,.84),
      inset 0 -18px 42px rgba(255,77,137,.1);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    backdrop-filter: blur(22px) saturate(1.35);
    transform: translateY(10px) scale(.94);
    pointer-events: none;
  }
  .gal-grid.swiping { cursor: grabbing; }
  .gal-grid::-webkit-scrollbar { display: none; }
  .gal-item {
    position: absolute;
    inset: 0 auto auto 50%;
    z-index: var(--gal-layer, 1);
    width: min(420px, 86vw);
    height: 100%;
    margin: 0;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow:
      0 22px 42px rgba(40, 22, 60, .18),
      inset 0 1px 0 rgba(255,255,255,.84);
    transform:
      translate3d(calc(-50% + var(--gal-x, 0px) + var(--gal-drag, 0px)), var(--gal-y, 0px), var(--gal-z, 0px))
      rotateY(var(--gal-r, 0deg))
      scale(var(--gal-scale, 1));
    transform-origin: center;
    opacity: var(--gal-opacity, 0);
    pointer-events: none;
    filter:
      brightness(var(--gal-brightness, 1))
      saturate(var(--gal-saturation, 1))
      blur(var(--gal-blur, 0px));
    transition:
      transform .62s cubic-bezier(.2, .88, .2, 1),
      opacity .38s ease,
      filter .48s ease,
      box-shadow .48s ease;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
    background: rgba(255,255,255,.38);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);
  }
  .gal-grid.swiping .gal-item {
    transition-duration: .08s;
  }
  .gal-item.is-active {
    pointer-events: auto;
    box-shadow:
      0 28px 58px rgba(40, 22, 60, .24),
      inset 0 1px 0 rgba(255,255,255,.9);
  }
  .gal-item::before,
  .gal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
  }
  .gal-item::before {
    background:
      linear-gradient(120deg, rgba(255,255,255,.42), transparent 32%, rgba(255,255,255,.13) 62%, transparent),
      radial-gradient(circle at 18% 12%, rgba(255,255,255,.52), transparent 24%);
    mix-blend-mode: screen;
  }
  .gal-item::after {
    inset: auto 14px 12px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    opacity: .5;
    filter: blur(10px);
  }
  .gal-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }
  .gal-controls button {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
    color: var(--coral-dark);
    box-shadow:
      0 12px 28px rgba(40,22,60,.12),
      inset 0 1px 0 rgba(255,255,255,.9);
    -webkit-backdrop-filter: blur(16px) saturate(1.25);
    backdrop-filter: blur(16px) saturate(1.25);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .gal-controls button:active { transform: scale(.94); }
  .gal-controls svg { width: 20px; height: 20px; }
  .gal-hint { display: block; }
}
.gal-hint { display: none; text-align: center; margin-top: 12px; font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ---------- Selection guide ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.guide-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,77,61,.3); }
.guide-card .who {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.guide-card:nth-child(1) .who { background: rgba(255,77,137,.12); color: #d81f6f; }
.guide-card:nth-child(2) .who { background: rgba(124,77,219,.12); color: #6b34c9; }
.guide-card:nth-child(3) .who { background: rgba(15,179,154,.14); color: #0a8f7c; }
.guide-card:nth-child(4) .who { background: rgba(255,158,44,.16); color: #cc7a00; }
.guide-card h3 { font-size: 17px; margin-bottom: 12px; }
.guide-card ul { margin: 0; padding: 0; list-style: none; }
.guide-card li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.guide-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step .num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: var(--grad-coral);
  margin-bottom: 16px;
}
.step:nth-child(2) .num { background: var(--grape-grad); }
.step:nth-child(3) .num { background: var(--mint-grad); }
.step:nth-child(4) .num { background: var(--gold-grad); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: start;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.35;
}
.faq-q .ic {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,77,61,.1);
  color: var(--coral-dark);
  font-size: 0;
  transition: transform .25s ease;
}
.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-q .ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- CTA + Lead form ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.cta-copy h2 { font-size: clamp(30px, 4vw, 48px); }
.cta-copy p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }
.cta-points { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.cta-points li { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; }
.cta-points .check {
  flex: none; width: 24px; height: 24px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--mint-grad); color: #fff; font-size: 14px;
}
.cta-contact { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-contact a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-sm);
  font-weight: 800; font-size: 14px;
}
.cta-contact svg { width: 18px; height: 18px; }

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.lead-form h3 { font-size: 22px; margin-bottom: 6px; }
.lead-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 800; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fcfbfe;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: var(--ring);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(15,179,154,.12);
  color: #0a8f7c;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.form-success.show { display: block; }

/* ---------- 3D liquid glass system ---------- */
.btn,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.gal-controls button,
.cta-contact a,
.product-link,
.faq-q .ic,
.app-chips span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.btn::before,
.lang-btn::before,
.menu-toggle::before,
.gal-tabs button::before,
.gal-controls button::before,
.cta-contact a::before,
.product-link::before,
.app-chips span::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.78), transparent 34%),
    var(--glass-highlight);
  opacity: .82;
  pointer-events: none;
}
.btn > *,
.lang-btn > *,
.menu-toggle > *,
.gal-tabs button > *,
.gal-controls button > *,
.cta-contact a > *,
.product-link > *,
.app-chips span > * {
  position: relative;
  z-index: 1;
}
.btn::after,
.lang-btn::after,
.menu-toggle::after,
.gal-tabs button::after,
.gal-controls button::after,
.cta-contact a::after,
.product-link::after,
.app-chips span::after {
  content: "";
  position: absolute;
  inset: auto 16% 8px;
  z-index: 0;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  filter: blur(12px);
  opacity: .62;
  pointer-events: none;
}
.btn:hover,
.lang-btn:hover,
.menu-toggle:hover,
.gal-tabs button:hover,
.gal-controls button:hover,
.cta-contact a:hover,
.product-link:hover {
  transform: translateY(-3px) translateZ(8px);
  box-shadow: var(--glass-shadow-strong);
}
.btn:active,
.lang-btn:active,
.menu-toggle:active,
.gal-tabs button:active,
.gal-controls button:active,
.cta-contact a:active,
.product-link:active {
  transform: translateY(1px) scale(.985);
  box-shadow: 0 8px 20px rgba(40,22,60,.12), inset 0 2px 8px rgba(40,22,60,.1), inset 0 1px 0 rgba(255,255,255,.8);
}
.btn-primary {
  border: 1px solid rgba(255,255,255,.42);
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.04)),
    var(--grad-coral);
  box-shadow: 0 18px 40px rgba(255,61,99,.34), inset 0 1px 0 rgba(255,255,255,.42), inset 0 -14px 26px rgba(157,16,56,.2);
}
.btn-primary:hover { box-shadow: 0 28px 58px rgba(255,61,99,.42), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -14px 28px rgba(157,16,56,.22); }
.btn-ghost,
.btn-light,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.cta-contact a {
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.48)),
    rgba(255,255,255,.58);
  border: 1px solid var(--glass-border);
}
.product-link {
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.42)),
    rgba(255,77,61,.08);
}
.fab {
  border: 1px solid rgba(255,255,255,.38);
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.36), transparent 30%),
    linear-gradient(145deg, rgba(44,230,128,.9), rgba(8,137,72,.92));
  box-shadow: 0 22px 46px rgba(18,140,75,.42), inset 0 1px 0 rgba(255,255,255,.38), inset 0 -14px 24px rgba(0,70,38,.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  backdrop-filter: blur(16px) saturate(1.25);
}

.product-card,
.value-card,
.guide-card,
.step,
.faq-item,
.lead-form {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    rgba(255,255,255,.74);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
}
.product-card,
.value-card,
.guide-card,
.step {
  transform-style: preserve-3d;
}
.product-card::before,
.value-card::before,
.guide-card::before,
.step::before,
.faq-item::before,
.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--glass-highlight);
  opacity: .45;
  pointer-events: none;
}
.product-card > *,
.value-card > *,
.guide-card > *,
.step > *,
.faq-item > *,
.lead-form > * {
  position: relative;
  z-index: 1;
}
.product-card { isolation: isolate; }
.product-card:hover,
.value-card:hover,
.guide-card:hover,
.step:hover {
  transform: translateY(-8px) rotateX(.8deg);
  box-shadow: var(--glass-shadow-strong);
}
.product-media,
.gal-item {
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74), inset 0 -18px 38px rgba(255,255,255,.22);
}
.product-media::before,
.gal-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,.52), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.32), transparent 34%, rgba(255,255,255,.16) 62%, transparent);
  mix-blend-mode: screen;
  opacity: .42;
  pointer-events: none;
}
.product-media img {
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.56)),
    rgba(255,255,255,.7);
  box-shadow: 0 18px 36px rgba(40,22,60,.16), inset 0 1px 0 rgba(255,255,255,.92);
}
.tag {
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: 0 10px 22px rgba(40,22,60,.14), inset 0 1px 0 rgba(255,255,255,.38);
  -webkit-backdrop-filter: blur(14px) saturate(1.28);
  backdrop-filter: blur(14px) saturate(1.28);
}
.faq-q .ic {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.86), transparent 36%),
    rgba(255,77,61,.12);
  box-shadow: 0 8px 18px rgba(255,77,61,.16), inset 0 1px 0 rgba(255,255,255,.9);
}
.faq-q .ic::before,
.faq-q .ic::after {
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: #14101f;
  color: rgba(255,255,255,.72);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}
.footer .brand-name strong { color: #fff; }
.footer p { margin-top: 14px; font-size: 14px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; letter-spacing: .02em; }
.footer a { display: block; margin: 9px 0; font-size: 14px; color: rgba(255,255,255,.7); transition: color .18s; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- Floating contact ---------- */
.fab {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  box-shadow: 0 16px 34px rgba(18, 140, 75, 0.4);
  transition: transform .2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab svg { width: 22px; height: 22px; }

.gal-tabs button.active {
  border: 1px solid rgba(255,255,255,.42);
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,.32), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    var(--grad-coral);
  box-shadow: 0 18px 40px rgba(255,61,99,.32), inset 0 1px 0 rgba(255,255,255,.44), inset 0 -14px 28px rgba(157,16,56,.18);
}
.fab {
  border: 1px solid rgba(255,255,255,.38);
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.36), transparent 30%),
    linear-gradient(145deg, rgba(44,230,128,.9), rgba(8,137,72,.92));
  box-shadow: 0 22px 46px rgba(18,140,75,.42), inset 0 1px 0 rgba(255,255,255,.38), inset 0 -14px 24px rgba(0,70,38,.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  backdrop-filter: blur(16px) saturate(1.25);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { min-height: 380px; order: -1; }
  .values, .guide-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    padding: 14px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .header { position: relative; }
  .menu-toggle { display: block; }
  .brand-name small { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .values, .product-grid, .proof-grid, .guide-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border-radius: 28px;
  }
  .product-media {
    height: clamp(390px, 88vw, 480px);
    padding: 22px 24px 28px;
    align-items: center;
  }
  .product-media img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
  }
  .product-card:hover .product-media img {
    transform: scale(1.015) translateY(-2px);
  }
  .product-body {
    padding: 22px 24px 26px;
  }
  .field-row { grid-template-columns: 1fr; }
  .hero-chip { display: none; }
  .topbar-inner { gap: 12px; font-size: 12px; }
  .header-actions .lang-btn .lang-name { display: none; }
  /* Simpler mobile header: logo + language + menu only */
  .header-inner { gap: 10px; height: 64px; }
  .header-actions { gap: 8px; margin-inline-start: auto; }
  .header-actions .btn-primary { display: none; }
  .brand-name strong { white-space: nowrap; font-size: 15px; }
  .brand img { width: 38px; height: 38px; }
  .lang-btn { padding: 9px 11px; }
  /* Quote CTA lives inside the opened menu instead */
  .nav.open .nav-quote {
    display: block; margin-top: 8px; padding: 13px; text-align: center;
    color: #fff; background: var(--grad-coral); border-radius: 12px;
    font-weight: 800; box-shadow: 0 10px 22px rgba(255,61,99,.28);
  }
  .nav.open .nav-quote:hover { background: var(--grad-coral); color: #fff; }
}
.nav-quote { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Liquid glass v2: clearer Apple-style material ---------- */
.btn,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.gal-controls button,
.cta-contact a,
.product-link,
.app-chips span,
.fab {
  border: 1px solid rgba(255,255,255,.58);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
  backdrop-filter: blur(14px) saturate(1.16);
  box-shadow:
    0 12px 26px rgba(40,22,60,.13),
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -10px 22px rgba(40,22,60,.08);
}
.btn::before,
.lang-btn::before,
.menu-toggle::before,
.gal-tabs button::before,
.gal-controls button::before,
.cta-contact a::before,
.product-link::before,
.app-chips span::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.06) 42%, rgba(255,255,255,0)),
    radial-gradient(circle at 28% 14%, rgba(255,255,255,.55), transparent 34%);
  opacity: .58;
}
.btn::after,
.lang-btn::after,
.menu-toggle::after,
.gal-tabs button::after,
.gal-controls button::after,
.cta-contact a::after,
.product-link::after,
.app-chips span::after {
  opacity: .24;
  height: 12px;
  filter: blur(9px);
}
.btn:hover,
.lang-btn:hover,
.menu-toggle:hover,
.gal-tabs button:hover,
.gal-controls button:hover,
.cta-contact a:hover,
.product-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(40,22,60,.16),
    inset 0 1px 0 rgba(255,255,255,.78),
    inset 0 -10px 22px rgba(40,22,60,.08);
}
.btn-primary,
.gal-tabs button.active {
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0) 46%),
    var(--grad-coral);
  box-shadow:
    0 18px 34px rgba(255,61,99,.28),
    inset 0 1px 0 rgba(255,255,255,.48),
    inset 0 -12px 24px rgba(157,16,56,.18);
}
.btn-ghost,
.btn-light,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.cta-contact a,
.product-link,
.app-chips span {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    rgba(255,255,255,.62);
}
.fab {
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%),
    linear-gradient(145deg, #29d873, #0f9b55);
  box-shadow:
    0 18px 34px rgba(18,140,75,.32),
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -12px 22px rgba(0,70,38,.2);
}

.product-card,
.value-card,
.guide-card,
.step,
.faq-item,
.lead-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
    rgba(255,255,255,.88);
  border: 1px solid rgba(236,231,244,.82);
  box-shadow:
    0 16px 34px rgba(40,22,60,.09),
    inset 0 1px 0 rgba(255,255,255,.86);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.product-card::before,
.value-card::before,
.guide-card::before,
.step::before,
.faq-item::before,
.lead-form::before {
  display: none;
}
.product-card:hover,
.value-card:hover,
.guide-card:hover,
.step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 46px rgba(40,22,60,.13),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.product-media {
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    inset 0 -10px 24px rgba(255,255,255,.16);
}
.product-media::before {
  display: none;
}
.product-media img {
  background: #fff;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 14px 30px rgba(40,22,60,.11),
    inset 0 1px 0 rgba(255,255,255,.92);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.tag {
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  backdrop-filter: blur(10px) saturate(1.15);
  box-shadow:
    0 8px 18px rgba(40,22,60,.12),
    inset 0 1px 0 rgba(255,255,255,.34);
}
.faq-q .ic {
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 6px 14px rgba(255,77,61,.14),
    inset 0 1px 0 rgba(255,255,255,.78);
}

@media (max-width: 760px) {
  .product-card {
    background: rgba(255,255,255,.9);
  }
  .product-media {
    background:
      radial-gradient(circle at 50% 42%, rgba(255,255,255,.72), transparent 45%),
      linear-gradient(160deg, #fff0f7, #ffe7f0);
  }
  .product-media img {
    padding: 10px;
    box-shadow: 0 12px 28px rgba(40,22,60,.12);
  }
}

/* ---------- Liquid glass v3: crisp lens controls + clear product display ---------- */
:root {
  --liquid-edge: rgba(255,255,255,.78);
  --liquid-ring: rgba(255,255,255,.42);
  --liquid-dark: rgba(31,18,52,.14);
  --liquid-glow: 0 18px 38px rgba(31,18,52,.14);
  --liquid-glow-strong: 0 24px 50px rgba(31,18,52,.18);
}

.btn,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.gal-controls button,
.cta-contact a,
.product-link,
.app-chips span,
.fab,
.faq-q .ic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--liquid-edge);
  -webkit-backdrop-filter: blur(18px) saturate(1.45) contrast(1.04);
  backdrop-filter: blur(18px) saturate(1.45) contrast(1.04);
  box-shadow:
    var(--liquid-glow),
    inset 0 1px 1px rgba(255,255,255,.82),
    inset 0 -1px 1px rgba(255,255,255,.32),
    inset 0 -14px 28px rgba(31,18,52,.1);
}

.btn::before,
.lang-btn::before,
.menu-toggle::before,
.gal-tabs button::before,
.gal-controls button::before,
.cta-contact a::before,
.product-link::before,
.app-chips span::before,
.faq-q .ic::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.16) 42%, rgba(255,255,255,0) 62%),
    radial-gradient(circle at 22% 12%, rgba(255,255,255,.9), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 82% 86%, rgba(255,255,255,.26), rgba(255,255,255,0) 35%);
  opacity: .76;
  pointer-events: none;
}

.btn::after,
.lang-btn::after,
.menu-toggle::after,
.gal-tabs button::after,
.gal-controls button::after,
.cta-contact a::after,
.product-link::after,
.app-chips span::after {
  content: "";
  position: absolute;
  inset-inline: 18%;
  bottom: 6px;
  height: 12px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  filter: blur(8px);
  opacity: .34;
  pointer-events: none;
}

.btn:hover,
.lang-btn:hover,
.menu-toggle:hover,
.gal-tabs button:hover,
.gal-controls button:hover,
.cta-contact a:hover,
.product-link:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--liquid-glow-strong),
    inset 0 1px 1px rgba(255,255,255,.88),
    inset 0 -1px 1px rgba(255,255,255,.38),
    inset 0 -16px 30px rgba(31,18,52,.11);
}

.btn:active,
.lang-btn:active,
.menu-toggle:active,
.gal-tabs button:active,
.gal-controls button:active,
.cta-contact a:active,
.product-link:active {
  transform: translateY(1px) scale(.99);
  box-shadow:
    0 8px 18px rgba(31,18,52,.12),
    inset 0 2px 8px rgba(31,18,52,.1),
    inset 0 1px 0 rgba(255,255,255,.76);
}

.btn-primary,
.gal-tabs button.active {
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.06) 38%, rgba(255,255,255,0)),
    radial-gradient(circle at 24% 12%, rgba(255,255,255,.42), rgba(255,255,255,0) 30%),
    var(--grad-coral);
  border-color: rgba(255,255,255,.52);
  box-shadow:
    0 20px 42px rgba(255,61,99,.32),
    inset 0 1px 1px rgba(255,255,255,.58),
    inset 0 -15px 28px rgba(160,20,58,.2);
}

.btn-ghost,
.btn-light,
.lang-btn,
.menu-toggle,
.gal-tabs button,
.cta-contact a,
.product-link,
.app-chips span,
.faq-q .ic {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.5)),
    rgba(255,255,255,.62);
}

.product-link {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
}

.fab {
  background:
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 24% 10%, rgba(255,255,255,.4), rgba(255,255,255,0) 28%),
    linear-gradient(145deg, #26db74, #0a9d52);
  border-color: rgba(255,255,255,.5);
  box-shadow:
    0 22px 44px rgba(13,153,79,.34),
    inset 0 1px 1px rgba(255,255,255,.58),
    inset 0 -15px 26px rgba(0,80,43,.22);
}

.product-card,
.value-card,
.guide-card,
.step,
.faq-item,
.lead-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    rgba(255,255,255,.9);
  border: 1px solid rgba(236,231,244,.86);
  box-shadow:
    0 18px 40px rgba(31,18,52,.09),
    inset 0 1px 0 rgba(255,255,255,.94);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.product-card::before,
.value-card::before,
.guide-card::before,
.step::before,
.faq-item::before,
.lead-form::before {
  display: none;
}

.product-card:hover,
.value-card:hover,
.guide-card:hover,
.step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 56px rgba(31,18,52,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.product-media {
  position: relative;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -18px 34px rgba(255,255,255,.18);
}

.product-media::before {
  display: none;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 12px 14px auto;
  height: 32%;
  z-index: 2;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,0)),
    radial-gradient(circle at 24% 0%, rgba(255,255,255,.42), rgba(255,255,255,0) 42%);
  opacity: .38;
  mix-blend-mode: screen;
  pointer-events: none;
}

.product-media img {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.96);
  box-shadow:
    0 16px 34px rgba(31,18,52,.12),
    inset 0 1px 0 rgba(255,255,255,.96);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.tag {
  border: 1px solid rgba(255,255,255,.32);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  backdrop-filter: blur(14px) saturate(1.35);
  box-shadow:
    0 10px 20px rgba(31,18,52,.16),
    inset 0 1px 0 rgba(255,255,255,.38);
}

@media (max-width: 760px) {
  .product-card {
    background: rgba(255,255,255,.92);
    box-shadow:
      0 18px 40px rgba(31,18,52,.11),
      inset 0 1px 0 rgba(255,255,255,.95);
  }
  .product-media {
    background:
      radial-gradient(circle at 50% 36%, rgba(255,255,255,.82), transparent 46%),
      linear-gradient(160deg, #fff1f7, #ffe8f0);
  }
  .product-media img {
    padding: 10px;
    box-shadow: 0 16px 36px rgba(31,18,52,.13);
  }
}

/* ---------- Unified trust section ---------- */
.trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 240, 247, .8), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(216, 236, 255, .9), transparent 44%),
    linear-gradient(180deg, #fff, #fff8f4 58%, #fff);
}

.trust-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.74);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.56)),
    rgba(255,255,255,.74);
  box-shadow:
    0 28px 68px rgba(31,18,52,.14),
    inset 0 1px 1px rgba(255,255,255,.92),
    inset 0 -20px 42px rgba(31,18,52,.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 0%, rgba(255,255,255,.7), transparent 30%),
    linear-gradient(125deg, rgba(255,255,255,.5), transparent 36%, rgba(255,255,255,.18) 68%, transparent);
  opacity: .7;
  pointer-events: none;
}

.trust-top {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.trust-copy .eyebrow { margin-bottom: 14px; }
.trust-copy h2 {
  max-width: 700px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.05;
}
.trust-copy p {
  max-width: 660px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.8vw, 19px);
}

.trust-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.trust-proof .marquee-label {
  flex: 1 0 100%;
  text-align: end;
}

.trust-proof .badge {
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.5)),
    rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.76);
  box-shadow:
    0 12px 26px rgba(31,18,52,.1),
    inset 0 1px 0 rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(14px) saturate(1.26);
  backdrop-filter: blur(14px) saturate(1.26);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid .value-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 168px;
  padding: 22px;
  border-color: rgba(255,255,255,.7);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56)),
    rgba(255,255,255,.62);
  box-shadow:
    0 16px 34px rgba(31,18,52,.1),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -16px 30px rgba(31,18,52,.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.trust-grid .value-card::before {
  display: block;
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.48), transparent 32%);
  opacity: .55;
}

.trust-grid .value-ic {
  width: 54px;
  height: 54px;
  margin: 0;
  grid-row: 1 / span 2;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow:
    0 10px 22px rgba(31,18,52,.12),
    inset 0 1px 0 rgba(255,255,255,.48);
}

.trust-grid .value-card:nth-child(1) .value-ic { background: var(--grad-coral); }
.trust-grid .value-card:nth-child(2) .value-ic { background: var(--grape-grad); }
.trust-grid .value-card:nth-child(3) .value-ic { background: var(--mint-grad); }
.trust-grid .value-card:nth-child(4) .value-ic { background: var(--gold-grad); }
.trust-grid .value-card:nth-child(5) .value-ic { background: var(--sky-grad); }
.trust-grid .value-card:nth-child(6) .value-ic { background: linear-gradient(135deg, #5fe0f0, #11a8cf); }

.trust-grid .value-card h3 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.18;
}

.trust-grid .value-card p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .trust-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .trust-proof {
    justify-content: flex-start;
  }
  .trust-proof .marquee-label {
    text-align: start;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .trust-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .trust-panel {
    padding: 22px;
    border-radius: 28px;
  }
  .trust-top {
    gap: 20px;
    margin-bottom: 22px;
  }
  .trust-copy h2 {
    font-size: 34px;
  }
  .trust-copy p {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .trust-proof {
    gap: 8px;
  }
  .trust-proof .badge {
    padding: 8px 13px;
    font-size: 12.5px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-grid .value-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
    gap: 13px;
    border-radius: 20px;
  }
  .trust-grid .value-ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .trust-grid .value-ic svg {
    width: 22px;
    height: 22px;
  }
  .trust-grid .value-card h3 {
    font-size: 16.5px;
  }
  .trust-grid .value-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }
}
