/* ── Theme tokens ─────────────────────────────────────────────────────────── */
:root {
  --dur: 0.125s; /* snappy micro-interactions: hover, focus, press, toggles */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-theme: 0.2s; /* full-page light/dark crossfade — a touch smoother */
  --enter: 0.5s; /* on-load entrance reveals */
  --enter-ease: cubic-bezier(0.16, 1, 0.3, 1); /* soft ease-out */
}
:root,
[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f4f7f0;
  --surface: #ffffff;
  --input-bg: #ffffff;
  --text: #0a0a0a;
  --muted: #5c6b58;
  --border: #e3e8df;
  --brand: #57bf05; /* Halila green */
  --brand-strong: #4aa004; /* darker green — hover (light mode) */
  --brand-soft: rgba(87, 191, 5, 0.12);
  --on-brand: #07120a; /* text on green buttons */
  --ring: rgba(87, 191, 5, 0.32);
  --shadow: 0 22px 55px -24px rgba(10, 25, 5, 0.28);
  --glow-1: rgba(87, 191, 5, 0.18);
  --glow-2: rgba(87, 191, 5, 0.07);
}

[data-theme="dark"] {
  --bg: #0a0c07;
  --bg-soft: #11140c;
  --surface: #14170e;
  --input-bg: #0d100a;
  --text: #ffffff;
  --muted: #9aa994;
  --border: #272d20;
  --brand: #6fd31c; /* lighter green for dark bg */
  --brand-strong: #7fe22c;
  --brand-soft: rgba(111, 211, 28, 0.14);
  --on-brand: #07120a;
  --ring: rgba(111, 211, 28, 0.36);
  --shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.75);
  --glow-1: rgba(111, 211, 28, 0.22);
  --glow-2: rgba(111, 211, 28, 0.09);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--dur-theme) ease, color var(--dur-theme) ease;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}
.accent {
  color: var(--brand);
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand__logo {
  height: 36px;
  width: auto;
  display: block;
}
[data-theme="light"] .brand__logo--dark {
  display: none;
}
[data-theme="dark"] .brand__logo--light {
  display: none;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

/* Language switcher */
.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.lang__btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 11px;
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
}
.lang__btn + .lang__btn {
  border-left: 1px solid var(--border);
}
.lang__btn:hover {
  color: var(--text);
}
.lang__btn.is-active {
  background: var(--brand);
  color: var(--on-brand);
}

/* Theme toggle */
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background var(--dur), border-color var(--dur), color var(--dur),
    transform var(--dur);
}
.icon-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.icon-btn:active {
  transform: translateY(1px);
}
[data-theme="light"] .icon--sun {
  display: none;
}
[data-theme="dark"] .icon--moon {
  display: none;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 96px) 0 clamp(56px, 10vw, 120px);
  background: radial-gradient(
      1100px 560px at 82% -8%,
      var(--glow-1),
      transparent 60%
    ),
    radial-gradient(820px 460px at -8% 18%, var(--glow-2), transparent 58%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  padding: 6px 13px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 18px 0 14px;
}
.lead {
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  color: var(--muted);
  max-width: 46ch;
}
.lead strong {
  color: var(--text);
}
.ticks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 11px;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--on-brand);
  background: var(--brand);
  border-radius: 999px;
}

/* ── Card / Form ──────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}
.card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.card__sub {
  margin: 4px 0 20px;
  color: var(--muted);
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.field label span {
  color: var(--brand);
}
.field input {
  width: 100%;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field input::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
}
.field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring);
}
.field input.invalid {
  border-color: #e5484d;
}
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  resize: vertical;
  min-height: 84px;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
}
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring);
}
.field textarea.invalid {
  border-color: #e5484d;
}
.error {
  display: block;
  min-height: 1em;
  margin-top: 5px;
  font-size: 0.8rem;
  color: #e5484d;
}

/* Honeypot — visually hidden */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  --h: 50px;
  cursor: pointer;
  border: none;
  border-radius: 11px;
  font-weight: 800;
  font-size: 1rem;
  font-family: inherit;
  height: var(--h);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--dur), background var(--dur), opacity var(--dur),
    border-color var(--dur);
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--brand);
  color: var(--on-brand);
}
.btn--primary:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}
.btn--block {
  width: 100%;
  margin-top: 6px;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn--sm {
  --h: 40px;
  font-size: 0.9rem;
  padding: 0 16px;
}
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid color-mix(in srgb, var(--on-brand) 40%, transparent);
  border-top-color: var(--on-brand);
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner {
  display: inline-block;
}
.btn.is-loading .btn__label {
  opacity: 0.85;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ── Success state ────────────────────────────────────────────────────────── */
.success {
  text-align: center;
  padding: 18px 6px 6px;
}
.success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--on-brand);
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px var(--brand);
}
.success h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}
.success p {
  color: var(--muted);
  margin: 0 0 18px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__copy {
    order: 1;
  }
  .card {
    order: 2;
  }
}

@media (max-width: 560px) {
  .nav__cta {
    display: none; /* form is right below — keep the nav uncluttered */
  }
  .brand__logo {
    height: 30px;
  }
}

/* ── Entrance animations ──────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero copy + form card fade up on load, gently staggered */
.hero__copy > *,
.card {
  animation: fadeInUp var(--enter) var(--enter-ease) both;
}
.hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.19s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.26s; }
.card { animation-delay: 0.18s; }

.ticks li {
  animation: fadeInUp var(--enter) var(--enter-ease) both;
}
.ticks li:nth-child(1) { animation-delay: 0.3s; }
.ticks li:nth-child(2) { animation-delay: 0.38s; }
.ticks li:nth-child(3) { animation-delay: 0.46s; }

/* Success checkmark pops in with a subtle overshoot (re-triggered from JS) */
.success__icon {
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ── Nav menu + mobile burger ─────────────────────────────────────────────── */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__menu a {
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--dur), background var(--dur);
}
.nav__menu a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav__menu a.is-active {
  color: var(--brand);
}
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav__burger i {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background var(--dur);
}
.nav__burger i::before,
.nav__burger i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--dur), top var(--dur);
}
.nav__burger i::before {
  top: -6px;
}
.nav__burger i::after {
  top: 6px;
}
.nav.is-open .nav__burger i {
  background: transparent;
}
.nav.is-open .nav__burger i::before {
  top: 0;
  transform: rotate(45deg);
}
.nav.is-open .nav__burger i::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .nav__burger {
    display: inline-flex;
  }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur), transform var(--dur);
  }
  .nav.is-open .nav__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__menu a {
    padding: 12px;
    font-size: 1rem;
  }
}

/* ── Page sections ────────────────────────────────────────────────────────── */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--soft {
  background: var(--bg-soft);
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}
.section__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}
.center {
  text-align: center;
}
.mt-24 {
  margin-top: 24px;
}

/* Sub-page hero */
.page-hero {
  padding: clamp(48px, 8vw, 90px) 0 clamp(28px, 5vw, 40px);
  text-align: center;
  background: radial-gradient(900px 420px at 50% -20%, var(--glow-1), transparent 60%),
    var(--bg);
}
.page-hero .eyebrow {
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 52ch;
  margin: 0 auto;
}
.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  animation: fadeInUp var(--enter) var(--enter-ease) both;
}
.page-hero h1 {
  animation-delay: 0.06s;
}
.page-hero p {
  animation-delay: 0.12s;
}

/* Grid + cards */
.grid {
  display: grid;
  gap: 18px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.fcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.fcard:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
  box-shadow: var(--shadow);
}
.fcard__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.fcard__icon svg {
  width: 24px;
  height: 24px;
}
.fcard h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.fcard p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.stat__label {
  color: var(--muted);
  margin-top: 4px;
}

/* Prose */
.prose {
  max-width: 70ch;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
}
.prose p {
  margin: 0 0 16px;
}

/* CTA band */
.cta-band__inner {
  background: var(--brand);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--on-brand);
}
.cta-band p {
  margin: 0 0 22px;
  color: color-mix(in srgb, var(--on-brand) 78%, transparent);
  font-size: 1.05rem;
}
.cta-band .btn {
  background: #07120a;
  color: #fff;
}
.cta-band .btn:hover {
  background: #000;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 16px;
}
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-list .ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: none;
}
.info-list .ico svg {
  width: 20px;
  height: 20px;
}
.info-list .k {
  font-size: 0.82rem;
  color: var(--muted);
}
.info-list .v {
  font-weight: 600;
}
.info-list a.v {
  color: var(--text);
  text-decoration: none;
}
.info-list a.v:hover {
  color: var(--brand);
}

/* Footer nav */
.footer__nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--dur);
}
.footer__nav a:hover {
  color: var(--brand);
}

/* Footer social icons + phone */
.footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer__social .soc {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: color var(--dur), border-color var(--dur), background var(--dur),
    transform var(--dur);
}
.footer__social .soc svg {
  width: 20px;
  height: 20px;
}
.footer__social .soc:hover {
  color: var(--on-brand);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.footer__social .soc:active {
  transform: scale(0.94);
}
.footer__phone {
  margin: 0 0 6px;
}
.footer__phone a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--dur);
}
.footer__phone a:hover {
  color: var(--brand);
}

/* ── Landing hero: product image + CTA buttons ────────────────────────────── */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
@media (max-width: 820px) {
  .hero__media {
    order: 2;
  }
}

/* ── Product card (image on top, text below) ──────────────────────────────── */
.product {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.product:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
  box-shadow: var(--shadow);
}
.product__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}
.product__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}
.product__body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.product__body .btn {
  margin-top: auto;
}

/* ── YouTube review videos ────────────────────────────────────────────────── */
/* Each video shows a thumbnail + play button, and loads the real YouTube       */
/* player only when clicked (faster page load). See script.js -> "review videos".*/
.ytgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .ytgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .ytgrid {
    grid-template-columns: 1fr;
  }
}
.ytvideo {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
}
.ytvideo__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ytvideo__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--dur);
}
.ytvideo:hover .ytvideo__play {
  background: rgba(0, 0, 0, 0.4);
}
.ytvideo__play b {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  display: grid;
  place-items: center;
}
.ytvideo__play b::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid currentColor;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.ytvideo__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.ytvideo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Shown when a video has no ID yet (data-yt="VIDEO_ID") */
.ytvideo--empty {
  background: var(--bg-soft);
  border-style: dashed;
  display: grid;
  place-items: center;
  cursor: default;
}
.ytvideo--empty .ph {
  text-align: center;
  color: var(--muted);
  padding: 18px;
  font-size: 0.9rem;
}
.ytvideo--empty .ph b {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

/* Narrow centered block (used for the lead form section on the landing) */
.narrow {
  max-width: 560px;
  margin-inline: auto;
}

/* Scroll reveal (only when JS is active, so no-JS users still see content) */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--enter) var(--enter-ease),
    transform var(--enter) var(--enter-ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Reserve header height so the JS-injected header doesn't shift the page ── */
#site-header {
  display: block;
  min-height: 68px;
}

/* ── Product price + rating ───────────────────────────────────────────────── */
.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.stars {
  color: #f5a623; /* star rating colour */
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.product__price {
  font-weight: 800;
  color: var(--text);
}
.product__price .price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 6px;
}

/* ── Sales offer card (a product card with a discount badge) ───────────────── */
.offer {
  position: relative;
}
.offer__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 11px;
  border-radius: 999px;
}

/* ── Payment / promo strip ────────────────────────────────────────────────── */
.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
}
.promo__text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.promo__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: none;
}
.promo__icon svg {
  width: 26px;
  height: 26px;
}
.promo h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
}
.promo p {
  margin: 0;
  color: var(--muted);
}

/* ── Legal / privacy text ─────────────────────────────────────────────────── */
.legal {
  max-width: 75ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}
.legal h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
  color: var(--text);
}
.legal p {
  margin: 0 0 14px;
}

/* ── Header entrance + tactile press feedback on every control ────────────── */
header.nav {
  animation: navFade 0.3s var(--enter-ease) both;
}
@keyframes navFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Every clickable control gives a small "press" when tapped/clicked */
.btn:active {
  transform: translateY(1px) scale(0.985);
}
.icon-btn:active,
.nav__burger:active,
.lang__btn:active {
  transform: scale(0.92);
}
.lang__btn {
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.nav__menu a {
  transition: color var(--dur), background var(--dur), transform var(--dur);
}
.nav__menu a:active {
  transform: scale(0.96);
}
.info-list a.v,
.bcard__body a,
.footer__nav a {
  transition: color var(--dur), transform var(--dur);
}
.info-list a.v:active,
.bcard__body a:active,
.footer__nav a:active {
  transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  header.nav {
    animation: none !important;
  }
}

/* Callback section headline (hero-sized title inside a normal section) */
.callback-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 14px 0 14px;
}

/* ══════════════════════════════════════════════════════════════════════════
   CREATIVE FX — shared across every page (built by script.js -> "fx")
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Scroll-progress bar (top of viewport) ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #57bf00, var(--brand-strong));
  box-shadow: 0 0 12px var(--glow-1);
  pointer-events: none;
}

/* ── Custom cursor: a #57bf00 dot + a soft trailing ring ──────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: transform;
}
.cursor-dot {
  width: 9px;
  height: 9px;
  background: #57bf00;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(87, 191, 0, 0.7);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 2px solid color-mix(in srgb, #57bf00 75%, transparent);
}
body.cursor-on .cursor-dot {
  opacity: 1;
}
body.cursor-on .cursor-ring {
  opacity: 0.65;
}
body.cursor-press .cursor-ring {
  background: rgba(87, 191, 0, 0.14);
  border-color: #57bf00;
}
/* Only when the follower cursor is active, keep links from showing the
   native pointer flicker is unnecessary — native cursor stays for usability. */

/* ── Floating leaves drifting across the screen ───────────────────────────── */
.leaves {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}
.leaf {
  position: absolute;
  left: 0;
  color: var(--brand);
  opacity: var(--op, 0.4);
  filter: drop-shadow(0 4px 6px rgba(20, 60, 10, 0.12));
  will-change: transform;
}
.leaf svg {
  display: block;
  width: var(--size, 20px);
  height: var(--size, 20px);
}
.leaf--ltr {
  animation: leafLtr var(--dur, 22s) linear var(--delay, 0s) infinite;
}
.leaf--rtl {
  animation: leafRtl var(--dur, 22s) linear var(--delay, 0s) infinite;
}
@keyframes leafLtr {
  0% {
    transform: translate(-12vw, 0) rotate(0deg);
  }
  50% {
    transform: translate(50vw, 26px) rotate(200deg);
  }
  100% {
    transform: translate(114vw, -14px) rotate(400deg);
  }
}
@keyframes leafRtl {
  0% {
    transform: translate(114vw, 0) rotate(0deg);
  }
  50% {
    transform: translate(50vw, 30px) rotate(-200deg);
  }
  100% {
    transform: translate(-12vw, -16px) rotate(-400deg);
  }
}

/* ── Hero image: gentle idle float (scroll scrub is applied to the <img>) ──── */
.hero__media {
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero__media img {
  transition: box-shadow var(--dur);
  will-change: transform;
}

/* ── Product photos are transparent cutouts → show them whole, not cropped ── */
.product__img--contain {
  object-fit: contain;
  padding: 18px;
  background: radial-gradient(
      120% 90% at 50% 18%,
      var(--brand-soft),
      transparent 60%
    ),
    var(--bg-soft);
  transition: transform 0.4s var(--enter-ease);
}
.product:hover .product__img--contain {
  transform: scale(1.06) translateY(-4px);
}

/* ── Tariff / package cards (Tariflar page) ───────────────────────────────── */
.tariff {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--dur), border-color var(--dur),
    box-shadow var(--dur);
}
.tariff:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--shadow);
}
.tariff--featured {
  border-color: var(--brand);
  box-shadow: 0 22px 55px -26px var(--brand);
}
.tariff__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px var(--brand);
}
.tariff__media {
  overflow: hidden;
  background: #29b300;
}
.tariff__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--enter-ease);
}
.tariff:hover .tariff__media img {
  transform: scale(1.05);
}
.tariff__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tariff__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.tariff__head h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tariff__units {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tariff__desc {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.tariff__inc {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.tariff__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 9px;
}
.tariff__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  font-weight: 500;
}
.tariff__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--on-brand);
  background: var(--brand);
  border-radius: 999px;
}
.tariff__body .btn {
  margin-top: auto;
}

/* ── A few "everything is alive" touches ──────────────────────────────────── */
.eyebrow {
  transition: transform var(--dur);
}
.section__head:hover .eyebrow {
  transform: translateY(-2px);
}
.fcard__icon {
  transition: transform 0.4s var(--enter-ease), background var(--dur);
}
.fcard:hover .fcard__icon {
  transform: rotate(-8deg) scale(1.08);
}
/* Directional reveal variants (add data via class in HTML) */
.js .reveal--left {
  transform: translateX(-28px);
}
.js .reveal--right {
  transform: translateX(28px);
}
.js .reveal--left.is-visible,
.js .reveal--right.is-visible {
  transform: none;
}

/* ── Reduced motion: kill the lively bits, keep the site usable ───────────── */
@media (prefers-reduced-motion: reduce) {
  .leaves,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  .hero__media {
    animation: none !important;
  }
}

/* Hide follower cursor on touch / coarse pointers (also guarded in JS) */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}
