:root {
  --ink: #f3f7f0;
  --muted: #b8c2b7;
  --paper: #050806;
  --panel: #111612;
  --line: #273229;
  --green: #6ee328;
  --green-strong: #32c914;
  --safety: #f6d042;
  --steel: #1b211d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 12%, rgba(110, 227, 40, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(110, 227, 40, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  font-family: 'Inter', 'Segoe UI', Arial, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(110, 227, 40, 0.15);
  background: rgba(5, 8, 6, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}
.brand:hover .brand-logo { opacity: 0.85; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a, .header-cta {
  border-radius: 999px; padding: 8px 14px;
  text-decoration: none; font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s;
}
.main-nav a:hover { background: rgba(110, 227, 40, 0.12); }
.header-cta {
  color: #081007; background: var(--safety);
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: scale(1.04); box-shadow: 0 4px 18px rgba(246, 208, 66, 0.3); }

/* ── Page Shell ── */
.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto; padding: 28px 0 80px;
}
@media (min-width: 1240px) {
  .page-shell { margin-left: clamp(20px, 5vw, 72px); margin-right: 420px; width: auto; }
}

/* ── Hero — Split 50/50 ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(680px, calc(100dvh - 60px));
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) clamp(24px, 4vw, 64px);
  border-right: 1px solid rgba(110, 227, 40, 0.1);
}

.text-green { color: var(--green); }

.eyebrow {
  margin: 0 0 12px; color: var(--green);
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0; max-width: 520px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.01em; text-wrap: balance;
}

h2 {
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  text-wrap: balance;
}

h3 { margin: 0; font-size: 1.25rem; line-height: 1.25; font-weight: 700; }

.hero-lead {
  margin: 14px 0 0; max-width: 480px;
  color: #b8c2b7; font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── Buttons ── */
.button {
  display: inline-flex; min-height: 46px;
  align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 8px; padding: 12px 20px;
  cursor: pointer; text-decoration: none;
  font-weight: 800; font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover { transform: translateY(-2px); }

.button.primary {
  color: #071007; background: var(--green);
  box-shadow: 0 8px 28px rgba(50, 201, 20, 0.25);
}
.button.primary:hover { box-shadow: 0 12px 36px rgba(50, 201, 20, 0.4); }

.button.ghost {
  border: 1px solid rgba(110, 227, 40, 0.35);
  color: var(--ink); background: rgba(255, 255, 255, 0.06);
}
.button.full { width: 100%; }

.btn-icon { flex-shrink: 0; }

/* Pulse animation for CTA */
.pulse-soft { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(50, 201, 20, 0.25); }
  50% { box-shadow: 0 8px 40px rgba(50, 201, 20, 0.5), 0 0 0 6px rgba(110, 227, 40, 0.12); }
}

/* ── Trust Chips (inside hero-copy) ── */
.trust-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(110, 227, 40, 0.06);
  border: 1px solid rgba(110, 227, 40, 0.2);
  font-size: 0.8rem; font-weight: 700; color: #d7ded4;
  transition: border-color 0.25s, background 0.25s;
}
.chip:hover {
  border-color: rgba(110, 227, 40, 0.45);
  background: rgba(110, 227, 40, 0.12);
}
.chip-icon { font-size: 0.72rem; }

/* ── Hero Media (right column) ── */
.hero-media {
  position: relative;
  overflow: hidden;
  background: #070a08;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-media::after {
  position: absolute; inset: 0; z-index: 2; content: "";
  background:
    linear-gradient(270deg, transparent 60%, rgba(5, 8, 6, 0.6)),
    linear-gradient(180deg, transparent 50%, rgba(5, 8, 6, 0.3));
  pointer-events: none;
}

/* Laser lines with animation */
.laser-line {
  position: absolute; z-index: 3;
  background: var(--green);
  box-shadow: 0 0 18px var(--green), 0 0 38px rgba(110, 227, 40, 0.6);
  animation: laser-pulse 3s ease-in-out infinite;
}
.laser-line.horizontal { top: 40%; left: 0; width: 100%; height: 2px; }
.laser-line.vertical { top: 5%; right: 38%; width: 2px; height: 90%; }
@keyframes laser-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 24px var(--green), 0 0 52px rgba(110, 227, 40, 0.8); }
}

/* ── Sections ── */
.section { padding: 72px 0; }
.section-heading { max-width: 720px; margin-bottom: 28px; }

.version-grid, .feature-list, .use-grid { display: grid; gap: 16px; }
.version-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.version-card, .feature-list article, .use-grid article, .faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(17, 22, 18, 0.9);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.version-card:hover, .feature-list article:hover, .use-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 227, 40, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.version-card { padding: clamp(22px, 3vw, 32px); position: relative; overflow: hidden; }
.version-card.featured {
  border-color: rgba(50, 201, 20, 0.6);
  box-shadow: 0 16px 52px rgba(50, 201, 20, 0.15);
  background: linear-gradient(160deg, rgba(17, 22, 18, 0.95), rgba(20, 32, 22, 0.9));
}

.recommended-badge {
  position: absolute; top: 16px; right: -28px;
  padding: 4px 40px;
  background: var(--green); color: #071007;
  font-size: 0.72rem; font-weight: 900;
  transform: rotate(35deg);
  box-shadow: 0 2px 12px rgba(50, 201, 20, 0.4);
}

.version-tag {
  display: inline-flex; margin-bottom: 14px;
  border: 1px solid rgba(110, 227, 40, 0.4); border-radius: 999px;
  padding: 6px 12px; color: var(--green);
  background: rgba(110, 227, 40, 0.08);
  font-weight: 800; font-size: 0.82rem;
}

/* ── Version Card Product Images ── */
.version-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
  padding: 20px 10px;
  border-radius: 12px;
  background: radial-gradient(ellipse at center, rgba(110, 227, 40, 0.06) 0%, transparent 70%);
}
.version-product-img {
  max-height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(110, 227, 40, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.version-card:hover .version-product-img {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 32px rgba(110, 227, 40, 0.22));
}

.version-card p, .feature-list p, .faq p { color: var(--muted); }
.version-card ul { margin: 16px 0; padding-left: 18px; }
.version-card li + li { margin-top: 6px; }

.text-link {
  color: var(--green); font-weight: 800;
  text-decoration-thickness: 2px; text-underline-offset: 4px;
  transition: color 0.2s;
}
.text-link:hover { color: #8ff04a; }

/* ── Proof Band / Ventajas ── */
.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 26px; align-items: start;
  border-block: 1px solid rgba(110, 227, 40, 0.15);
}

.feature-list article { padding: 22px; }
.feature-icon { font-size: 1.6rem; margin-bottom: 8px; }
.feature-list span {
  display: inline-block; margin-bottom: 14px;
  color: var(--green-strong); font-weight: 800; font-size: 0.82rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-grid figure {
  display: flex; flex-direction: column;
  overflow: hidden; margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 227, 40, 0.15);
  background: #151a16;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  padding: 14px 18px;
  color: #d7ded4; background: #111612;
  border-top: 1px solid rgba(110, 227, 40, 0.12);
  font-weight: 700; font-size: 0.88rem;
  line-height: 1.45;
  flex-grow: 1;
}

/* ── Reel Section ── */
.reel-wrapper {
  position: relative;
  width: 100%;
}
.reel-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 20px 4px;
}
.reel-container::-webkit-scrollbar {
  display: none;
}
.reel-card {
  flex: 0 0 280px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(110, 227, 40, 0.15);
  background: #111612;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-swipe-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 22, 18, 0.95);
  border: 1px solid rgba(110, 227, 40, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.swipe-hand {
  font-size: 1.2rem;
  display: inline-block;
  animation: swipe-hand-anim 1.5s ease-in-out infinite;
}
@keyframes swipe-hand-anim {
  0% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  100% { transform: translateX(5px); }
}

/* ── Use Cases ── */
.use-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.use-grid article { min-height: 120px; padding: 20px; text-align: center; }
.use-icon { font-size: 1.8rem; margin-bottom: 8px; }
.use-grid strong, .use-grid span { display: block; }
.use-grid strong { font-size: 1.1rem; color: #fff; }
.use-grid span { margin-top: 6px; color: var(--muted); font-size: 0.9rem; }

/* ── FAQ ── */
.faq details { padding: 0; overflow: hidden; }
.faq details + details { margin-top: 10px; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-weight: 800; font-size: 1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { display: none; content: ''; }
.faq-arrow {
  flex-shrink: 0; transition: transform 0.3s;
  color: var(--green);
}
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-body { padding: 0 22px 18px; }
.faq details:hover { border-color: rgba(110, 227, 40, 0.35); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 22, 18, 0.9);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 227, 40, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.testimonial-stars {
  color: #f6d042;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.star-empty {
  color: #3a443c;
}
.testimonial-card blockquote {
  margin: 0;
  flex-grow: 1;
}
.testimonial-card blockquote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(110, 227, 40, 0.1);
}
.author-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(110, 227, 40, 0.2), rgba(50, 201, 20, 0.35));
  border: 1px solid rgba(110, 227, 40, 0.3);
  color: var(--green);
  font-weight: 900;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-info strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}
.author-info span {
  font-size: 0.76rem;
  color: var(--muted);
}
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(110, 227, 40, 0.08);
  border: 1px solid rgba(110, 227, 40, 0.18);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  width: fit-content;
}
.testimonials-summary {
  margin-top: 28px;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(110, 227, 40, 0.06), rgba(50, 201, 20, 0.03));
  border: 1px solid rgba(110, 227, 40, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.summary-stars {
  color: #f6d042;
  font-size: 1.3rem;
  letter-spacing: 3px;
}
.testimonials-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.testimonials-summary strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-summary {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ── Video Showcase ── */
.video-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .video-stack {
    grid-template-columns: 1fr;
  }
}
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 22, 18, 0.9);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 227, 40, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0d0b;
}
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 6, 0.35);
  transition: background 0.3s;
}
.video-card:hover .video-play-overlay {
  background: rgba(5, 8, 6, 0.2);
}
.play-btn-circle {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(110, 227, 40, 0.9);
  color: #071007;
  box-shadow:
    0 0 0 8px rgba(110, 227, 40, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow:
    0 0 0 12px rgba(110, 227, 40, 0.2),
    0 12px 40px rgba(50, 201, 20, 0.3);
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.video-duration:empty { display: none; }

.video-card-info {
  padding: 18px 22px;
  border-top: 1px solid rgba(110, 227, 40, 0.1);
}
.video-card-info h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.video-card-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}
.video-modal-content {
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease;
}
.video-modal.is-open .video-modal-content {
  transform: scale(1) translateY(0);
}
.video-modal-player {
  width: 100%;
  display: block;
  background: #000;
  border-radius: 14px;
  outline: none;
  max-height: 85vh;
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.video-modal-close:hover {
  background: rgba(110, 227, 40, 0.8);
  color: #071007;
  transform: scale(1.1);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(110, 227, 40, 0.15);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 48px) 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  filter: brightness(1.1);
}
.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-info h4,
.footer-links h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-info ul,
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-info li,
.footer-links li {
  padding: 4px 0;
  font-size: 0.85rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-shipping {
  margin: 12px 0 0;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(110, 227, 40, 0.08);
  border: 1px solid rgba(110, 227, 40, 0.2);
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-block;
}
.footer-bottom {
  border-top: 1px solid rgba(110, 227, 40, 0.1);
  text-align: center;
  padding: 18px 16px;
}
.footer-bottom p {
  margin: 0;
  color: #6b756a;
  font-size: 0.78rem;
}

/* ── Floating Order ── */
.floating-order {
  position: fixed; right: 22px; top: 80px; z-index: 40;
  width: min(372px, calc(100vw - 32px));
}
.order-toggle { display: none; }

.order-form {
  max-height: calc(100dvh - 100px); overflow-y: auto;
  border: 1px solid rgba(110, 227, 40, 0.25);
  border-radius: var(--radius); padding: 22px;
  color: var(--ink);
  background: rgba(12, 16, 13, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}
.form-head h2 { font-size: 1.35rem; }
.optional { color: var(--muted); font-weight: 400; }
.form-row { display: flex; gap: 12px; }
.form-row label { flex: 1; }

label {
  display: grid; gap: 6px; margin-top: 10px;
  color: #eef5eb; font-size: 0.85rem; font-weight: 700;
}
input, select, textarea {
  width: 100%; border: 1px solid #3a443c; border-radius: 8px;
  padding: 10px 12px; color: #f5faf2; background: #080c09;
  font: inherit; font-size: 0.92rem;
  transition: border-color 0.2s, outline 0.2s;
}
input::placeholder, textarea::placeholder { color: #7d877d; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(110, 227, 40, 0.25);
  border-color: var(--green-strong);
}
textarea { resize: vertical; }

.submit-btn {
  margin-top: 16px; min-height: 50px;
  font-size: 0.95rem;
}

.privacy-note {
  margin: 10px 0 0; color: var(--muted); font-size: 0.75rem;
}

/* ── Form Divider & Chat Button ── */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(110, 227, 40, 0.15);
}
.form-divider span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chat-btn {
  display: flex;
  min-height: 46px;
  font-size: 0.88rem;
  color: var(--green) !important;
  border: 1px solid rgba(110, 227, 40, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.chat-btn:hover {
  background: rgba(110, 227, 40, 0.1);
  border-color: rgba(110, 227, 40, 0.5);
}
.chat-btn .btn-icon {
  color: var(--green);
}

/* ── Animations ── */
.animate-in {
  opacity: 0; transform: translateY(20px);
  animation: fade-in-up 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }

@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .proof-band, .version-grid, .gallery-grid, .use-grid { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    order: 2;
    padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
    border-right: 0;
    border-top: 1px solid rgba(110, 227, 40, 0.1);
  }
  .hero-media {
    order: 1;
    min-height: 340px;
    max-height: 420px;
  }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 14px; }
  .brand-logo { height: 30px; }
  .header-cta { display: none; }

  .page-shell { width: min(100% - 20px, 720px); padding-bottom: 120px; }
  .section { padding: 48px 0; }

  .hero-media { min-height: 280px; max-height: 340px; }
  .hero-copy { padding: 20px 16px; }
  .hero .eyebrow { margin-bottom: 6px; font-size: 0.66rem; }
  .hero-lead { display: none; }
  .hero-actions { margin-top: 10px; }
  h1 { font-size: clamp(1.5rem, 6.5vw, 2.1rem); line-height: 1.14; }

  .trust-chips { gap: 6px; margin-top: 16px; }
  .chip { padding: 5px 10px; font-size: 0.72rem; }

  .floating-order {
    right: 12px; top: auto; bottom: 12px; left: 12px; width: auto;
  }
  .order-toggle {
    display: flex; width: 100%;
    align-items: center; justify-content: space-between;
    border: 0; border-radius: 10px 10px 0 0;
    padding: 14px 18px; color: #071007;
    background: var(--green);
    font: inherit; font-weight: 900; font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 -4px 20px rgba(50, 201, 20, 0.3);
    animation: pulse-glow 2.5s ease-in-out infinite;
  }
  .toggle-content { display: flex; align-items: center; gap: 8px; }
  .toggle-arrow { transition: transform 0.3s; display: flex; }
  .floating-order.is-open .toggle-arrow { transform: rotate(180deg); }
  .wa-icon { flex-shrink: 0; }

  .order-form {
    display: none; max-height: 68dvh; overflow-y: auto;
    border-radius: 0 0 10px 10px;
    animation: slide-up 0.3s ease;
  }
  .floating-order.is-open .order-form { display: block; }

  @keyframes slide-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 460px) {
  h1 { font-size: 1.45rem; }
  .hero-actions .button { width: 100%; }
  .use-grid { grid-template-columns: 1fr; }
}
