/* =========================================================
   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);

  --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;
}
.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);
  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-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-cta { text-align: center; margin-top: 26px; }
@media (max-width: 760px) {
  /* Swipeable big-image carousel on phones */
  .gal-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 2px 2px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gal-grid::-webkit-scrollbar { display: none; }
  .gal-item {
    flex: 0 0 86%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 3;
  }
  .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); }

/* ---------- Impact band ---------- */
.impact {
  background: linear-gradient(120deg, #1a1030, #3a1140 55%, #5a1330);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.impact div strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.impact div span { font-size: 14px; opacity: .82; font-weight: 600; }

/* ---------- 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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: start;
  font-weight: 800;
  font-size: 16px;
}
.faq-q .ic {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,77,61,.1);
  color: var(--coral-dark);
  font-size: 20px;
  transition: transform .25s ease;
}
.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; }

/* ---------- 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; }

/* ---------- 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, .impact { 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, .impact, .footer-grid {
    grid-template-columns: 1fr;
  }
  .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; }
}
