:root {
  --ink: #0b1a12;
  --muted: #4c5d51;
  --bg: #f4efe5;
  --surface: #fdfbf6;
  --primary: #175c33;
  --primary-strong: #0d4a30;
  --accent: #c9a24d;
  --shadow: 0 20px 60px rgba(11, 26, 18, 0.12);
  --radius: 16px;
  --font: "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Playfair Display", "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #0b1a12;
  line-height: 1.6;
}

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

html { scroll-behavior: smooth; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes popStar {
  0% { transform: translateY(-1px) scale(0.95); }
  70% { transform: translateY(-1px) scale(1.12); }
  100% { transform: translateY(-1px) scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes revealMask {
  0% { clip-path: inset(0 0 100% 0); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -18px, 0) scale(1.05); }
  100% { transform: translate3d(-14px, 14px, 0) scale(0.98); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.4; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes dotsPulse {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

@keyframes swipeHint {
  0% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.floating-accent {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(23, 92, 51, 0.15), rgba(201, 162, 77, 0.08));
  filter: blur(40px);
  opacity: 0.26;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  animation: fadeUp 0.85s ease forwards;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(246, 242, 234, 0.9);
  border-bottom: 1px solid rgba(190, 200, 192, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  border-radius: 12px;
  border: 1px solid rgba(23, 92, 51, 0.2);
  background: rgba(23, 92, 51, 0.08);
  overflow: hidden;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.45rem 0.65rem;
  font-weight: 800;
  color: var(--primary-strong);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:active { transform: scale(0.96); }

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), #d9b461);
  color: #2f250f;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.25);
}

.lang-switch {
  display: inline-flex;
  border-radius: 12px;
  border: 1px solid rgba(23, 92, 51, 0.2);
  background: rgba(23, 92, 51, 0.08);
  overflow: hidden;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.45rem 0.65rem;
  font-weight: 800;
  color: var(--primary-strong);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), #d9b461);
  color: #2f250f;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}

.brand .mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav { margin-left: auto; }

nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
  background: rgba(31, 122, 67, 0.12);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.cta-link .btn { padding: 0.5rem 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.05rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.35s ease, background-position 0.4s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d9b461);
  color: #2f250f;
  box-shadow: 0 14px 36px rgba(201, 162, 77, 0.35);
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.btn-ghost {
  background: rgba(23, 92, 51, 0.12);
  color: var(--primary-strong);
  border: 1px solid rgba(23, 92, 51, 0.2);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f3e8d1;
  border: 1px solid rgba(201, 162, 77, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #f2edde;
  box-shadow: 0 14px 36px rgba(11, 26, 18, 0.25);
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.btn:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
}
.btn:active { transform: translateY(0) scale(0.98); }

.ripple-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.55s ease-out;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(31, 122, 67, 0.2);
  background: rgba(11, 26, 18, 0.06);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  color: var(--primary-strong);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-toggle:active { transform: scale(0.98); }

.hero {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 3rem;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 35%), #0b1a12;
  color: #f2edde;
  animation: fadeUp 0.9s ease both;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.5rem;
}

.lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 60ch;
}
.hero .lead { color: #d9d0c2; }

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }

.chip {
  padding: 0.5rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 26, 18, 0.18);
  color: #e7e0d1;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(145deg, #0e2217, #0a1a12);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 77, 0.28);
  overflow: hidden;
  color: #f1e7d5;
}

.hero-photo {
  height: 200px;
  background: linear-gradient(135deg, rgba(10, 20, 14, 0.65), rgba(10, 30, 20, 0.4)), url('image.png') center/cover;
}

.hero-card-body { padding: 1.25rem; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.stats-bar div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: 12px;
  padding: 0.75rem;
}

.stats-bar strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent);
  font-family: var(--serif);
  letter-spacing: 0.01em;
}
.stats-bar span { color: #d9d0c2; font-size: 0.95rem; }

.strip {
  border-top: 1px solid rgba(13, 26, 18, 0.28);
  border-bottom: 1px solid rgba(13, 26, 18, 0.28);
  background: #0b1a12;
  color: #f3ecdd;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 700;
  animation: fadeUp 0.9s ease 0.1s both;
}

.strip-grid strong { color: var(--accent); font-family: var(--serif); letter-spacing: 0.01em; }
.strip-grid span { display: block; color: #d6cebf; font-weight: 600; }

section { padding: clamp(2rem, 3vw, 3.25rem) 0; }

.promo-band {
  margin: 0.5rem 0 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 77, 0.42);
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 77, 0.18), transparent 35%), linear-gradient(135deg, #0f2217, #0a1811 60%, #102c1b);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  color: #f3e8d1;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  flex-wrap: wrap;
}

.promo-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f6eedf;
}

.promo-sub {
  margin: 0;
  color: #d9cfbf;
  font-weight: 600;
}

.code-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 77, 0.65);
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.9), rgba(201, 162, 77, 0.7));
  color: #2f250f;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

main {
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 162, 77, 0.08), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(23, 92, 51, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(247, 242, 232, 0.92) 0%, rgba(238, 229, 216, 0.9) 45%, rgba(16, 37, 25, 0.08) 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 { color: #0b1a12; }
.section-head p { margin: 0.35rem 0 0; color: #304539; max-width: 60ch; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  background: #fef7e3;
  color: #0f3a22;
  border: 1px solid #d2b168;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.25);
  font-weight: 700;
}
.hero .pill {
  background: rgba(201, 162, 77, 0.18);
  border: 1px solid rgba(201, 162, 77, 0.35);
  color: #f3e8d1;
}
.promo-pill {
  background: linear-gradient(135deg, #ffefb0, #ffd566);
  color: #2f250f;
  border: 1px solid #f3c23c;
  box-shadow: 0 12px 28px rgba(201, 162, 77, 0.35);
}

.ebook-feature {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 162, 77, 0.22), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(23, 92, 51, 0.22), transparent 34%),
    linear-gradient(135deg, #f9f4e8, #f2e8d4);
  border-bottom: 1px solid rgba(23, 92, 51, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.feature-media {
  max-width: 420px;
  justify-self: center;
  position: relative;
}

.feature-media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 77, 0.4);
  box-shadow: 0 24px 58px rgba(11, 26, 18, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 18px;
  background: radial-gradient(circle at 40% 30%, rgba(23, 92, 51, 0.14), transparent 55%);
  filter: blur(18px);
  z-index: -1;
}

.feature-media:hover img,
.feature-media:focus-within img {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 32px 72px rgba(11, 26, 18, 0.28);
}

.feature-title { letter-spacing: -0.01em; }

.feature-copy h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.feature-copy .muted { color: #2f3f32; }

.feature-copy .list {
  margin-top: 0.6rem;
  color: #304539;
}

.feature-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.btn.glow {
  box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.45);
  animation: glowPulse 2.4s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.35); }
  60% { box-shadow: 0 0 0 16px rgba(201, 162, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 77, 0); }
}

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
#ebooksGrid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 280px));
  justify-content: start;
}

.card {
  background: rgba(253, 251, 246, 0.72);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.35rem);
  box-shadow: 0 20px 50px rgba(11, 26, 18, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.glass {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 64px rgba(11, 26, 18, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: rgba(15, 40, 25, 0.08);
  font-weight: 700;
  color: var(--primary-strong);
}

.badge.accent {
  background: rgba(23, 92, 51, 0.16);
  color: #123b25;
}

.list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li { margin: 0.35rem 0; }
.muted { color: var(--muted); }

.skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #e9e3d5 25%, #f4efe5 37%, #e9e3d5 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease-in-out infinite;
  border-radius: 12px;
}

.skeleton-line { height: 12px; margin: 0.35rem 0; border-radius: 8px; }
.skeleton-pill { height: 22px; width: 120px; border-radius: 999px; margin: 0.25rem 0; }
.skeleton-block { height: 72px; border-radius: 14px; }

.catalog-grid { display: grid; gap: 2rem; }
.catalog-grid { overflow: visible; }
.catalog-group { display: grid; gap: 0.75rem; }
.group-head h3 { margin: 0; }
.group-head p { margin: 0.25rem 0 0; color: var(--muted); }
.catalog-group { animation: fadeUp 0.9s ease 0.15s both; }

.product-card {
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(253, 251, 246, 0.65);
  display: grid;
  gap: 0.5rem;
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.12);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  position: relative;
  transform-origin: center;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-40px) scale(2);
  box-shadow: 0 70px 180px rgba(11, 26, 18, 0.5);
  z-index: 8;
}

.product-card .product-photo {
  cursor: zoom-in;
}
.product-card .product-photo img {
  animation: revealMask 0.8s ease both;
}

.product-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #fff;
  background: #fff;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.product-photo.placeholder {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.product-actions {
  display: grid;
  gap: 0.5rem;
}

.ebook-hero {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.ebook-cover {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(11, 26, 18, 0.18);
  border: 1px solid rgba(201, 162, 77, 0.35);
  animation: fadeUp 0.9s ease 0.05s both;
}

.ebook-cover img { display: block; width: 100%; height: auto; }

.ebook-intro h1 { margin: 0.35rem 0 0.5rem; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.ebook-intro .lead { color: #304539; }
.ebook-intro { animation: fadeUp 0.9s ease 0.1s both; }

.ebook-intro .list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.ebook-intro .list li {
  position: relative;
  padding-left: 1.2rem;
  color: #2e3f32;
  font-weight: 600;
}

.ebook-intro .list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #2f8c4c;
  font-size: 1.1rem;
  line-height: 1;
}

.ebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.ebook-content { padding: clamp(2rem, 4vw, 3rem) 0 3.5rem; }

.ebook-card {
  margin-top: 1rem;
}

.product-card,
.ebook-card {
  will-change: transform;
}

.ebook-card:hover,
.ebook-card:focus-within {
  transform: translateY(-35px) scale(1.85);
  box-shadow: 0 60px 150px rgba(11, 26, 18, 0.45);
  z-index: 8;
}
.ebook-card img {
  animation: revealMask 0.8s ease both;
}
.ebook-cta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: center;
}

.ebook-offer {
  padding: 2rem 0 3rem;
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 77, 0.08), transparent 30%), #f7f2e6;
}

.ebook-offer-card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 24px 64px rgba(11, 26, 18, 0.12);
  border: 1px solid rgba(201, 162, 77, 0.2);
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.9s ease 0.15s both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center;
}

.offer-left h2 {
  margin: 0.4rem 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.offer-right {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
  text-align: right;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: flex-end;
}

.offer-price .price {
  font-size: 2.05rem;
  font-weight: 800;
  color: #d69b2c;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.ebook-offer .btn-primary {
  background: linear-gradient(135deg, #3fa544, #2c8a3a);
  color: #fdfbf6;
  box-shadow: 0 14px 36px rgba(47, 138, 71, 0.32);
  min-width: 180px;
}

.ebook-offer .safety {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .ebook-offer-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 26px 60px rgba(11, 26, 18, 0.14);
  }
}

@media (max-width: 640px) {
  .ebook-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ebook-intro .ebook-actions {
    justify-content: center;
  }
  .ebook-intro .list {
    justify-items: center;
    text-align: left;
  }
  .ebook-cover { max-width: 320px; }
  .ebook-offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .offer-right {
    justify-items: center;
    text-align: center;
  }
  .offer-price {
    justify-content: center;
  }
}

.product-card strong { font-size: 1.05rem; }
.product-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill-small {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 122, 67, 0.1);
  font-weight: 600;
  color: var(--primary-strong);
  font-size: 0.9rem;
}

.hero-bubble {
  background: rgba(253, 251, 246, 0.7);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.1);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.9s ease 0.1s both;
}

#reviews { --reviews-card-height: clamp(520px, 70vh, 640px); }

.reviews-layout { align-items: stretch; }
.reviews-layout > .card {
  height: var(--reviews-card-height);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.reviews-layout .reviews-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 0.25rem;
}

.reviews-layout .review-ticker { margin-top: auto; }

.reviews-layout .card form {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.15rem;
}
.reviews-list {
  display: grid;
  gap: 1rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

#reviews {
  color: var(--ink);
}

.review-card {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(11, 26, 18, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

#reviews .card {
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.review-name { font-weight: 800; font-size: 0.98rem; }
.review-date { color: #7a7c76; font-size: 0.85rem; }
.review-text { margin: 0.35rem 0 0; color: var(--ink); }
.reviews-empty { margin: 0.15rem 0 0; }

#reviews h2 { color: var(--ink); }
#reviews .muted { color: #304539; }
#reviews input,
#reviews textarea {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(209, 213, 207, 0.9);
}

#reviews .btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), #1c7d4b);
  color: #f4f6f4;
  box-shadow: 0 14px 36px rgba(13, 74, 48, 0.32);
}

#reviews .star-input .star {
  border: none;
  background: transparent;
  color: #b6bcb4;
  font-size: 1.4rem;
  padding: 0.2rem;
  transition: color 0.15s ease, transform 0.15s ease;
}

#reviews .star-input .star.active,
#reviews .star-input .star:hover {
  color: #f1c40f;
  transform: translateY(-1px);
  box-shadow: none;
  text-shadow: 0 6px 14px rgba(241, 196, 15, 0.45);
}

#reviews .star-display {
  gap: 0.25rem;
  font-size: 1rem;
}

#reviews .star-display .star-filled { color: #f1c40f; }

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(11, 26, 18, 0.18);
}

.review-card .review-text {
  line-height: 1.7;
}

.review-content {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.review-text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.review-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 36, 24, 0.12);
  background: #f7f5ee;
  flex: 0 0 auto;
  position: relative;
  padding: 0;
  cursor: pointer;
}

.review-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-thumbs {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  flex: 0 0 auto;
}

.review-thumb.more img { filter: brightness(0.75); }

.thumb-count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.review-card.has-photo { cursor: pointer; }

.review-gallery {
  position: fixed;
  inset: 0;
  background: rgba(248, 244, 235, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
  padding: 1rem;
  backdrop-filter: blur(10px) saturate(140%);
}

.review-gallery.open {
  opacity: 1;
  pointer-events: auto;
}

.review-gallery-panel {
  position: relative;
  width: min(92vw, 960px);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.6rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.18);
  backdrop-filter: blur(14px) saturate(130%);
  color: var(--ink);
}

.review-gallery-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  width: auto;
  height: auto;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(11, 26, 18, 0.25);
}

.review-gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-right: 2.2rem;
}

.review-gallery-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.review-gallery-date {
  color: #6f756f;
  font-size: 0.9rem;
}

.review-gallery-stars .star-filled { color: var(--accent); }
.review-gallery-stars .star-empty { color: rgba(39, 58, 45, 0.3); }

.review-gallery-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
  max-height: 20vh;
  overflow: auto;
}

.review-gallery-track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-gallery-slider {
  display: flex;
  gap: 1rem;
}

.review-gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.review-gallery-slide img {
  width: 100%;
  height: clamp(220px, 52vh, 520px);
  object-fit: contain;
  display: block;
  background: transparent;
}

.review-gallery-dots {
  display: flex;
  gap: 0.35rem;
}

.review-gallery-dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 40, 25, 0.18);
}

.review-gallery-dot.active {
  background: #f0d189;
}

.alert.loading {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.loading-dots {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
}

.loading-dots span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  animation: dotsPulse 1s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.3s; }

.input-error {
  border-color: rgba(201, 62, 54, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(201, 62, 54, 0.18) !important;
  animation: shake 0.35s ease;
}

.review-ticker {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(18px) saturate(150%);
}

.ticker-track {
  display: inline-flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  align-items: stretch;
  min-width: 100%;
}

.ticker-track.running {
  animation: tickerMove 60s linear infinite;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  min-width: 260px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 14px 36px rgba(11, 26, 18, 0.08);
  backdrop-filter: blur(22px) saturate(160%);
}

.ticker-item.has-photo { cursor: pointer; }

.ticker-item .review-content {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.ticker-item .review-text {
  margin: 0.35rem 0 0;
}

.ticker-item .review-name { font-weight: 800; display: block; }
.ticker-item .review-date { color: #7a7c76; font-size: 0.85rem; display: block; margin-top: 0.2rem; }
.ticker-item .review-text { margin: 0.35rem 0 0; color: var(--ink); font-size: 0.95rem; line-height: 1.5; }

.review-skeleton {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #e5e1d7;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.08);
}

.review-skeleton .skeleton-line { width: 100%; }
.review-skeleton .skeleton-line.short { width: 55%; }
.review-skeleton .skeleton-pill { width: 96px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.why-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(23, 92, 51, 0.32), rgba(6, 14, 10, 0.94)),
    radial-gradient(circle at 18% 24%, rgba(201, 162, 77, 0.2), transparent 36%),
    radial-gradient(circle at 80% 80%, rgba(23, 92, 51, 0.18), transparent 32%);
  color: #fefaf1;
  border: 1px solid rgba(201, 162, 77, 0.45);
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: rgba(253, 251, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 77, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  width: fit-content;
}

.why-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.why-quote {
  margin: 0.75rem 0 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fefaf1;
}

.why-copy {
  display: grid;
  gap: 0.6rem;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.mini-card {
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(253, 251, 246, 0.08);
  border: 1px solid rgba(201, 162, 77, 0.42);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.mini-label {
  display: block;
  color: rgba(243, 232, 209, 0.78);
  font-weight: 600;
  font-size: 0.9rem;
}

.mini-value {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1rem, 4vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fefaf1;
  white-space: nowrap;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.mini-pill {
  padding: 0.45rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.26), rgba(201, 162, 77, 0.12));
  border: 1px solid rgba(201, 162, 77, 0.45);
  color: #fefaf1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.35rem 0;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-strong);
  font-weight: 800;
}

.why-outro {
  margin: 0.35rem 0 0;
  font-weight: 700;
  color: var(--primary-strong);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 18, 0.74);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
  transition: opacity 0.25s ease;
}

.lightbox.open { display: flex; animation: fadeUp 0.35s ease both; }

.lightbox img {
  max-width: min(940px, 92vw);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0b1a12;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2600;
  pointer-events: none;
}

.toast {
  background: rgba(253, 251, 246, 0.9);
  border: 1px solid rgba(23, 92, 51, 0.22);
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.12);
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-strong);
  min-width: 220px;
  pointer-events: auto;
  animation: fadeUp 0.35s ease both;
}

.toast.error {
  border-color: rgba(201, 62, 54, 0.35);
  color: #7c1d14;
  background: rgba(255, 245, 244, 0.95);
}

.rating-field { margin: 0.5rem 0 0; padding: 0; border: none; }
.rating-field legend { font-weight: 700; margin-bottom: 0.25rem; }
.star-input {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.star-input .star {
  font-size: 1.05rem;
  background: transparent;
  border: 1px solid rgba(23, 92, 51, 0.18);
  color: rgba(11, 26, 18, 0.28);
  border-radius: 12px;
  padding: 0.3rem 0.45rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.star-input .star.active,
.star-input .star:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 92, 51, 0.16);
  border-color: rgba(23, 92, 51, 0.45);
  color: #d4b059;
  animation: popStar 0.18s ease;
}

.star-display { font-weight: 800; letter-spacing: 0.05em; display: inline-flex; gap: 0.15rem; }
.star-display .star-filled { color: #d4b059; }
.star-display .star-empty { color: rgba(11, 26, 18, 0.25); }

.cta-block { background: linear-gradient(135deg, rgba(11, 26, 18, 0.16), rgba(23, 92, 51, 0.1)); }

.cta-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 24px 64px rgba(11, 26, 18, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: grid;
  gap: 0.75rem;
  align-items: center;
  backdrop-filter: blur(12px);
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(166, 177, 170, 0.6);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea { min-height: 120px; resize: vertical; }
label { display: block; font-weight: 700; color: var(--ink); margin-top: 0.25rem; }

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.2);
}

.file-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(209, 213, 207, 0.9);
}

.file-input input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-button {
  background: #ffffff;
  border: 1px solid rgba(117, 125, 120, 0.45);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.file-name {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1 1 auto;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.file-thumb,
.file-add {
  width: clamp(48px, 12vw, 72px);
  height: clamp(48px, 12vw, 72px);
  border-radius: 14px;
  border: 1px solid rgba(170, 176, 170, 0.6);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(7, 16, 12, 0.12);
}

.file-thumb {
  position: relative;
  padding: 0;
  cursor: default;
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.file-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 26, 20, 0.7);
  color: #f6f4ef;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(6, 12, 9, 0.35);
}

.file-remove:hover { background: rgba(12, 18, 14, 0.85); }

.file-add {
  cursor: pointer;
  font-size: 2rem;
  font-weight: 600;
  color: #2e3f33;
  border-style: dashed;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.file-add:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 116, 110, 0.75);
  color: #1e2d23;
}

.file-count {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

.file-count.is-hidden { display: none; }

.file-icon {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: #4c5d51;
  opacity: 0.75;
  pointer-events: none;
}

.file-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.alert {
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(23, 92, 51, 0.12);
  border: 1px solid rgba(23, 92, 51, 0.2);
  color: var(--primary-strong);
  font-weight: 700;
}

.hidden { display: none; }

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(253, 251, 246, 0.65);
  box-shadow: 0 18px 44px rgba(11, 26, 18, 0.1);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.9s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.faq-item h4 {
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item h4::after {
  content: "▾";
  font-size: 0.9rem;
  color: var(--primary-strong);
  transition: transform 0.2s ease;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 1;
}

.faq-item.collapsed p {
  max-height: 0;
  opacity: 0;
}

.faq-item.collapsed h4::after {
  transform: rotate(-90deg);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(11, 26, 18, 0.14);
}

.link-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

#faq h2 { color: #0b1a12; }
#faq .muted { color: #304539; }

#reviews .section-head h2,
#contact .section-head h2 {
  color: #f4efe5;
}
#reviews .section-head p,
#contact .section-head p,
#reviews .muted,
#contact .muted {
  color: #e6dece;
}

footer {
  padding: 2rem 0;
  background: #08140e;
  color: #dfe6df;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.footer-links { display: grid; gap: 0.35rem; }
.footer a { color: #cfe3d5; }
.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  color: #cfe3d5;
  font-weight: 700;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.005em; }
h1, h2, .serif {
  font-family: var(--serif);
  letter-spacing: 0.01em;
  font-weight: 700;
}

h3 { font-family: var(--font); font-weight: 700; }

@media (max-width: 900px) {
  nav ul {
    position: absolute;
    right: 4vw;
    top: 70px;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  nav ul.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .nav-toggle { display: inline-flex; }
  nav .cta-link { width: 100%; }
  nav .cta-link .btn { width: 100%; }
  .section-head { flex-direction: column; }
  .inline-form { grid-template-columns: 1fr; }
  .nav-actions { order: 3; }
  nav { order: 2; }
  .brand { order: 1; }
}

@media (max-width: 640px) {
  .nav { padding: 0.75rem 0; }
  .brand .mark { width: 48px; height: 48px; }
  .container { width: 94vw; }
  .hero { padding: 2rem 0 2.5rem; }
  .hero-card { margin-top: 1rem; }
  .hero-card-body { padding: 1rem; }
  .stats-bar { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .promo-band { margin: 0.5rem 0 1rem; }
  .promo-content { flex-direction: column; align-items: flex-start; }
  .promo-title { font-size: 1.1rem; }
  .review-content { flex-direction: row; }
  .review-thumb { width: 52px; height: 52px; }
  .review-gallery-panel { padding: 1.1rem; }
  .review-gallery-text { max-height: 26vh; }
  #reviews { --reviews-card-height: auto; }
  .reviews-layout > .card { height: auto; }
  .reviews-layout .reviews-list,
  .reviews-layout .card form {
    overflow: visible;
    padding-right: 0;
  }
  .product-card { padding: 0.85rem; scroll-snap-align: start; }
  .product-photo { aspect-ratio: 4 / 3; }
  .catalog-group .grid-3 {
    display: flex;
    overflow-x: auto;
    padding: 0 0.5rem 0.85rem;
    gap: 0.75rem;
    scroll-snap-type: x proximity;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0.5rem;
    position: relative;
  }

  .catalog-group .grid-3.scroll-hint::after {
    content: "wischen ->";
    position: absolute;
    right: 0.9rem;
    bottom: 0.35rem;
    font-size: 0.8rem;
    color: rgba(47, 69, 57, 0.8);
    background: rgba(253, 251, 246, 0.86);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(11, 26, 18, 0.1);
    animation: swipeHint 1.4s ease-in-out infinite;
    pointer-events: none;
  }
  .catalog-group .grid-3 > * {
    flex: 0 0 78vw;
    max-width: 78vw;
    scroll-snap-align: start;
  }
  .catalog-group .grid-3::-webkit-scrollbar { display: none; }
  .catalog-group .grid-3 { -ms-overflow-style: none; scrollbar-width: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual, .why-copy { padding: 0.9rem; }
  .logo-pill { padding: 0.55rem 0.65rem; }
  .logo-pill strong { font-size: 1rem; }
  .why-stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .mini-card { padding: 0.45rem 0.5rem; }
  .mini-value { font-size: clamp(0.85rem, 3.6vw, 0.95rem); font-weight: 800; letter-spacing: -0.01em; }
  .check-list li { padding-left: 1.2rem; }
  footer { padding: 1.5rem 0; }
}

@media (max-width: 640px) {
  .why-stats { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}
