﻿/* ═════════════════════════════════════════════
   TALIS OBJECT — REDESIGN STYLES v2
   Inspired by Bocpak Home 5 (pure CSS + light JS)
   ═════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Brand core (preserved from v1) */
  --ink: #12110e;
  --ink-soft: #2b2518;
  --muted: #6f6758;
  --line: #e6dcc8;
  --line-strong: #d2bd8a;
  --warm: #fff8dd;
  --warm-2: #f5e7bf;
  --panel: #fffdf1;
  --gold: #f3bd19;
  --gold-strong: #d59600;
  --gold-dark: #946200;
  --gold-soft: #ffe685;
  --link: #0f6f74;
  --link-hover: #0a4e52;
  --whatsapp: #22b95f;
  --coral: #bf6548;
  --copper: #9f7437;
  --slate: #6d7772;
  --cream: #fffaf2;
  --danger: #9b2d24;
  --success: #255f43;

  /* Expanded palette */
  --dark: #0f0d0a;
  --dark-soft: #1a1712;
  --light: #fffdf6;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', Consolas, monospace;

  /* Spacing */
  --section-gap: 5rem;
  --section-gap-sm: 3rem;
  --container: 1200px;
  --container-narrow: 800px;

  /* Effects */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow: 0 24px 60px rgba(38, 29, 9, 0.13);
  --shadow-soft: 0 12px 30px rgba(38, 29, 9, 0.08);
  --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-sm: 4px;

  /* Z-index scale */
  --z-notification: 100;
  --z-header: 90;
  --z-overlay: 80;
  --z-whatsapp: 70;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--light);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.375rem); }
p { margin-bottom: 1rem; }
dt { font-weight: 600; color: var(--ink); }
dd { color: var(--muted); }

/* ── UTILITY ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 200; background: var(--gold); color: var(--ink); padding: 0.5rem 1rem; border-radius: var(--radius-sm); }
.skip-link:focus { top: 0.5rem; }
.eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-strong); margin-bottom: 0.5rem; }
.eyebrow.light { color: var(--gold-soft); }
.text-link { font-weight: 600; color: var(--gold-strong); transition: var(--transition); display: inline-flex; align-items: center; gap: 0.25rem; }
.text-link:hover { color: var(--gold-dark); gap: 0.5rem; }
.text-link::after { content: '\2192'; transition: var(--transition); }

/* ── BUTTONS ── */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  background: var(--gold); color: var(--ink);
  border: 2px solid var(--gold); cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  text-align: center; line-height: 1.4;
}
.button:hover { background: var(--gold-strong); border-color: var(--gold-strong); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(243,189,25,0.35); }
.button:active { transform: translateY(0); }
.button::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.button:hover::after { left: 100%; }

.button-small { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button-secondary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: none; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

/* ── KEYFRAMES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes counter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCopyIn {
  from { transform: translateY(14px); }
  to { transform: translateY(0); }
}

/* ── REVEAL ON SCROLL ── */
.reveal-ready [data-reveal-section] { opacity: 1; }
.reveal-ready [data-reveal-section].is-visible { animation: fadeInUp var(--transition-slow) forwards; }
.reveal-ready [data-reveal-section].reveal-left.is-visible { animation: fadeInLeft var(--transition-slow) forwards; }
.reveal-ready [data-reveal-section].reveal-right.is-visible { animation: fadeInRight var(--transition-slow) forwards; }
.reveal-ready [data-reveal-section].reveal-scale.is-visible { animation: scaleIn var(--transition-slow) forwards; }

/* ── NOTIFICATION BAR ── */
.top-strip {
  background: var(--ink); color: var(--gold); font-size: 0.8125rem; font-weight: 500;
  padding: 0.5rem 0; overflow: hidden; white-space: nowrap;
  position: relative; z-index: var(--z-notification);
}
.top-strip-inner {
  display: flex; gap: 3rem; animation: marquee 30s linear infinite; width: max-content;
}
.top-strip a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.top-strip a:hover { color: var(--white); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-shell {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; gap: 2rem;
}

/* Brand / Logo */
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-logo { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo-mark svg { width: 44px; height: 44px; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.brand-wordmark strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); font-weight: 600; }
.brand-wordmark small { font-size: 0.6875rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }

/* Logo SVG colors — new simplified box-fold mark */
.logo-box { fill: var(--gold); }
.logo-fold { stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.logo-stamp { stroke: var(--ink); stroke-width: 2.5; }

/* Navigation */
.primary-nav { display: flex; align-items: center; gap: 0.125rem; }
.nav-link {
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  color: rgba(255,255,255,0.78); transition: var(--transition); white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-link.active { color: var(--gold); }

/* ── NAV DROPDOWNS ── */
.nav-item { position: relative; }
.nav-item > .nav-link { display: flex; align-items: center; gap: 0.3rem; }
.nav-item > .nav-link::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.nav-item:hover > .nav-link::after { border-top-color: var(--gold); transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  min-width: 220px; background: var(--dark-soft);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  padding: 0.5rem 0; opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: calc(var(--z-header) + 1);
}
.nav-item.is-active .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.75); transition: var(--transition);
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.06); border-left-color: var(--gold); padding-left: 1.25rem; }
.nav-dropdown a .dd-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.6; }
.nav-dropdown a:hover .dd-icon { opacity: 1; }
.nav-dropdown .dd-view-all {
  border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0.25rem; padding-top: 0.75rem;
  font-weight: 600; color: var(--gold-soft); font-size: 0.8125rem;
}
.nav-dropdown .dd-view-all:hover { color: var(--gold); }

@media (max-width: 860px) {
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem;
    min-width: 0; max-height: 0; overflow: hidden; transition: max-height var(--transition);
  }
  .nav-item.open .nav-dropdown { max-height: 400px; }
  .nav-item > .nav-link::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    color: var(--gold-soft);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
  }
  .nav-item.open > .nav-link::after {
    content: '-';
    border-color: rgba(243,189,25,0.65);
    color: var(--gold);
  }
}

/* Nav CTA button */
.primary-nav .button {
  padding: 0.625rem 1.5rem; font-size: 0.9375rem; font-weight: 700;
  margin-left: 0.75rem;
}

/* ── MOBILE MENU ── */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 1px; transition: var(--transition); }
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .menu-toggle span { background: var(--white); }
  .primary-nav {
    position: absolute; top: 100%; right: 0; bottom: auto; left: 0; width: 100%; max-width: none;
    background: var(--dark-soft); flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.75rem 1rem 1rem; transform: none;
    transition: none;
    box-shadow: 0 18px 36px rgba(0,0,0,0.42); z-index: calc(var(--z-header) + 1);
    overflow-y: auto; max-height: calc(100svh - 4.75rem);
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav .nav-link, .primary-nav .button { font-size: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); border-radius: 0; color: rgba(255,255,255,0.85); }
  .primary-nav .nav-link:hover { background: transparent; color: var(--gold); }
  .primary-nav .nav-item, .primary-nav .nav-link { width: 100%; }
  .primary-nav .nav-link { justify-content: space-between; text-align: left; }
  .primary-nav .button { width: 100%; margin: 0.75rem 0 0; border-bottom: none; justify-content: center; }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: calc(var(--z-header) - 1);
  }
}

/* ── HERO ── */
.hero-home {
  position: relative; min-height: 90svh; display: flex; align-items: center;
  background: var(--dark);
  background-image:
    linear-gradient(to bottom, rgba(15,13,10,0.35), rgba(15,13,10,0.12)),
    url('/assets/images/hero-home.webp');
  background-size: cover; background-position: center 35%;
  color: var(--white); overflow: hidden;
}
.hero-home::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, var(--light), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; padding-top: 2rem; padding-bottom: 3rem;
  position: relative; z-index: 1;
}
.hero-copy {
  animation: heroCopyIn 0.55s ease-out both;
  max-width: 700px;
}
.hero-copy h1 {
  color: var(--white); margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-lead { font-size: 1.125rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; line-height: 1.75; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-actions .button {
  font-size: 1rem; padding: 0.875rem 2.25rem; font-weight: 700;
}
.hero-actions .button-secondary { color: var(--white); border-color: rgba(255,255,255,0.35); font-weight: 600; }
.hero-actions .button-secondary:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero-visual { display: none; } /* Removed — background image carries the visual */

.trust-rail {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.55); font-weight: 500;
}
.trust-rail span { display: flex; align-items: center; gap: 0.375rem; }
.trust-rail span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .hero-home { min-height: 80svh; padding: 7rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .trust-rail { justify-content: flex-start; }
}

/* ── SECTION SPACING ── */
.section { padding: var(--section-gap) 0; }
.section-muted { background: var(--panel); }
.section-dark {
  background: var(--dark); color: rgba(255,255,255,0.85);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark dt { color: var(--white); }
.section-dark dd { color: rgba(255,255,255,0.6); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.section-head.compact-head { margin-bottom: 1.5rem; }
.split-head { display: flex; gap: 3rem; align-items: flex-start; text-align: left; margin-bottom: 2.5rem; }
.split-head > div { flex: 1; }
.split-head > p { flex: 1; color: var(--muted); align-self: end; }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .section { padding: var(--section-gap-sm) 0; }
  .split-head { flex-direction: column; gap: 1rem; text-align: center; }
  .split-head > p { text-align: center; }
}

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card-visual {
  position: relative; overflow: hidden; aspect-ratio: 4/3; display: block;
  background: var(--warm); cursor: pointer;
}
.product-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-visual img { transform: scale(1.06); }
.product-card-visual span {
  position: absolute; bottom: 0.5rem; left: 0.5rem;
  background: var(--gold); color: var(--ink); font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body .card-kicker { font-size: 0.75rem; font-weight: 600; color: var(--gold-strong); letter-spacing: 0.05em; margin-bottom: 0.25rem; text-transform: uppercase; }
.product-card-body h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; margin-bottom: 0.5rem; }
.product-card-body h3 a:hover { color: var(--gold-strong); }
.product-card-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; flex: 1; }
.product-card-body ul { font-size: 0.8125rem; color: var(--muted); margin-bottom: 0.75rem; }
.product-card-body ul li { padding: 0.15rem 0; }
.product-card-body ul li::before { content: '\2022'; color: var(--gold); margin-right: 0.5rem; }
.product-card-actions { display: flex; gap: 1rem; margin-top: auto; }

/* ── CATEGORY SHOWCASE ── */
.category-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.category-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow-card); transition: var(--transition);
  cursor: pointer; border-top: 4px solid transparent;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-top-color: var(--gold); }
.category-card:nth-child(2):hover { border-top-color: var(--coral); }
.category-card:nth-child(3):hover { border-top-color: var(--copper); }
.category-card:nth-child(4):hover { border-top-color: var(--slate); }
.category-card:nth-child(5):hover { border-top-color: var(--gold-strong); }
.category-card:nth-child(6):hover { border-top-color: var(--gold-dark); }
.category-card img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 0.4s;
}
.category-card:hover img { transform: scale(1.05); }
.category-count {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.65); color: var(--white);
  font-size: 0.75rem; padding: 0.25rem 0.625rem; border-radius: 999px;
  font-weight: 500;
}
.category-copy {
  padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem;
}
.category-copy span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.category-copy strong { font-size: 1rem; color: var(--ink); line-height: 1.35; }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* ── SET CARDS (package sets) ── */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.one { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
@media (max-width: 900px) { .card-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .card-grid.two, .card-grid.four { grid-template-columns: 1fr; } }
.set-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-card); transition: var(--transition);
  border-left: 4px solid var(--muted); display: flex; flex-direction: column;
}
.set-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.set-card.accent-green { border-left-color: var(--success); }
.set-card.accent-coral { border-left-color: var(--coral); }
.set-card.accent-copper { border-left-color: var(--copper); }
.set-card.accent-slate { border-left-color: var(--slate); }
.set-card .card-kicker {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 999px;
  background: var(--warm); color: var(--gold-dark); display: inline-block; align-self: flex-start;
}
.set-card h3 { margin-bottom: 0.5rem; }
.set-card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1rem; flex: 1; }
.set-card dl { font-size: 0.875rem; margin-bottom: 1rem; }
.set-card dl div { display: flex; gap: 0.5rem; padding: 0.3rem 0; border-bottom: 1px solid var(--line); }
.set-card dl div:last-child { border-bottom: none; }
.set-card dl dt { flex-shrink: 0; width: 110px; color: var(--ink); }
.set-card dl dd { flex: 1; }

/* ── DESIGN CARDS ── */
.design-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.design-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
  display: flex; flex-direction: column;
}
.design-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.design-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.design-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.design-card.featured img { aspect-ratio: auto; height: 100%; }
.design-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.design-card-body p:first-of-type + p { color: var(--muted); font-size: 0.875rem; margin-bottom: 0.75rem; flex: 1; }
.design-card-body dl { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }
.design-card-body dl div { display: flex; gap: 0.5rem; padding: 0.2rem 0; }
.design-card-body dl dt { width: 85px; flex-shrink: 0; color: var(--ink); font-size: 0.75rem; }
@media (max-width: 900px) {
  .design-grid { grid-template-columns: repeat(2, 1fr); }
  .design-card.featured { grid-column: span 1; display: flex; }
}
@media (max-width: 540px) {
  .design-grid, .design-card.featured { grid-template-columns: 1fr; }
}

/* ── SAMPLE CASE CARDS ── */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.case-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.case-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.case-body h3 { margin-bottom: 0.75rem; }
.case-body dl { font-size: 0.8125rem; color: var(--muted); flex: 1; }
.case-body dl div { display: flex; gap: 0.5rem; padding: 0.25rem 0; border-bottom: 1px solid var(--line); }
.case-body dl div:last-child { border-bottom: none; }
.case-body dl dt { width: 110px; flex-shrink: 0; color: var(--ink); font-size: 0.75rem; }
@media (max-width: 900px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .case-grid { grid-template-columns: 1fr; } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark); padding: 3rem 0; color: var(--white);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-mono); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number.animated { animation: counter 0.8s ease-out both; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.stat-item:nth-child(1) .stat-number.animated { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-number.animated { animation-delay: 0.15s; }
.stat-item:nth-child(3) .stat-number.animated { animation-delay: 0.3s; }
.stat-item:nth-child(4) .stat-number.animated { animation-delay: 0.45s; }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── MATERIAL STRIP ── */
.material-strip {
  padding: 2rem 0; overflow: hidden; background: var(--panel);
}
.strip-track {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 1.5rem -webkit-scrollbar { display: none; }
}
.strip-track::-webkit-scrollbar { height: 0; }
.strip-card { flex-shrink: 0; width: 240px; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; }
.strip-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.strip-card figcaption {
  padding: 0.5rem 0; font-size: 0.8125rem; text-align: center; color: var(--muted); font-weight: 500;
}

/* ── PARALLAX SECTION ── */
[data-parallax] {
  background-attachment: fixed; background-size: cover; background-position: center;
}
@media (hover: none) { [data-parallax] { background-attachment: scroll; } }

/* ── HOW IT WORKS / STEPS ── */
.steps.flow-steps {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem;
}
.step {
  position: relative; padding: 1.75rem; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 0.875rem;
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; }

/* ── FAQ ── */
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.faq-item {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-lift); }
.faq-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; color: var(--gold-dark); }
.faq-item p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; }
@media (max-width: 600px) { .faq-grid { grid-template-columns: 1fr; } }

/* ── SCOPE SECTION ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.scope-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.scope-card.good { border-top: 3px solid var(--success); }
.scope-card.avoid { border-top: 3px solid var(--danger); }
.scope-card h3 { font-family: var(--font-body); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.check-list { font-size: 0.875rem; color: var(--muted); }
.check-list li { padding: 0.2rem 0; display: flex; gap: 0.5rem; }
.check-list li::before { content: '\2713'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.scope-card.avoid .check-list li::before { content: '\2717'; color: var(--danger); }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .split-grid, .scope-grid { grid-template-columns: 1fr; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark); padding: 3rem 0;
}
.cta-grid {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-grid > div { flex: 1; }
.cta-grid h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-grid p { color: rgba(255,255,255,0.7); margin-bottom: 0; }
@media (max-width: 640px) {
  .cta-grid { flex-direction: column; text-align: center; }
}

/* ── NEWSLETTER ── */
.newsletter-bar {
  background: var(--gold-soft); padding: 3rem 0;
  position: relative; overflow: hidden;
}
.newsletter-bar::before {
  content: ''; position: absolute; inset: 0; background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1), transparent 50%);
}
.newsletter-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.newsletter-copy h2 { margin-bottom: 0.5rem; }
.newsletter-copy p { color: var(--muted); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 0.5rem; flex-shrink: 0; }
.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem; border: 2px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; min-width: 280px;
  background: var(--white); color: var(--ink); transition: var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(243,189,25,0.2); }
@media (max-width: 640px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
  .newsletter-form .button { width: 100%; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.75); padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-grid h2 {
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-grid p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-grid a {
  display: block; font-size: 0.875rem; padding: 0.25rem 0; transition: var(--transition); color: rgba(255,255,255,0.6);
}
.footer-grid a:hover { color: var(--gold); padding-left: 0.25rem; }
.footer-brand { margin-bottom: 1rem; display: inline-flex; }
.footer-brand .brand-logo-mark svg { width: 36px; height: 36px; }
.footer-brand .brand-wordmark strong { color: var(--white); }
.footer-brand .brand-wordmark small { color: rgba(255,255,255,0.5); }
.footer-brand .logo-card { fill: var(--dark-soft); stroke: var(--muted); }
.footer-brand .logo-fold { fill: var(--dark-soft); stroke: var(--muted); }
.footer-brand .logo-hole { fill: var(--dark); }
.footer-brand .logo-t { stroke: var(--gold); }
.footer-brand .logo-o { stroke: var(--gold); }
.footer-brand .logo-seal { fill: var(--gold); }

.social-row {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: var(--white); }
.social-icon:hover svg { fill: var(--ink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.4);
}
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: var(--z-whatsapp);
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--whatsapp); color: var(--white); border-radius: 999px;
  padding: 0.625rem 1.25rem; box-shadow: 0 4px 20px rgba(34,185,95,0.4);
  transition: var(--transition); font-size: 0.875rem; font-weight: 600;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34,185,95,0.5); }
.whatsapp-float-icon svg { width: 22px; height: 22px; }
.whatsapp-float-icon path[fill="currentColor"], .whatsapp-float-icon path[fill="none"] { stroke: var(--white); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero { border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--warm); padding: 5rem 0 3rem; border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 700px; }
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.page-hero-grid.no-image { grid-template-columns: 1fr; }
.page-hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .page-hero { border-top: 1px solid rgba(255,255,255,0.08); padding: 3rem 0 2rem; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

/* ── QUOTE FORM ── */
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.quote-intro h1, .quote-intro h2 { margin-bottom: 1rem; }
.quote-intro p { color: var(--muted); }
.notice.compact {
  background: var(--warm); border-radius: var(--radius); padding: 1rem;
  font-size: 0.8125rem; color: var(--muted); margin: 1.5rem 0;
}
.notice.compact strong { display: block; margin-bottom: 0.25rem; color: var(--ink); }
.mini-contact { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.875rem; }
.mini-contact a { color: var(--gold-strong); font-weight: 600; }
.mini-contact a:hover { color: var(--gold-dark); }
.quote-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  align-items: start;
}
.quote-form .form-row.full { grid-column: span 2; }
.quote-form .form-row { display: flex; flex-direction: column; gap: 0.25rem; }
.quote-form label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.quote-form label span { color: var(--danger); }
.quote-form input, .quote-form select, .quote-form textarea {
  padding: 0.625rem 0.75rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--ink);
  background: var(--white); transition: var(--transition);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(243,189,25,0.15);
}
.field-error { font-size: 0.75rem; color: var(--danger); min-height: 1.2em; }
.field-help { font-size: 0.75rem; color: var(--muted); }
.form-row.is-invalid input, .form-row.is-invalid select, .form-row.is-invalid textarea { border-color: var(--danger); }
.form-note { font-size: 0.8125rem; color: var(--muted); grid-column: span 2; }
.form-status { font-size: 0.875rem; text-align: center; min-height: 1.5em; grid-column: span 2; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.quote-form .button { grid-column: span 2; margin-top: 0.5rem; }
.honey-field { position: absolute; opacity: 0; pointer-events: none; height: 0; width: 0; }
/* ── PRODUCT DETAIL GRID ── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.product-mockup-image-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.product-mockup-image-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mockup-keywords { font-size: 0.8125rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── TIMELINE ── */
.timeline-section { padding: 3rem 0; }
.timeline-strip {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0 0.5rem;
}
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700;
  font-family: var(--font-mono); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0; }
.timeline-step span { font-size: 0.8125rem; color: var(--muted); }
.timeline-line {
  flex: 0 0 40px; height: 2px; background: var(--line-strong);
  align-self: center; margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .timeline-strip { flex-direction: column; gap: 1.5rem; align-items: center; }
  .timeline-line { width: 2px; height: 24px; flex: 0 0 auto; margin-bottom: 0; }
  .timeline-step { flex-direction: row; gap: 1rem; }
}

/* ── PRICE ANCHOR ── */
.price-anchor-section { background: var(--light); padding: 3rem 0; }
.price-anchor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.price-badge {
  background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.price-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); background: var(--warm);
  padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.price-badge p {
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
  line-height: 1.5;
}
.price-badge small { font-size: 0.8125rem; color: var(--muted); }
.price-note p { color: var(--muted); }
.price-note h2 { margin-bottom: 0.75rem; }
.price-note .button { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .price-anchor-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TESTIMONIAL ── */
.testimonial-slab { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem 0; }
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block h2 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.75rem; }
.testimonial-block blockquote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  line-height: 1.5; color: var(--white); margin: 0 0 2rem;
  quotes: none;
}
.testimonial-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.scenario-meta {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.scenario-meta span:first-child { color: rgba(255,255,255,0.8); }
.scenario-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
@media (max-width: 768px) {
  .testimonial-block blockquote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form .form-row.full, .form-note, .form-status, .quote-form .button { grid-column: span 1; }
}

/* ==========================================================================
   Premium yellow-black theme overrides
   ========================================================================== */
:root {
  --gold: #f0b90b;
  --gold-strong: #d99a00;
  --gold-dark: #8f6100;
  --gold-soft: #ffe7a4;
  --ink: #11100d;
  --ink-soft: #2a251b;
  --muted: #6b6354;
  --line: #e8ddc4;
  --line-strong: #c9aa57;
  --warm: #fff3c7;
  --panel: #fffaf0;
  --light: #fffdf6;
  --shadow: 0 28px 70px rgba(32, 24, 8, 0.16);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 14px 34px rgba(30, 23, 10, 0.08);
  --shadow-lift: 0 28px 70px rgba(22, 18, 10, 0.18);
  --radius: 8px;
  --radius-lg: 8px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 243, 199, 0.5) 0, rgba(255, 253, 246, 0) 360px),
    var(--light);
}

.site-header {
  background: rgba(15, 13, 10, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell { height: 4.75rem; }
.top-strip { background: #080706; color: var(--gold-soft); }
.top-strip-inner { animation-duration: 40s; }
.brand-wordmark strong { letter-spacing: 0.01em; }
.brand-logo-mark svg { filter: drop-shadow(0 9px 18px rgba(240, 185, 11, 0.2)); }

.button {
  min-height: 46px;
  box-shadow: 0 10px 24px rgba(240, 185, 11, 0.22);
}

.button-secondary { box-shadow: none; }

.hero-home {
  min-height: calc(100svh - 5.75rem);
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.86) 0%, rgba(9, 8, 6, 0.68) 38%, rgba(9, 8, 6, 0.12) 72%),
    radial-gradient(circle at 75% 18%, rgba(240, 185, 11, 0.18), transparent 30%),
    linear-gradient(135deg, #0d0b08 0%, #17120a 46%, #090806 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 185, 11, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 185, 11, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.08));
  pointer-events: none;
}

.hero-home::after {
  height: 9rem;
  background: linear-gradient(to top, var(--light), rgba(255, 253, 246, 0));
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero-copy {
  max-width: 640px;
  padding: 1.25rem 0;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-soft);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-copy .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.hero-lead {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-actions { margin-bottom: 2rem; }

.trust-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
}

.trust-rail span {
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 9, 7, 0.46);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-product-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 1rem;
  align-items: stretch;
  min-height: 560px;
}

.hero-board-main,
.hero-board-stack img,
.hero-board-note {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.hero-board-main {
  overflow: hidden;
  background: var(--gold);
  transform: rotate(-1.4deg);
}

.hero-board-main img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-home:hover .hero-board-main img { transform: scale(1.035); }

.hero-board-stack {
  display: grid;
  gap: 1rem;
  align-self: center;
}

.hero-board-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--panel);
}

.hero-board-stack img:first-child { transform: translateY(-1.5rem) rotate(2deg); }
.hero-board-stack img:last-child { transform: translateY(1.5rem) rotate(-2deg); }

.hero-board-note {
  position: absolute;
  right: 6rem;
  bottom: 2rem;
  max-width: 280px;
  padding: 1rem 1.15rem;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
}

.hero-board-note span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero-board-note strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.35;
}

.shop-panel {
  margin-top: -2.5rem;
  padding-top: 4.25rem;
}

.section-head h2 { letter-spacing: 0; }
.section-head.compact-head { max-width: 820px; margin-left: auto; margin-right: auto; }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.set-card,
.product-card,
.category-card,
.design-card,
.case-card,
.step,
.faq-item,
.scope-card,
.quote-form {
  border: 1px solid rgba(201, 170, 87, 0.22);
}

.set-card {
  padding: 0;
  overflow: hidden;
  border-left: 0;
}

.set-card::before {
  content: "";
  height: 4px;
  background: var(--gold);
  display: block;
}

.set-card.accent-green::before { background: var(--success); }
.set-card.accent-coral::before { background: var(--coral); }
.set-card.accent-copper::before { background: var(--copper); }
.set-card.accent-slate::before { background: var(--slate); }

.set-card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--warm);
}

.set-card-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.set-card:hover .set-card-visual img { transform: scale(1.055); }

.set-card-visual span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.32rem 0.7rem;
  background: rgba(17, 16, 13, 0.82);
  color: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.set-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.set-card h3,
.product-card-body h3,
.category-copy strong,
.design-card h3,
.case-body h3 {
  font-family: var(--font-body);
  font-weight: 800;
}

.category-showcase {
  background: linear-gradient(180deg, var(--light) 0%, var(--panel) 100%);
}

.category-grid {
  grid-template-columns: 1.22fr 0.88fr 0.88fr;
  grid-auto-rows: minmax(265px, auto);
}

.category-card {
  min-height: 265px;
  border-top: 0;
  background: var(--ink);
  isolation: isolate;
}

.category-card:first-child { grid-row: span 2; }

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0.86;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.76));
}

.category-card:hover { border-top-color: transparent; }
.category-count,
.category-copy { z-index: 2; }

.category-count {
  background: rgba(255, 231, 164, 0.9);
  color: var(--ink);
}

.category-copy {
  margin-top: auto;
  padding: 1.25rem;
  color: var(--white);
}

.category-copy span { color: var(--gold-soft); }
.category-copy strong { color: var(--white); font-size: clamp(1.05rem, 1.4vw, 1.35rem); }

.product-shelf {
  padding: 4.5rem 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 13, 10, 0.98), rgba(37, 27, 8, 0.96)),
    var(--dark);
  color: rgba(255,255,255,0.76);
}

.product-shelf h2 {
  max-width: 620px;
  color: var(--white);
}

picture {
  display: contents;
}

.product-shelf-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.shelf-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 16vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.5rem 0.5rem;
  scroll-snap-type: x mandatory;
}

.shelf-rail::-webkit-scrollbar { height: 0; }

.shelf-item {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.12);
}

.shelf-item.wide { min-height: 260px; align-self: end; }
.shelf-item.tall { min-height: 360px; }

.shelf-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.shelf-item:hover img { transform: scale(1.06); }

.shelf-item span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  background: rgba(15, 13, 10, 0.86);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
}

.proof-section {
  background:
    linear-gradient(180deg, var(--panel), var(--light));
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.proof-visual {
  position: relative;
}

.proof-visual::after {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(201, 170, 87, 0.45);
  border-radius: var(--radius);
  z-index: 0;
}

.proof-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-copy p {
  color: var(--muted);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.proof-list > div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(201, 170, 87, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.proof-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.proof-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.design-section { background: var(--light); }

.design-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: stretch;
}

.design-card { border-radius: var(--radius); }

.design-card.featured {
  grid-row: span 2;
  grid-column: span 1;
  display: flex;
}

.design-card.featured img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.design-card img,
.case-card img,
.product-card-visual img,
.page-hero-visual img,
.image-panel img,
.product-mockup-image-card img {
  filter: saturate(1.02) contrast(1.02);
}

.case-section { background: var(--panel); }
.case-card,
.product-card { border-radius: var(--radius); }

.product-card {
  background: linear-gradient(180deg, var(--white), #fffaf0);
}

.product-card-visual { aspect-ratio: 1.06 / 1; }

.product-card-visual span {
  background: var(--ink);
  color: var(--gold-soft);
}

.stats-bar {
  background:
    linear-gradient(90deg, rgba(240,185,11,0.15), transparent 26%, rgba(240,185,11,0.12)),
    var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-item { border-left: 1px solid rgba(255,255,255,0.1); }
.stat-item:first-child { border-left: 0; }

.material-strip {
  background: var(--ink);
  padding: 2.5rem 0;
}

.strip-track { padding: 0 1.5rem; }

.strip-card {
  width: 270px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
}

.strip-card img { aspect-ratio: 4 / 5; }

.strip-card figcaption {
  color: rgba(255,255,255,0.74);
  padding: 0.8rem;
}

.page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(240,185,11,0.2), transparent 30%),
    linear-gradient(135deg, #fff8df, #fffdf6 52%, #f6ead0);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(143,97,0,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(143,97,0,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero .hero-lead { color: var(--muted); }

.page-hero .hero-actions .button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
}

.page-hero-visual { position: relative; }

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border: 1px solid rgba(201,170,87,0.45);
  border-radius: var(--radius);
  transform: rotate(-2deg);
}

.page-hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-detail-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.mockup-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.product-mockup-image-card {
  border-radius: var(--radius);
  border: 1px solid rgba(201,170,87,0.28);
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.spec-table th {
  width: 190px;
  background: rgba(255, 231, 164, 0.2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-split .image-panel img,
.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.two-col,
.three-col,
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col,
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature,
.contact-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(201,170,87,0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-list > div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(201,170,87,0.22);
  border-radius: var(--radius);
}

.section-dark .info-list > div {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.info-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.section-dark .info-list strong { color: var(--gold-soft); }
.info-list span { color: var(--muted); font-size: 0.9rem; }
.section-dark .info-list span { color: rgba(255,255,255,0.68); }

.timeline-strip { max-width: 1080px; }

.timeline-step {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(201,170,87,0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.timeline-line { margin-top: 2rem; }

.quote-form {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 231, 164, 0.15), rgba(255,255,255,0) 140px),
    var(--white);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 44px;
  border-radius: var(--radius);
}

.quote-form textarea { min-height: 136px; }

.quote-hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(240,185,11,0.18), transparent 28%),
    linear-gradient(135deg, #fff8df, #fffdf6 54%, #f5e8c5);
  color: var(--ink-soft);
}

.quote-hero h1,
.quote-hero h2 {
  color: var(--ink);
}

.quote-hero .quote-intro p {
  color: var(--muted);
}

.quote-intro-visual {
  margin: 1.25rem 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 170, 87, 0.25);
  box-shadow: var(--shadow-card);
}

.quote-intro-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.breadcrumb-nav {
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(201, 170, 87, 0.22);
}

.breadcrumb-nav ol {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb-nav li + li::before {
  content: "/";
  color: var(--line-strong);
}

.breadcrumb-nav a {
  color: var(--gold-dark);
  font-weight: 700;
}

.breadcrumb-nav span {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(201, 170, 87, 0.22);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  overflow: hidden;
  display: block;
  background: var(--warm);
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.35rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.blog-card-body p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-card-body .text-link {
  margin-top: auto;
}

.related-guides-section {
  background: var(--panel);
}

.blog-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card.compact {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}

.blog-card.compact .blog-card-image img {
  aspect-ratio: 16 / 10;
}

.blog-card.compact .blog-card-body {
  padding: 1rem;
}

.blog-card.compact .blog-card-body h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card.compact .blog-card-body p:not(.eyebrow) {
  font-size: 0.86rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article-body section {
  margin-bottom: 2rem;
}

.article-body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.75rem;
}

.article-body p {
  color: var(--muted);
}

.article-body p a,
.article-body li a,
.article-body td a {
  color: var(--link);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(15, 111, 116, 0.48);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.article-body p a:hover,
.article-body li a:hover,
.article-body td a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

.article-image {
  margin: 1.4rem 0 1.6rem;
}

.article-image picture,
.article-image img {
  display: block;
  width: 100%;
}

.article-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 170, 87, 0.22);
  box-shadow: var(--shadow-card);
}

.article-image figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff1b7, #fffaf0);
  border: 1px solid rgba(201, 170, 87, 0.3);
}

.article-sidebar {
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(201, 170, 87, 0.22);
  box-shadow: var(--shadow-card);
}

.article-sidebar h2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.article-related {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.article-related a {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.cta-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(240,185,11,0.22), transparent 30%),
    linear-gradient(135deg, #0e0c09, #211707);
}

.newsletter-bar {
  background: linear-gradient(135deg, #ffd85a, #fff0a8);
}

.whatsapp-float {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid rgba(17,16,13,0.12);
  box-shadow: 0 0 0 0 rgba(240,185,11,0.42), 0 14px 34px rgba(32,24,8,0.2);
  animation: whatsapp-breathe 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--gold-strong);
  box-shadow: 0 20px 48px rgba(32,24,8,0.24);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
}

.whatsapp-float-icon path[fill="currentColor"],
.whatsapp-float-icon path[fill="none"] {
  stroke: currentColor;
}

@keyframes whatsapp-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(240,185,11,0.42), 0 14px 34px rgba(32,24,8,0.2);
  }
  50% {
    transform: translateY(-2px) scale(1.018);
    box-shadow: 0 0 0 9px rgba(240,185,11,0), 0 18px 44px rgba(32,24,8,0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-strip-inner,
  .whatsapp-float,
  .reveal-ready [data-reveal-section].is-visible,
  .stat-number.animated {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }

  .hero-product-board {
    grid-template-columns: minmax(0, 1fr) 132px;
    min-height: 420px;
  }

  .hero-board-main img { min-height: 420px; }

  .card-grid.four,
  .category-grid,
  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card:first-child { grid-row: span 1; }
}

@media (max-width: 860px) {
  .menu-toggle {
    position: relative;
    z-index: calc(var(--z-overlay) + 2);
  }

  .primary-nav {
    position: absolute;
    display: none;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: calc(100svh - 4.75rem);
    padding: 0.75rem 1rem 1rem;
    background: var(--dark-soft);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
    overflow-y: auto;
    transform: none;
    z-index: calc(var(--z-header) + 1);
  }

  .primary-nav.is-open {
    display: flex;
    transform: none;
  }

  .primary-nav .nav-item,
  .primary-nav .nav-link {
    width: 100%;
  }

  .primary-nav .nav-link {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .primary-nav .button {
    width: 100%;
    margin: 0.75rem 0 0;
  }

  .hero-home {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero-copy h1 { font-size: clamp(2.45rem, 10vw, 4rem); }

  .hero-product-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-board-main { transform: none; }

  .hero-board-main img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-board-stack { grid-template-columns: repeat(2, 1fr); }
  .hero-board-stack img:first-child,
  .hero-board-stack img:last-child { transform: none; }

  .hero-board-note {
    right: 1rem;
    bottom: 1rem;
  }

  .product-shelf-head {
    align-items: start;
    flex-direction: column;
  }

  .page-hero-visual { display: block; }
  .mockup-panel { position: static; }

  .two-col,
  .three-col,
  .feature-grid,
  .proof-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }

  .trust-rail,
  .card-grid.four,
  .category-grid,
  .design-grid,
  .stats-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button { width: 100%; }

  .hero-board-note {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
  }

  .hero-board-stack { display: none; }

  .section-head,
  .split-head,
  .split-head > p {
    text-align: left;
  }

  .case-body dl div,
  .set-card dl div {
    display: block;
  }

  .case-body dl dt,
  .set-card dl dt,
  .design-card-body dl dt {
    width: auto;
    margin-bottom: 0.15rem;
  }

  .product-detail-grid { grid-template-columns: 1fr; }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 0.3rem;
  }

  .spec-table td { padding-top: 0.3rem; }

  .shelf-rail {
    grid-auto-columns: minmax(210px, 72vw);
    padding: 0 1rem 0.5rem;
  }

  .shelf-item,
  .shelf-item.wide,
  .shelf-item.tall {
    min-height: 285px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float-text { display: none; }
}
