﻿:root {
  --white: #ffffff;
  --bg: #f6fcf8;
  --bg-soft: #ebf8f1;
  --surface: #ffffff;
  --surface-soft: #f3fbf6;
  --ink: #0f2f23;
  --ink-soft: #2d5b49;
  --ink-muted: #5f7f72;
  --brand-700: #035b52;
  --brand-600: #08795b;
  --brand-500: #0f976c;
  --brand-300: #b0ebcf;
  --brand-200: #d9f6e8;
  --line: #c6e7d7;
  --line-strong: #94cfb5;
  --sale: #24b574;
  --sale-soft: #e4f9ee;
  --warning: #f0b437;
  --warning-soft: #fff4dc;
  --shadow-lg: 0 26px 44px rgba(11, 91, 69, 0.14);
  --shadow-md: 0 14px 28px rgba(11, 91, 69, 0.1);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(92, 199, 150, 0.2), transparent 38%),
    radial-gradient(circle at 88% 2%, rgba(19, 142, 104, 0.14), transparent 30%),
    linear-gradient(150deg, var(--bg) 0%, var(--white) 46%, var(--bg-soft) 100%);
  font-family: "Times New Roman", Times, serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.06;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 121, 91, 0.16);
  backdrop-filter: blur(8px);
}

.sale-ribbon {
  background: linear-gradient(95deg, var(--brand-700), var(--brand-500));
  color: #effff8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
}

.sale-ribbon-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.66rem;
  text-decoration: none;
}

.brand img {
  width: 86px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(4, 98, 69, 0.2));
}

.brand-text {
  font-size: 1.18rem;
  color: var(--brand-700);
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.22rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ecf9f2;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 700;
  padding: 0.3rem 0.58rem;
  white-space: nowrap;
  border-radius: 999px;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--white);
  color: var(--brand-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.56rem;
}

.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.62rem 1.02rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  color: #f2fff9;
  background: linear-gradient(132deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 12px 22px rgba(5, 91, 75, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(5, 91, 75, 0.3);
}

.btn-small {
  min-height: 36px;
  padding-inline: 0.82rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

.btn-secondary {
  background: linear-gradient(128deg, var(--brand-700), #0d6f52);
  box-shadow: 0 11px 22px rgba(4, 84, 64, 0.25);
}

.btn-ghost {
  color: var(--brand-700);
  background: var(--white);
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--brand-500);
  box-shadow: 0 12px 20px rgba(12, 129, 96, 0.12);
}

.hero-showcase {
  padding: 1.4rem 0 1rem;
}

.showcase-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #d9f6e8;
}

.showcase-slides {
  position: relative;
  min-height: clamp(420px, 54vw, 620px);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 0.72s ease, transform 1.2s ease;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(3, 91, 82, 0.8) 0%, rgba(3, 91, 82, 0.44) 37%, rgba(3, 91, 82, 0.16) 66%),
    linear-gradient(to top, rgba(3, 36, 29, 0.54) 0%, rgba(3, 36, 29, 0) 64%);
}

.showcase-slide figcaption {
  position: absolute;
  right: 1rem;
  bottom: 5.3rem;
  z-index: 2;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-700);
  font-size: 0.76rem;
  font-weight: 700;
}

.showcase-overlay {
  position: absolute;
  left: clamp(1rem, 2.7vw, 2.3rem);
  top: clamp(1rem, 2.5vw, 2.2rem);
  z-index: 4;
  width: min(640px, calc(100% - 2rem));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.92rem;
  color: var(--brand-700);
  background: var(--brand-200);
  border: 1px solid var(--line-strong);
  padding: 0.18rem 0.66rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  font-weight: 800;
}

.showcase-overlay .eyebrow {
  color: #ecfff4;
  background: rgba(11, 119, 93, 0.6);
  border-color: rgba(229, 255, 243, 0.4);
}

.showcase-overlay h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4.3vw, 3.2rem);
  max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(6, 42, 35, 0.42);
}

.lead {
  margin-top: 0.92rem;
  color: #e5fff3;
  max-width: 58ch;
  font-size: clamp(0.92rem, 1.08vw, 1.02rem);
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hero-points li {
  color: #e3fcef;
  font-size: 0.9rem;
}

.hero-points strong {
  color: #ffffff;
}

.showcase-controls {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.82rem;
  background: linear-gradient(to top, rgba(2, 46, 38, 0.66), rgba(2, 46, 38, 0));
}

.showcase-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #f3fff8;
  background: rgba(2, 71, 58, 0.44);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(2, 71, 58, 0.66);
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.showcase-dot {
  width: 30px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.showcase-dot.is-active {
  width: 46px;
  background: #ebfff5;
}

.hero-kpi {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.hero-kpi article {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.72rem;
  box-shadow: var(--shadow-md);
}

.kpi-num {
  font-size: 1.12rem;
  color: var(--brand-700);
}

.kpi-label {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.hero {
  padding: 0.4rem 0 1.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.95rem;
}

.hero-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface-soft), var(--surface));
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}

.hero-panel .eyebrow {
  color: var(--brand-700);
  border-color: var(--line-strong);
  background: var(--brand-200);
}

.hero-panel h2 {
  font-size: clamp(1.76rem, 3.3vw, 2.75rem);
  max-width: 18ch;
}

.hero-panel .lead {
  color: var(--ink-soft);
  max-width: 62ch;
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #0c7056, #074f43);
  padding: 1.2rem;
  color: #effff7;
  box-shadow: var(--shadow-lg);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  background: var(--sale);
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}

.hero-card h2 {
  margin: 0.72rem 0 0.54rem;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-card dl {
  margin: 0.86rem 0 0;
  display: grid;
  gap: 0.58rem;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.hero-card dd {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

section {
  padding: 2.6rem 0;
}

.section-head {
  margin-bottom: 1.18rem;
  max-width: 70ch;
}

.section-head .eyebrow {
  margin-bottom: 0.72rem;
  color: var(--brand-700);
  background: var(--brand-200);
  border-color: var(--line-strong);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
}

.sale-gallery {
  padding: 0.8rem 0 0.4rem;
}

.showcase-shell-secondary {
  min-height: clamp(420px, 54vw, 620px);
}

.showcase-static {
  position: absolute;
  inset: 0;
}

.showcase-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-static::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(3, 91, 82, 0.8) 0%, rgba(3, 91, 82, 0.44) 37%, rgba(3, 91, 82, 0.16) 66%),
    linear-gradient(to top, rgba(3, 36, 29, 0.54) 0%, rgba(3, 36, 29, 0) 64%);
}

.showcase-overlay-secondary {
  width: min(640px, calc(100% - 2rem));
}

.showcase-overlay-secondary h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4.3vw, 3.2rem);
  max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(6, 42, 35, 0.42);
}

.showcase-controls-static {
  pointer-events: none;
}

.showcase-controls-static .showcase-arrow,
.showcase-controls-static .showcase-dot {
  pointer-events: none;
}

.showcase-controls-static .showcase-dot {
  display: inline-block;
}
.hot-offers {
  padding-top: 1.2rem;
}

.offers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.offers-head h2 {
  margin: 0.3rem 0 0;
}

.offers-arrows {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
}

.offers-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.offers-arrow:hover,
.offers-arrow:focus-visible {
  background: var(--brand-700);
  border-color: var(--brand-700);
  color: #fff;
  transform: scale(1.08);
  outline: none;
}

.offer-track-wrap {
  overflow: hidden;
}

.offer-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.offer-track::-webkit-scrollbar {
  display: none;
}

.offer-card {
  position: relative;
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 240px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--warning));
}

.offer-card-accent {
  border-color: var(--brand-500);
  background:
    radial-gradient(circle at 95% 5%, rgba(16, 152, 109, 0.13), transparent 50%),
    var(--surface);
}

.offer-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-300);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.offer-card-accent .offer-num {
  color: var(--brand-500);
}

.offer-discount {
  margin: 0;
  color: var(--brand-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0.2rem 0 0.3rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.offer-card > p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.offer-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-600);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.16s;
}

.offer-link:hover {
  color: var(--brand-500);
}

.catalog {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 5% 10%, rgba(41, 182, 128, 0.15), transparent 22%),
    linear-gradient(165deg, var(--surface), #f4fbf7);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.78rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-500);
  box-shadow: 0 20px 30px rgba(8, 121, 91, 0.14);
}

.sale-badge {
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  padding: 0.22rem 0.54rem;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--sale), #119c60);
  color: #ebfff5;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.product-card img {
  border-radius: 11px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.product-card h3 {
  font-size: 1.22rem;
}

.price {
  display: grid;
  gap: 0.18rem;
}

.price-old {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.price-now {
  color: var(--brand-600);
  font-weight: 800;
}

.card-actions {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}

.link-action {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.fast-contact {
  padding-top: 2.1rem;
}

.contact-choice {
  display: grid;
  grid-template-columns: 1fr 3.6rem 1fr;
  align-items: stretch;
  margin-top: 1.8rem;
}

.contact-choice-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-lg);
  color: #effff7;
}

.contact-choice-call {
  background: linear-gradient(150deg, #0b6b52 0%, #053d31 100%);
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-md) var(--radius-lg);
}

.contact-choice-wa {
  background: linear-gradient(150deg, #0f976c 0%, #0b6b52 100%);
  border-radius: var(--radius-md) var(--radius-lg) var(--radius-lg) var(--radius-md);
}

.contact-choice-label {
  margin: 0 0 0.54rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.5);
}

.contact-choice-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: #ffffff;
}

.contact-choice-desc {
  margin: 0 0 1.1rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.contact-choice-card ul {
  margin: 0 0 1.6rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.contact-choice-card li {
  margin-bottom: 0.4rem;
}

.contact-choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, border-color 0.18s;
  margin-top: auto;
}

.contact-choice-btn:hover,
.contact-choice-btn:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-choice-or {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-choice-or span {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Advantages */
.adv-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #053d31 0%, #0b6b52 50%, #0f976c 100%);
  padding: 2.4rem 2.6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.4rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.adv-banner-head .eyebrow {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.adv-banner-head h2 {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.adv-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.adv-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.adv-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* Steps */
.steps {
  padding-top: 1.7rem;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.steps-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  margin: 0 0.4rem;
}

.step-connector {
  display: none;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-500), var(--warning));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.steps-list li::after {
  content: "→";
  position: absolute;
  right: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--brand-300);
  font-weight: 700;
  z-index: 1;
}

.steps-list li:last-child::after {
  display: none;
}

.faq {
  padding-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.58rem;
}

.faq details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.84rem 0.92rem;
  box-shadow: var(--shadow-md);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 0.44rem;
  color: var(--ink-soft);
}

.contacts {
  padding-top: 1.5rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.95rem;
}

.contact-list {
  margin: 0.95rem 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.contact-list li {
  color: var(--ink-soft);
}

.contact-list strong {
  color: var(--ink);
}

.order-box {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.02rem;
  box-shadow: var(--shadow-lg);
}

.order-box h3 {
  font-size: 1.54rem;
  margin-bottom: 0.56rem;
}

.order-box form {
  display: grid;
  gap: 0.64rem;
}

.order-box label {
  display: grid;
  gap: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.order-box input,
.order-box select,
.order-box textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  padding: 0.62rem 0.74rem;
}

.order-box textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  min-height: 1.3em;
  color: var(--brand-600);
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.3rem 0 1.7rem;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.link-action:focus-visible,
.showcase-arrow:focus-visible,
.showcase-dot:focus-visible,
.contact-choice-btn:focus-visible,
.order-box input:focus-visible,
.order-box select:focus-visible,
.order-box textarea:focus-visible {
  outline: 2px solid var(--warning);
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .showcase-shell-secondary {
    min-height: 560px;
  }

  .offer-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-kpi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-choice {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .contact-choice-call {
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-md) var(--radius-md);
  }

  .contact-choice-wa {
    border-radius: var(--radius-md) var(--radius-md) var(--radius-lg) var(--radius-lg);
  }

  .contact-choice-or {
    padding: 0.4rem 0;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .site-header {
    position: static;
  }

 .sale-ribbon-row {
    min-height: 50px;
    padding: 0.35rem 0;
  }

  .header-row {
    min-height: 70px;
    flex-wrap: wrap;
    padding: 0.58rem 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    border-radius: 14px;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .showcase-slides {
    min-height: 560px;
  }

  .showcase-overlay {
    width: calc(100% - 1.4rem);
    left: 0.7rem;
    top: 0.7rem;
  }

  .showcase-overlay h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.45rem);
  }

  .showcase-slide figcaption {
    right: 0.8rem;
    bottom: 4.8rem;
  }
  .showcase-overlay-secondary {
    width: calc(100% - 1.4rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .showcase-shell-secondary {
    min-height: 540px;
  }

  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .offer-card {
    flex: 0 0 calc(100% - 0rem);
  }

  .product-grid,
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .showcase-slides {
    min-height: 540px;
  }

  .showcase-controls {
    padding: 0.62rem;
  }

  .showcase-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .showcase-dot {
    width: 18px;
  }

  .showcase-dot.is-active {
    width: 30px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-kpi {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}








