:root {
  --primary-color: #1A6868;
  --secondary-color: #2D8585;
  --accent-color: #F0A55A;
  --light-color: #EBF6F6;
  --dark-color: #0D3535;
  --gradient-primary: linear-gradient(135deg, #2D8585 0%, #1A6868 100%);
  --hover-color: #145454;
  --background-color: #F5FAF9;
  --text-color: #2E4040;
  --border-color: rgba(26, 104, 104, 0.14);
  --divider-color: rgba(26, 104, 104, 0.08);
  --shadow-color: rgba(13, 53, 53, 0.12);
  --highlight-color: #B06B18;
  --highlight-bg: #FEF3E4;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', 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.7;
  -webkit-font-smoothing: antialiased;
}

/* ── PATTERN: organic cross-hatch ── */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 40px,
      rgba(26, 104, 104, 0.03) 40px,
      rgba(26, 104, 104, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 60px,
      rgba(240, 165, 90, 0.025) 60px,
      rgba(240, 165, 90, 0.025) 61px
    );
}

/* ════════════ 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 span {
  position: absolute;
  border-radius: 50%;
}
.header-deco span:nth-child(1) {
  width: 180px; height: 180px;
  right: 4%; top: -80px;
  background: radial-gradient(circle, rgba(26,104,104,0.18) 0%, transparent 70%);
}
.header-deco span:nth-child(2) {
  width: 100px; height: 100px;
  right: 12%; top: -20px;
  background: radial-gradient(circle, rgba(240,165,90,0.1) 0%, transparent 70%);
}
.header-deco span:nth-child(3) {
  width: 60px; height: 60px;
  right: 8%; bottom: -20px;
  background: rgba(45,133,133,0.1);
}
@media (min-width: 768px) { .header-deco { display: block; } }

.header-inner {
  max-width: 1080px;
  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(17px, 4vw, 22px);
  color: #fff;
  letter-spacing: 0.06em;
}
.logo-text em { font-style: normal; color: var(--accent-color); }

/* ════════════ MAIN ════════════ */
main { flex: 1; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ════════════ PRODUCT SECTION ════════════ */
.product-section { padding: 2.5rem 0 2rem; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: start;
  }
}

/* ────── LEFT COL ────── */
.left-col { display: flex; flex-direction: column; gap: 1rem; }

.product-image-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 60px var(--shadow-color);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,104,104,0.07) 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: 270px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: var(--dark-color);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 24px rgba(13,53,53,0.2);
}
.guarantee-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent-color); margin-top: 2px; }
.guarantee-block p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}
.guarantee-block span {
  display: block;
  font-family: var(--alt-font);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* Features — vertical rows with large icon circles */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 10px 32px rgba(26,104,104,0.15);
  transform: translateY(-2px);
}
.feature-icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-circle svg { width: 19px; height: 19px; color: #fff; }
.feature-item span {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark-color);
  line-height: 1.35;
}

.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(--gradient-primary);
  color: #fff;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(26,104,104,0.38);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-cart:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(26,104,104,0.48);
}
.btn-cart svg { width: 18px; height: 18px; }

/* ────── RIGHT COL ────── */
.product-info-col { display: flex; flex-direction: column; gap: 1.1rem; }

.product-eyebrow {
  font-family: var(--alt-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

.product-info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(26px, 5.5vw, 40px);
  color: var(--dark-color);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.product-info-col h1 em {
  font-style: normal;
  color: var(--primary-color);
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  background: var(--light-color);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  width: fit-content;
}
.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(26px, 5vw, 36px);
  color: var(--primary-color);
  line-height: 1;
}
.price-currency {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-color);
}

.product-description {
  font-family: var(--alt-font);
  font-size: clamp(13px, 4vw, 14px);
  line-height: 1.8;
  color: var(--text-color);
}
.product-description + .product-description { margin-top: -0.4rem; }

.advantages-label {
  font-family: var(--main-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}
.advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.5;
  padding: 0.5rem 0.85rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.advantages-list li svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-color);
}

.cta-highlight {
  background: var(--dark-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-highlight::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(240,165,90,0.1);
  pointer-events: none;
}
.cta-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(13px, 4vw, 15px);
  color: #fff;
  line-height: 1.45;
}
.cta-highlight strong em {
  font-style: normal;
  color: var(--accent-color);
}

/* ════════════ BENEFITS BAND ════════════ */
.benefits-band {
  margin-top: 3rem;
  background: var(--primary-color);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.benefits-band::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.benefits-band::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(240,165,90,0.08);
  pointer-events: none;
}

.band-header { text-align: center; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.band-header h2 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 26px);
  color: #fff;
  letter-spacing: 0.02em;
}
.band-header h2 em { font-style: normal; color: var(--accent-color); }
.band-header p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 0.35rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@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: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.14); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.benefit-icon svg { width: 22px; height: 22px; color: #fff; }
.benefit-card h3 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 0.35rem;
}
.benefit-card p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ════════════ TESTIMONIALS ════════════ */
.testimonials-section {
  background: var(--light-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, 24px);
  color: var(--dark-color);
}
.section-title-bar {
  width: 40px; height: 3px;
  background: var(--accent-color);
  border-radius: 50px;
  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: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  bottom: -0.5rem; right: 0.75rem;
  font-size: 68px;
  font-family: Georgia, serif;
  color: var(--light-color);
  line-height: 1;
  pointer-events: none;
}

.t-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.55rem; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.t-name { font-family: var(--main-font); font-weight: 700; font-size: 13px; color: var(--dark-color); }
.t-loc  { font-family: var(--alt-font); font-size: 11px; color: var(--secondary-color); }
.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: var(--text-color); line-height: 1.65; font-style: italic; position: relative; z-index: 1; }

/* ════════════ FOOTER ════════════ */
.site-footer { background: var(--dark-color); }

.footer-inner {
  max-width: 1080px;
  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.5rem; text-decoration: none; }
.footer-logo-icon { width: 26px; height: 26px; }
.footer-logo-text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.06em;
}
.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.5); 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.27);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}