/* =========================================================
   Móveis Inteligentes — Landing
   Design system: madeira + oficina + direct response premium
   ========================================================= */

:root {
  --bg: #faf8f3;
  --bg-alt: #f0e9dc;
  --bg-cream: #f7f1e4;
  --bg-dark: #2a2018;
  --bg-green: #2e4034;
  --bg-green-dark: #24322a;

  --wood: #8b5a2b;
  --wood-dark: #5c3b1e;
  --wood-light: #c69a6a;

  --accent: #c97b2a;
  --accent-dark: #a35f18;

  --cta: #3f7a45;
  --cta-hover: #35683a;
  --cta-glow: rgba(63, 122, 69, 0.35);

  --text: #2a2320;
  --text-muted: #6b5e52;
  --text-invert: #f5efe1;
  --text-invert-muted: #c9bfae;

  --border: #e5dcc9;
  --border-strong: #d1c3a4;
  --border-dark: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 1px 2px rgba(60, 40, 20, 0.06);
  --shadow: 0 6px 20px rgba(60, 40, 20, 0.08);
  --shadow-lg: 0 20px 50px rgba(60, 40, 20, 0.14);
  --shadow-cta: 0 12px 28px var(--cta-glow);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --container: 1200px;
  --container-narrow: 880px;

  --font-head: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 72px 0;
}

@media (min-width: 900px) {
  section { padding: 100px 0; }
}

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow--invert { color: var(--wood-light); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.06rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(201, 123, 42, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(201, 123, 42, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wood-light);
  border-color: rgba(255, 255, 255, 0.14);
}
.badge--premium {
  background: linear-gradient(135deg, #c97b2a, #8b5a2b);
  color: #fff;
  border-color: transparent;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #e0a52e;
  font-size: 1rem;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  will-change: transform;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px var(--cta-glow);
}
.btn--lg {
  padding: 20px 34px;
  font-size: 1.12rem;
  border-radius: 14px;
}
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn-icon { width: 20px; height: 20px; }

.cta-microcopy {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
}
.cta-microcopy span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--bg-dark);
  color: var(--text-invert);
  font-size: 0.85rem;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar strong { color: var(--wood-light); }
.topbar .fire { animation: pulse 2.4s ease-in-out infinite; display: inline-block; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(201, 123, 42, 0.08), transparent 60%),
    radial-gradient(700px 400px at 90% 90%, rgba(46, 64, 52, 0.08), transparent 60%),
    var(--bg);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='%23c4b393' stroke-width='0.3' opacity='0.15'/></svg>");
  pointer-events: none;
  opacity: 0.5;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1.35fr; gap: 60px; align-items: center; }
}

.hero__badge {
  margin-bottom: 20px;
  display: inline-block;
  max-width: 100%;
  padding: 8px 16px;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
}
.hero__title {
  font-size: clamp(2.05rem, 4.6vw, 3.5rem);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--wood-dark);
  background: linear-gradient(180deg, transparent 62%, rgba(201, 123, 42, 0.25) 62%);
  padding: 0 4px;
}
.hero__sub {
  font-size: 1.14rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.hero__cta .btn { width: 100%; max-width: 420px; }

.hero__social {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.avatars {
  display: inline-flex;
}
.avatars > img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
  display: inline-block;
  background: var(--wood-light);
}
.avatars > img:first-child { margin-left: 0; }
.hero__social-text { font-size: 0.92rem; color: var(--text-muted); }
.hero__social-text strong { color: var(--text); }

/* Hero mockup */
.hero-mockup {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #f2e7d0, #e5cfa8);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero-mockup { margin-top: 40px; }
}
.hero-mockup__inner {
  height: 100%;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
}
.hero-mockup__inner--photo { padding: 0; overflow: hidden; }
.hero-mockup__inner--photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 14px;
}
.hero-mockup__row { display: flex; align-items: center; gap: 10px; }
.hero-mockup__pill {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--wood-light), var(--wood));
  flex: 1;
}
.hero-mockup__pill--sm { max-width: 40%; opacity: 0.5; }
.hero-mockup__preview {
  flex: 1;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #3b2a1a, #5c3b1e 60%, #8b5a2b);
  position: relative;
  overflow: hidden;
}
.hero-mockup__preview::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.15), transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 6px, transparent 6px 12px);
}
.hero-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-mockup__thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0e0c2, #c69a6a);
}
.hero-mockup__thumb:nth-child(2) { background: linear-gradient(135deg, #3f5e3f, #2e4034); }
.hero-mockup__thumb:nth-child(3) { background: linear-gradient(135deg, #d4a373, #8b5a2b); }
.hero-mockup__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-mockup__float--tl { top: 12px; left: 12px; color: var(--cta); }
.hero-mockup__float--br { bottom: 12px; right: 12px; color: var(--accent-dark); }
.hero-mockup__float .dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.problem-card__icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201, 123, 42, 0.12);
  color: var(--accent-dark);
  display: grid; place-items: center;
}
.problem-card p { margin: 0; color: var(--text-muted); font-size: 0.98rem; }
.problem-card strong { color: var(--text); display: block; margin-bottom: 4px; }

/* =========================================================
   MECHANISM / BENEFITS
   ========================================================= */
.benefits-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 32px auto 0;
}
@media (min-width: 720px) { .benefits-list { grid-template-columns: repeat(2, 1fr); } }
.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.benefit__check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.9rem;
}
.benefit strong { display: block; margin-bottom: 2px; }
.benefit span { color: var(--text-muted); font-size: 0.94rem; }

/* Impact phrase */
.impact {
  background: var(--bg-green);
  color: var(--text-invert);
  text-align: center;
  padding: 72px 0;
}
.impact h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.impact h2 em {
  font-style: normal;
  color: var(--wood-light);
}

/* =========================================================
   GALLERY (Móveis em ação)
   ========================================================= */
.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-card__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.gallery-card__img--1 { background-image: url("../assets/projects/01-cama-plataforma.png"); }
.gallery-card__img--2 { background-image: url("../assets/projects/02-mesa-dobravel.png"); }
.gallery-card__img--3 { background-image: url("../assets/hero/oficina-bancada.png"); }
.gallery-card__img--4 { background-image: url("../assets/projects/04-armario-cozinha.png"); }
.gallery-card__img--5 { background-image: url("../assets/projects/03-home-office.png"); }
.gallery-card__img--6 { background-image: url("../assets/projects/05-floreira-vertical.png"); }
.gallery-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
}
.gallery-card__label {
  position: absolute; left: 16px; bottom: 14px;
  color: #fff; z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--wood-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1;
  letter-spacing: 0.04em;
}

/* CTA intermediate */
.cta-strip {
  text-align: center;
  padding: 48px 0;
}
.cta-strip .btn { min-width: 300px; }

/* =========================================================
   DIFFERENTIALS
   ========================================================= */
.diff-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 720px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.diff-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(63, 122, 69, 0.12);
  color: var(--cta);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.diff-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.diff-card p { margin: 0; color: var(--text-muted); font-size: 0.96rem; }

/* =========================================================
   PROJECT PREVIEW (demonstração)
   ========================================================= */
.preview {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.preview-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .preview-grid { grid-template-columns: 1.1fr 1fr; }
}
.preview-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.preview-mockup__head {
  padding: 14px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex; justify-content: space-between; align-items: center;
}
.preview-mockup__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.preview-mockup__visual {
  aspect-ratio: 1;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #f2e7d0, #d4b183);
  position: relative;
  overflow: hidden;
}
.preview-mockup__visual svg {
  position: absolute; inset: 10%;
  width: 80%; height: 80%;
}
.preview-mockup__visual--photo { background: #0f1a13; }
.preview-mockup__visual--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.preview-mockup__specs { font-size: 0.94rem; }
.preview-mockup__specs h4 {
  font-size: 0.98rem;
  margin: 0 0 8px;
  color: var(--wood-dark);
}
.preview-mockup__specs ul {
  list-style: none; padding: 0; margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.preview-mockup__specs ul li {
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  display: flex; justify-content: space-between;
}
.preview-mockup__specs ul li:last-child { border-bottom: 0; }
.preview-mockup__specs strong { color: var(--text); }

.preview-copy ul.check-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
}
.preview-copy ul.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1rem;
}
.preview-copy ul.check-list li::before {
  content: "✓";
  color: var(--cta);
  font-weight: 700;
  flex: 0 0 auto;
}

/* =========================================================
   RESULTS (grid responsivo de projetos)
   ========================================================= */
.results { background: var(--bg-cream); }
.results-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}
.result-tile {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.result-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(60, 40, 20, 0.14);
}
.result-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.result-tile figcaption {
  padding: 14px 18px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* =========================================================
   CATEGORIES (grid desktop / accordion mobile)
   ========================================================= */
.cats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 720px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cats-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--wood-light), var(--wood-dark));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.cat-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.06rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.cat-card__toggle {
  align-self: flex-start;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0;
  display: inline-flex; align-items: center; gap: 4px;
}
.cat-card__toggle::after {
  content: "▾";
  transition: transform 0.2s ease;
}
.cat-card.is-open .cat-card__toggle::after { transform: rotate(180deg); }
.cat-card__list {
  list-style: none; padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin: 0;
}
.cat-card.is-open .cat-card__list {
  max-height: 500px;
  margin-top: 10px;
}
.cat-card__list li {
  font-size: 0.9rem;
  padding: 5px 0;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}
.cat-card__list li:last-child { border-bottom: 0; }

/* =========================================================
   PROJECT FEATURES (cada projeto inclui)
   ========================================================= */
.features-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 720px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.feat-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201, 123, 42, 0.12);
  color: var(--accent-dark);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.feat-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feat-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* =========================================================
   BONUSES (fundo escuro)
   ========================================================= */
.bonuses {
  background: var(--bg-green-dark);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.bonuses::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.06'/></svg>");
  pointer-events: none;
}
.bonuses .container { position: relative; }
.bonuses h2 { color: #fff; }
.bonuses .section-head p { color: var(--text-invert-muted); }

.bonus-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

.bonus-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.bonus-card--featured {
  background: linear-gradient(135deg, rgba(201,123,42,0.14), rgba(255,255,255,0.02));
  border-color: rgba(201,123,42,0.35);
}
.bonus-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem; color: var(--text-invert-muted);
}
.bonus-card__meta strong { color: var(--wood-light); }
.bonus-card__price s { color: var(--text-invert-muted); margin-right: 8px; }
.bonus-card__price em {
  font-style: normal; font-weight: 800;
  color: #79c07d; letter-spacing: 0.08em;
}
.bonus-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.bonus-card p { color: var(--text-invert-muted); font-size: 0.96rem; }
.bonus-card__visual {
  margin-top: 18px;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--border-dark);
  padding: 14px;
  min-height: 140px;
}
.bonus-card__visual--photo { padding: 0; overflow: hidden; background: #0f1a13; }
.bonus-card__visual--photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}
/* chat mockup */
.chat-mock { font-family: var(--font-body); }
.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  margin-bottom: 8px;
  max-width: 88%;
}
.chat-msg--user {
  background: rgba(201,123,42,0.24);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.chat-msg--bot {
  background: rgba(255,255,255,0.08);
  color: var(--text-invert);
  border-bottom-left-radius: 4px;
}
.chat-input {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--text-invert-muted);
  font-size: 0.82rem;
}
/* calc mockup */
.calc-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.calc-mock__cell {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.82rem;
}
.calc-mock__cell strong {
  display: block;
  font-size: 1.1rem;
  color: var(--wood-light);
  font-family: var(--font-head);
}
.calc-mock__total {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(63,122,69,0.5), rgba(63,122,69,0.15));
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
}

/* =========================================================
   FAST ACTION BONUSES
   ========================================================= */
.fast-bonuses .section-head h2 span {
  color: var(--accent-dark);
}
.fast-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 10px;
}
@media (min-width: 720px) { .fast-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fast-grid { grid-template-columns: repeat(3, 1fr); } }
.fast-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.fast-card__num {
  position: absolute;
  top: -14px; left: 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.fast-card h3 { font-size: 1.1rem; margin: 8px 0 6px; }
.fast-card p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--bg-cream); }
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 10px;
}
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.testi-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wood-light);
  flex-shrink: 0;
  background: var(--bg-cream);
}
.testi-card__stars { color: #e0a52e; letter-spacing: 2px; }
.testi-card__text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  quotes: "“" "”";
}
.testi-card__text::before { content: open-quote; }
.testi-card__text::after { content: close-quote; }
.testi-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.testi-card__meta { color: var(--text-muted); font-size: 0.8rem; }

/* =========================================================
   OFFER STACK
   ========================================================= */
.offer {
  background:
    linear-gradient(180deg, var(--bg-dark), #1a130d);
  color: var(--text-invert);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 80% 20%, rgba(201,123,42,0.16), transparent 60%);
  pointer-events: none;
}
.offer .container { position: relative; }
.offer h2 { color: #fff; }

.offer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .offer-grid { grid-template-columns: 1fr 1.05fr; }
}
.offer-mockup {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c69a6a, #8b5a2b);
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.offer-mockup--photo {
  aspect-ratio: auto;
  padding: 0;
  overflow: hidden;
  background: #1a1410;
  display: flex;
  flex-direction: column;
}
.offer-mockup--photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.offer-mockup__caption {
  padding: 20px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, #2a1e14, #1a1410);
}
.offer-mockup__caption strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--cta);
  line-height: 1;
}
.offer-mockup__caption span {
  color: var(--text-invert-muted);
  font-size: 0.95rem;
}
.offer-mockup__inner {
  height: 100%;
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-mockup__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--wood-dark);
}
.offer-mockup__count {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--cta);
  line-height: 1;
}
.offer-mockup__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.offer-mockup__thumbs > div {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0e0c2, #c69a6a);
}
.offer-mockup__thumbs > div:nth-child(2) { background: linear-gradient(135deg, #2e4034, #3f5e3f); }
.offer-mockup__thumbs > div:nth-child(3) { background: linear-gradient(135deg, #d4a373, #8b5a2b); }
.offer-mockup__thumbs > div:nth-child(4) { background: linear-gradient(135deg, #3b2a1a, #5c3b1e); }
.offer-mockup__thumbs > div:nth-child(5) { background: linear-gradient(135deg, #c97b2a, #a35f18); }
.offer-mockup__thumbs > div:nth-child(6) { background: linear-gradient(135deg, #8ea883, #3f5e3f); }

.offer-stack__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--wood-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.offer-stack__list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.offer-stack__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.98rem;
}
.offer-stack__list li:last-child { border-bottom: 0; }
.offer-stack__list li strong { color: #fff; }
.offer-stack__list li span { color: var(--wood-light); font-family: var(--font-head); font-weight: 700; }

.offer-price {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}
.offer-price__label { color: var(--text-invert-muted); font-size: 0.9rem; }
.offer-price__old {
  text-decoration: line-through;
  color: var(--text-invert-muted);
  font-size: 1.1rem;
  margin: 4px 0 6px;
}
.offer-price__now {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 6px;
}
.offer-price__install { color: var(--wood-light); font-size: 0.94rem; margin-bottom: 20px; }
.offer-price .btn { width: 100%; }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .guarantee-grid { grid-template-columns: 260px 1fr; }
}
.guarantee-seal {
  width: 240px; height: 240px;
  margin: 0 auto;
  display: grid; place-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.guarantee-seal__badge {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.guarantee-seal__inner {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  z-index: 1;
  margin-top: 90px;
}
.guarantee-seal__inner .big {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: #f4d38a;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.guarantee-seal__inner .small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  margin-top: 2px;
  color: #f4d38a;
}
.guarantee h2 { margin-top: 0; }
.guarantee-extra {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-cream);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
}
.guarantee-extra strong { color: var(--wood-dark); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq-item.is-open .faq-item__q::after {
  content: "−";
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding: 0 20px 20px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--bg-green);
  color: var(--text-invert);
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: var(--text-invert-muted); max-width: 560px; margin: 0 auto 30px; }
.final-cta .btn { min-width: 320px; }
.final-cta .cta-microcopy { color: var(--text-invert-muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1a130d;
  color: var(--text-invert-muted);
  padding: 40px 0 30px;
  font-size: 0.88rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--wood-light); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.6;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  transform: translateY(120%);
  transition: transform 0.3s ease;
  z-index: 50;
  display: block;
}
.sticky-cta.is-ready { transform: translateY(0); }
.sticky-cta.is-hidden { transform: translateY(120%); }
.sticky-cta .btn { width: 100%; padding: 14px 20px; font-size: 0.98rem; }
@media (min-width: 800px) {
  .sticky-cta { display: none; }
}

/* Accessible focus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
