:root {
  --primary-color: #2A3E58;
  --secondary-color: #3D5A7A;
  --accent-color: #D4AC3A;
  --light-color: #F0ECD8;
  --dark-color: #0F1D2E;
  --gradient-primary: linear-gradient(135deg, #3D5A7A 0%, #2A3E58 100%);
  --hover-color: #1E2F42;
  --background-color: #F9F7F2;
  --text-color: #2A3540;
  --border-color: rgba(42, 62, 88, 0.15);
  --divider-color: rgba(42, 62, 88, 0.08);
  --shadow-color: rgba(15, 29, 46, 0.09);
  --highlight-color: #9A7010;
  --highlight-bg: #FBF5DC;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 15px);
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── PATTERN: chevron/zigzag ── */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    linear-gradient(135deg, rgba(42,62,88,0.04) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, rgba(42,62,88,0.04) 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, rgba(42,62,88,0.04) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(42,62,88,0.04) 25%, transparent 25%);
  background-size: 20px 20px;
}

/* ════════════ HEADER ════════════ */
.site-header {
  padding: 1.2rem 0;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.header-deco { display: none; position: absolute; inset: 0; pointer-events: none; }
.header-deco::before {
  content: '';
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 70px; height: 70px;
  border: 1.5px solid rgba(212,172,58,0.15);
}
.header-deco::after {
  content: '';
  position: absolute;
  right: 9%; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 110px; height: 110px;
  border: 1px solid rgba(212,172,58,0.08);
}
@media (min-width: 768px) { .header-deco { display: block; } }

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 23px);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo-text em { font-style: normal; color: var(--accent-color); }

/* ════════════ MAIN ════════════ */
main { flex: 1; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ════════════ PRODUCT SECTION — DARK BG ════════════ */
.product-section {
  padding: 2.75rem 0 2.25rem;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,172,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.product-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,90,122,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ────── LEFT COL ────── */
.left-col { display: flex; flex-direction: column; gap: 1rem; }

.product-image-wrap {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(212,172,58,0.2);
  border-radius: 28px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,172,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.product-image-wrap picture,
.product-image-wrap img {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 265px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,172,58,0.22);
  border-radius: 50px;
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.guarantee-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent-color); margin-top: 2px; }
.guarantee-block p {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.35;
}
.guarantee-block span {
  display: block;
  font-family: var(--alt-font);
  font-weight: 400;
  font-size: 11.5px;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  letter-spacing: 0;
}

/* Features — 2-col grid, dark bg cards */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,172,58,0.15);
  border-radius: 24px;
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.feature-item:hover { background: rgba(255,255,255,0.1); }
.feature-icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,172,58,0.15);
  border: 1px solid rgba(212,172,58,0.25);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-circle svg { width: 18px; height: 18px; color: var(--accent-color); }
.feature-item-title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
}
.feature-item-desc {
  font-family: var(--alt-font);
  font-size: 11.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.45;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  background: var(--accent-color);
  color: var(--dark-color);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 2px 12px rgba(212,172,58,0.25);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-cart:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}
.btn-cart svg { width: 18px; height: 18px; }

/* ────── RIGHT COL ────── */
.product-info-col { display: flex; flex-direction: column; gap: 1.1rem; position: relative; z-index: 1; }

.product-eyebrow {
  font-family: var(--main-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.product-info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 48px);
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-info-col h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 0;
}
.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 46px);
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: 0.01em;
}
.price-currency {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.product-description {
  font-family: var(--alt-font);
  font-size: clamp(13px, 4vw, 14px);
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}
.product-description + .product-description { margin-top: -0.35rem; }

.advantages-label {
  font-family: var(--main-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.55rem;
}
.advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.advantages-list li:last-child { border-bottom: none; }
.advantages-list li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-color);
}

.cta-highlight {
  background: var(--accent-color);
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  text-align: center;
}
.cta-highlight strong {
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(13px, 4vw, 15px);
  color: var(--dark-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}
.cta-highlight strong em { font-style: normal; text-decoration: underline; }

/* ════════════ BENEFITS BAND — LIGHT ════════════ */
.benefits-band {
  background: var(--light-color);
  padding: 2.75rem 0;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

.band-header { text-align: center; margin-bottom: 1.75rem; }
.band-header h2 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(20px, 4.5vw, 28px);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.band-header h2 em { font-style: normal; color: var(--primary-color); }
.band-header p { font-size: 13px; color: var(--text-color); margin-top: 0.3rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 580px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: #fff;
  border: 1px solid rgba(42,62,88,0.12);
  border-top: 3px solid var(--primary-color);
  border-radius: 0 0 16px 16px;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-color);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: 0 6px 22px rgba(42,62,88,0.15);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-color);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
}
.benefit-icon svg { width: 21px; height: 21px; color: var(--primary-color); }
.benefit-card h3 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.benefit-card p { font-size: 12px; color: var(--text-color); line-height: 1.55; }

/* ════════════ TESTIMONIALS — DARK ════════════ */
.testimonials-section {
  background: var(--dark-color);
  padding: 2.75rem 0;
}

.section-title { text-align: center; margin-bottom: 1.75rem; }
.section-title h2 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 26px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-title h2 em { font-style: normal; color: var(--accent-color); }
.section-title-bar {
  width: 40px; height: 2px;
  background: var(--accent-color);
  margin: 0.5rem auto 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,172,58,0.14);
  border-radius: 24px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.3rem; right: 0.9rem;
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(212,172,58,0.1);
  line-height: 1;
  pointer-events: none;
}

.t-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 1.5px solid rgba(212,172,58,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.05em;
}
.t-name { font-family: var(--main-font); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.t-loc  { font-family: var(--alt-font); font-size: 11px; color: rgba(255,255,255,0.45); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.5rem; }
.t-stars svg { width: 13px; height: 13px; fill: var(--accent-color); }
.t-text { font-family: var(--alt-font); font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; font-style: italic; }

/* ════════════ FOOTER ════════════ */
.site-footer { background: var(--dark-color); border-top: 1px solid rgba(212,172,58,0.12); }

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.footer-logo-icon { width: 26px; height: 26px; }
.footer-logo-text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-logo-text em { font-style: normal; color: var(--accent-color); }

.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
@media (min-width: 768px) { .footer-nav { flex-direction: row; gap: 1.5rem; } }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-color); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}