:root {
  --bg: #f8f5f1;
  --bg-alt: #f1ece6;
  --card: #ffffff;
  --text: #2d2926;
  --muted: #6e665f;
  --primary: #7f9b7a;
  --primary-dark: #657d60;
  --line: #e7dfd7;
  --success: #2c7a3f;
  --danger: #b44b4b;
  --star: #f4b400;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand span {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
  background: #eef4ed;
}

.btn-large {
  padding: 16px 30px;
  font-size: 17px;
}

.hero {
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: #e8f0e6;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  padding: 10px 0 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 68px 0;
}

.alt-section {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.section-head.left {
  text-align: left;
  margin: 0 0 24px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #ecf3ea;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.split-copy {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 600;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.table-wrap {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.comparison-table thead th {
  background: #f3f6f2;
}

.yes {
  color: var(--success);
  font-weight: 800;
}

.no {
  color: var(--danger);
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.stars {
  color: var(--star);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.review-author {
  font-weight: 800;
}

.guarantee-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
}

.guarantee-box h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.guarantee-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 18px;
}

.guarantee-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 78px;
}

.cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #f4f0eb 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px 24px;
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-box p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .trust-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 54px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 14px;
  }
}

.review-photo{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
margin-bottom:12px;
}

.review-card{
display:flex;
flex-direction:column;
align-items:flex-start;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.reviews-track .review-card {
  min-width: calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  flex-shrink: 0;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #f3f6f2;
}

@media (max-width: 980px) {
  .reviews-track .review-card {
    min-width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-track .review-card {
    min-width: 100%;
    max-width: 100%;
  }

  .reviews-carousel {
    gap: 8px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.35s ease;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.hero-arrow:hover {
  background: #ffffff;
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--primary);
}

@media (max-width: 640px) {
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.split-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.split-slider-viewport {
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
}

.split-slider-track {
  display: flex;
  transition: transform 0.35s ease;
  width: 100%;
}

.split-slide {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.split-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: #657d60;
  font-size: 28px;
  cursor: pointer;
}

.split-prev { left: 12px; }
.split-next { right: 12px; }

.split-dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}

.split-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:#ccc;
}

.split-dot.active{
  background:#7f9b7a;
}