/* style.css - NOS-style minimalist design */
* {
	padding: 0;
	margin: 0;
	list-style: none;
	outline: none;
	font-family: 'Nunito', Roboto, system-ui, Tahoma, sans-serif;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
   overflow-x: hidden;
  width: 100%;
}
a{
  text-decoration: none;
  color: #1ab32e;
  text-decoration: underline;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
.header__wrap{
  display: flex;
  align-items: center;
  gap: 25px;
}
.header {
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  background: linear-gradient(135deg, #fff 60%, #fef0f0 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: #d71920;
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 28px;
  color: #d71920;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero .subhead {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
}

.hero .highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: flex
;
   align-items: flex-start;
}

.hero .highlights li {
  font-size: 17px;
  margin: 6px 0;
  padding-left: 28px;
  position: relative;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 420px;
}

.hero .highlights li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #28a745;
}

section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}


.problem {
  background: #fff8f8;
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: #d71920;
  opacity: 0.04;
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.problem h2 {
  color: #d71920;
  font-size: 24px;
  margin-bottom: 20px;
}

.problem ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.problem ul li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-size: 17px;
}

.problem ul li::before {
  content: '\26A0'; /* warning icon */
  position: absolute;
  left: 0;
  color: #d71920;
  font-size: 16px;
  top: 1px;
}

.problem p {
  font-size: 17px;
  max-width: 700px;
  color: #333;
}
.problem .highlight {
  font-weight: 600;
  color: #d71920;
  margin-top: 20px;
}



.discovery {
  background: #f5fafd;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  border-radius: 12px;
}

.discovery::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: #d71920;
  opacity: 0.05;
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.discovery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d71920;
  font-weight: 700;
}

.discovery p {
  font-size: 17px;
  max-width: 700px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}

.discovery .ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.discovery .ticks li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-size: 16px;
  color: #333;
}

.discovery .ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,%3Csvg fill="%2328a745" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M6.173 12.927L1.102 7.856l1.414-1.414 3.657 3.657L13.485 2.786l1.414 1.414z"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}


.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  margin: 20px 0px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.5s, transform 0.5s;
}

.btn-primary {
  background: #d71920;
  color: #fff;
  text-align: center;
  animation: pulse 3s infinite;
}

.btn-primary:hover {
  background: #b21218;
}

.btn-secondary {
  background: #1a1a1a;
  color: #fff;
}

.btn-secondary:hover {
  background: #000;
}

.doctor {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.doctor__wrap{
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
}

.doctor-img {
  width: 100%;
  border-radius: 6px;
  min-width: 320px;
}

.doctor-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem ul .ticks {
  list-style: disc;
  padding-left: 20px;
}



.blocked {
  background: #e6f7eb;
  border-left: 4px solid #19d73f;
  padding: 40px 20px;
  position: relative;
}

.blocked h2 {
  font-size: 24px;
  color: #19d73f;
  margin-bottom: 20px;
  font-weight: 700;
}

.blocked ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.blocked ul li {
  font-size: 17px;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  line-height: 1.4;
}

.blocked ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url('assets/arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.blocked p {
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 20px;
  color: #333;
}

.blocked .btn {
  margin-top: 10px;
}



.how {
  background: #f4fdf5;
  padding: 40px 20px;
  border-left: 4px solid #28a745;
}

.how h2 {
  font-size: 24px;
  color: #28a745;
  margin-bottom: 20px;
  font-weight: 700;
}

.how ol {
  counter-reset: step;
  margin-bottom: 25px;
  padding-left: 0;
  list-style: none;
}

.how ol li {
  font-size: 17px;
  margin: 12px 0;
  padding-left: 36px;
  position: relative;
}

.how ol li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  font-weight: 600;
}

.how .ticks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.how .ticks li {
  background: #28a745;
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* .reviews {
  background: #f8fafd;
  padding: 60px 20px;
  border-left: 4px solid #1a73e8;
}

.reviews h2 {
  font-size: 28px;
  color: #1a73e8;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 30px 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.review-card h3 {
  font-size: 20px;
  margin: 0 0 15px;
  color: #d71920;
  font-weight: 600;
}

.review-card p {
  font-size: 17px;
  color: #333;
  margin: 0;
  line-height: 1.6;
} */

/* .visceral-danger */
.visceral-danger {
  background: #fff3f3;
  padding: 60px 20px;
  border-left: 6px solid #d71920;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.05);
  margin-bottom: 40px;
}

.visceral-danger h2 {
  font-size: 26px;
  color: #d71920;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
}

.visceral-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.visceral-text {
  flex: 1;
  min-width: 280px;
}

.visceral-text p {
  font-size: 17px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.6;
}

.highlight-note {
  background: #ffdede;
  color: #1a1a1a;
  padding: 14px 20px;
  border-left: 4px solid #d71920;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.visceral-img {
  flex-shrink: 0;
  width: 320px;
  max-width: 100%;
}

.visceral-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* precision */
.precision {
  background: #f5fafd;
  padding: 60px 20px;
  border-left: 6px solid #1a73e8;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.05);
  margin-bottom: 40px;
  position: relative;
}

.precision h2 {
  font-size: 26px;
  color: #1a73e8;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.precision-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.precision-text {
  flex: 1;
  min-width: 280px;
}

.precision-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.precision-img {
  flex-shrink: 0;
  width: 320px;
  max-width: 100%;
}

.precision-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}








/* .compare-grid */

.compare-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.compare-card {
  flex: 1;
  border-radius: 12px;
  padding: 20px;
  background: #f9f9f9;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compare-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.img-block{
  position: relative;
}
.compare-card__img {
  width: 100%;
  max-width: 260px;
  border-radius: 6px;
  margin-bottom: 15px;
  height: 200px;
}
.compare-card__product{
  max-width: 200px !important;
}

.decor-listik{
  position: absolute;
  bottom: 0;
  left: 50%;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.compare-card ul li {
  margin: 6px 0;
  padding-left: 1.5em;
  position: relative;
}

.compare-card ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #28a745;
}

.compare-card.danger ul li::before {
  content: '\2716';
  color: #d71920;
}

.compare-card.danger {
  background: #ffe6e6;
}

.compare-card.success {
  background: #e6f7eb;
}

/* .beforeafter .images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.beforeafter img {
  width: calc(25% - 10px);
  border-radius: 4px;
} */


.puriva-benefit {
  background: #fff8f2;
  border-left: 4px solid #d71920;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.05);
  margin-bottom: 40px;
}
.puriva-benefit .container, .puriva-offer .container{
  display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
}

.puriva-benefit h2 {
  font-size: 24px;
  color: #d71920;
  margin-bottom: 20px;
  font-weight: 700;
}

.puriva-benefit p {
  font-size: 17px;
  color: #333;
  max-width: 720px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.puriva-benefit a {
  color: #d71920;
  font-weight: 600;
  text-decoration: underline;
}


.puriva-offer {
  background: #f4fcf7;
  border-left: 4px solid #28a745;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.06);
  margin-bottom: 40px;
}

.puriva-offer h2 {
  font-size: 24px;
  color: #28a745;
  margin-bottom: 20px;
  font-weight: 700;
}

.puriva-offer p {
  font-size: 17px;
  color: #1a1a1a;
  max-width: 720px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.puriva-offer a {
  color: #28a745;
  font-weight: 600;
  text-decoration: underline;
}






.urgency {
  background: radial-gradient(circle at top left, #fff8f8 30%, #fcecec 100%);
  padding: 60px 30px;
  position: relative;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.08);
overflow: hidden;
}

.urgency::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: #d71920;
  opacity: 0.04;
  border-radius: 50%;
  z-index: 0;
}

.urgency .container {
  position: relative;
  z-index: 1;
}

.urgency h2 {
  font-size: 28px;
  color: #d71920;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 25px;
  padding: 0;
}

.urgency ul li {
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  max-width: 480px;
  width: 100%;
}

.urgency p {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  background: #ffdede;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.urgency .btn {
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(215, 25, 32, 0.15);
}

.btn-timer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.percent{
  color: #28a745;
}

.plans {
  background: linear-gradient(135deg, #f5fcf8 40%, #e9f9f0 100%);
  padding: 60px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(40, 167, 69, 0.07);
}

.plans::before {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: #28a745;
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.plans .container {
  position: relative;
  z-index: 1;
}

.plans h2 {
  font-size: 28px;
  color: #28a745;
  margin-bottom: 30px;
  font-weight: 700;
}

.plans ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plans ul li {
  font-size: 17px;
  font-weight: 600;
  background: #ffffff;
  border-left: 4px solid #28a745;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.plans ul li:hover {
  transform: scale(1.015);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.plans .btn {
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.15);
}

.beforeafter {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  border-radius: 12px;
  overflow-x: hidden;
}

.beforeafter h2 {
  font-size: 28px;
  color: #d71920;
  margin-bottom: 30px;
  font-weight: 700;
}

.beforeafter .carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 0;
  margin-right: -20px;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: #d71920 #fefefe;
}

.beforeafter .carousel::-webkit-scrollbar {
  height: 8px;
}

.beforeafter .carousel::-webkit-scrollbar-track {
  background: #fefefe;
  border-radius: 8px;
}

.beforeafter .carousel::-webkit-scrollbar-thumb {
  background-color: #d71920;
  border-radius: 8px;
  border: 2px solid #fefefe;
}

.beforeafter .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: center;
  width: 500px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.beforeafter .slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.beforeafter .slide img:hover {
  transform: scale(1.05);
}

.beforeafter .slide .caption {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  /* margin-bottom: 50px; */
}
.footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__img{
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}
@media (max-width: 768px) {
  .doctor {
    flex-direction: column;
  }
  .doctor__wrap{
  flex-wrap: wrap;
  }

  .beforeafter img {
    width: 48%;
  }
  .compare-card{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .compare-card ul{
    display: flex;
    flex-direction: column;
    padding-left: 10%;
  }
  .block-compare-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-grid {
    flex-direction: column;
  }

    .visceral-content {
      flex-direction: column;
      text-align: center;
    }
  
    .visceral-img {
      width: 100%;
      max-width: 360px;
    }
  
    .highlight-note {
      font-size: 15px;
      padding: 12px 16px;
    }
    .precision-content {
      flex-direction: column;
      text-align: center;
    }
  
    .precision-img {
      width: 100%;
      max-width: 360px;
    }

  .nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .btn-timer{
    flex-direction: column;
  }

  .hero .highlights {
    flex-direction: column;
}

.puriva-benefit, .puriva-offer {
  padding: 30px 16px;
}

.puriva-benefit h2,
.puriva-offer h2 {
  font-size: 20px;
}
}
@media (max-width: 480px) {
  .beforeafter .slide {
    width: 90%;
  }

  .beforeafter .slide img {
    height: 220px;
  }

  .beforeafter .slide .caption {
    font-size: 13px;
  }
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(215, 25, 32, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
  }
}