/* =========================================
   ZAKHARIA — landing styles
   ========================================= */

:root {
  /* Brand palette — soft yellow + blue/light-blue, tuned to the PARAFARMACEA logo */
  --green-light:    #BFE0FA;   /* light blue (голубий) */
  --green:          #3F8FD0;   /* blue */
  --green-deep:     #2167AE;   /* deep blue — accents, links */
  --green-darkest:  #163A63;   /* navy */

  /* Dark accents (deep navy for dark surfaces) */
  --ink:            #1C3357;   /* deep navy */
  --ink-2:          #142745;   /* darker navy */
  --ink-soft:       #2A4670;

  /* Surfaces */
  --bg:             #FFFCF1;   /* soft warm yellow-cream */
  --bg-alt:         #EAF3FC;   /* light blue */
  --card-bg:        #FFFFFF;
  --border:         rgba(28, 51, 87, 0.12);
  --border-strong:  rgba(28, 51, 87, 0.22);

  /* Text */
  --text:           #20314C;
  --text-soft:      #586882;
  --text-mute:      #8C99AC;
  --text-on-dark:   #F5F9FE;
  --text-on-dark-mute: rgba(245, 249, 254, 0.68);

  /* Gradients */
  --grad-leaf:      linear-gradient(135deg, #FFE08A 0%, #7FB6E6 55%, #2F84C9 100%);
  --grad-leaf-soft: linear-gradient(135deg, #FFF3CC 0%, #DCEDFB 100%);

  /* Accent yellow (from logo) */
  --yellow:         #FFD23B;
  --yellow-soft:    #FFE9A6;

  /* Typography */
  --font-display:   'Fraunces', 'Times New Roman', serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;

  /* Layout */
  --container:      1240px;
  --gutter:         clamp(20px, 4vw, 48px);
  --radius:         18px;
  --radius-sm:      10px;
  --radius-lg:      28px;

  /* Motion */
  --ease:           cubic-bezier(.2, .8, .2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--ink);
  color: var(--text-on-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 10px 24px -12px rgba(15, 26, 23, 0.4);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(31,46,42,.04); }

.btn--ghost-dark {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(245,242,234,.3);
}
.btn--ghost-dark:hover { border-color: var(--text-on-dark); background: rgba(245,242,234,.08); }

.btn__icon { display: inline-flex; width: 18px; height: 18px; }
.btn__icon svg { width: 100%; height: 100%; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo-img { height: 86px; width: auto; display: block; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__lang {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  letter-spacing: 0.06em;
  transition: all .2s var(--ease);
}
.nav__lang:hover { color: var(--ink); border-color: var(--ink); }

.nav__burger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 11vw, 130px) var(--gutter) clamp(60px, 9vw, 100px);
  background-image: url("assets/images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero__bg { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(31,46,42,.04);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 165, 107, .2);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47,165,107,.2); }
  50% { box-shadow: 0 0 0 6px rgba(47,165,107,.05); }
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-leaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-soft);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== FEATURES ===== */
.features {
  padding: clamp(70px, 9vw, 110px) var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features__inner { max-width: var(--container); margin: 0 auto; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.section-head__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-head__sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.feature {
  background: var(--card-bg);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(31,46,42,.18);
  border-color: var(--green);
}
.feature__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--grad-leaf-soft);
  color: var(--green-deep);
  margin-bottom: 20px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature__text { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* ===== DARK STRIP DIVIDER ===== */
.strip {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 22px var(--gutter);
  overflow: hidden;
}
.strip__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.strip__text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  text-transform: uppercase;
}
.strip__star { color: var(--green-light); margin: 0 12px; }

/* ===== CAT NAV PILLS ===== */
.cat-nav {
  padding: 48px var(--gutter) 0;
}
.cat-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-nav__pill {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: all .2s var(--ease);
}
.cat-nav__pill:hover {
  background: var(--ink);
  color: var(--text-on-dark);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ===== PRODUCTS ===== */
.products { padding: clamp(60px, 8vw, 100px) var(--gutter); }
.products--alt {
  background: var(--ink);
  color: var(--text-on-dark);
}
.products--alt .section-head__kicker { color: var(--green-light); }
.products--alt .section-head__title { color: var(--text-on-dark); }
.products--alt .section-head__sub { color: var(--text-on-dark-mute); }

.products__inner { max-width: var(--container); margin: 0 auto; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== CARD ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -28px rgba(31,46,42,.22);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  overflow: hidden;
}
/* Product image — fixed, never changes on hover */
.card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 10px;
  transition: none;
}
.card:hover .card__img,
.card__media:hover .card__img {
  transform: none;
  filter: none;
  opacity: 1;
}

.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.card__text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.card__meta li { font-weight: 500; }
.card__meta li + li {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 6px;
  padding: 0;
  background: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.card__cta span {
  transition: transform .25s var(--ease);
  margin-left: 8px;
}
.card__cta:hover { color: var(--ink); }
.card__cta:hover span { transform: translateX(4px); }

/* ===== CTA SECTION ===== */
.cta {
  background: var(--ink-2);
  color: var(--text-on-dark);
  padding: clamp(70px, 10vw, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -250px; right: -200px;
  background: radial-gradient(circle, var(--green-deep) 0%, transparent 60%);
  opacity: 0.4;
  filter: blur(40px);
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text-on-dark);
}
.cta__text {
  color: var(--text-on-dark-mute);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 80px) var(--gutter) 32px;
}
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,242,234,.12);
}
.footer__logo { height: 96px; width: auto; margin-bottom: 18px; display: block; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-on-dark-mute);
  max-width: 280px;
  line-height: 1.4;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--text-on-dark); }
.footer__col address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  line-height: 1.7;
}
.footer__col address a:hover { color: var(--green-light); }

.footer__legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__company {
  font-size: 0.78rem;
  color: rgba(245,242,234,.5);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.footer__company strong { color: rgba(245,242,234,.75); font-weight: 600; }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(245,242,234,.4);
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 26, 23, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .25s var(--ease);
}
.modal__panel {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: popIn .35s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--bg-alt); color: var(--ink); }
.modal__close svg { width: 18px; height: 18px; }

.modal__body { padding: 44px 36px 36px; }
.modal__body--success { text-align: center; }
.modal__title {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal__sub { color: var(--text-soft); margin: 0 0 28px; font-size: 0.95rem; }
.modal__check {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  color: var(--green-deep);
}

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form__optional { color: var(--text-mute); font-weight: 400; }
.form__input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form__input:focus {
  outline: none;
  border-color: var(--green-deep);
  background: var(--card-bg);
}
.form__textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F2E2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form__check {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 4px 0 10px;
  cursor: pointer;
}
.form__check input { margin-top: 3px; accent-color: var(--green-deep); }

/* Honeypot — invisible to humans, catches spam bots */
.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== PRICE ===== */
.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.card__price-now {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.card__price-unit { font-size: 0.8rem; color: var(--text-mute); }
.prod__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 6px 0 4px !important;
}

/* ===== ABOUT BLOCK ===== */
.cat-nav__inner--about {
  flex-direction: column;
  text-align: center;
  max-width: 780px;
  gap: 6px;
}
.about__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.about__text {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}
.about__text--bold {
  color: var(--ink-2);
  font-weight: 600;
}

/* ===== PRODUCT MODAL ===== */
.modal__panel--wide { max-width: 900px; }
.prod { display: grid; grid-template-columns: 0.82fr 1.18fr; }
.prod__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.prod__img { width: 100%; height: auto; object-fit: contain; }
.prod__content {
  padding: 48px 40px 40px;
  overflow-y: auto;
  max-height: 90vh;
}
.prod__content h3 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.prod__content h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 22px 0 8px;
}
.prod__content p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.65; margin: 0 0 12px; }
.prod__content em { font-style: italic; color: var(--text); }
.prod__sub {
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute) !important;
  margin-bottom: 16px !important;
}
.prod__warn {
  margin-top: 22px !important;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  color: var(--text-mute) !important;
}

/* ===== FOOTER EXTRAS ===== */
.footer__placeholder { color: var(--text-on-dark-mute); font-style: italic; }
.footer__disclaimer {
  color: var(--text-on-dark-mute);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 760px;
  margin-top: 14px;
}

@media (max-width: 720px) {
  .prod { grid-template-columns: 1fr; }
  .prod__media {
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 22px;
  }
  .prod__content { padding: 32px 24px 28px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__lang { display: none; }
  .nav__actions .btn { padding: 9px 16px; font-size: 0.88rem; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__legal { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .features__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: 1fr; gap: 28px; }

  .modal__body { padding: 36px 24px 28px; }
  .modal__title { font-size: 1.4rem; }

  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
