@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Armenian:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #19b86a;
  --green-dark: #0d9652;
  --green-soft: #eafaf2;
  --red: #e33434;
  --orange: #ffb703;
  --text: #17211b;
  --muted: #647067;
  --bg: #fffdf8;
  --card: #ffffff;
  --line: rgba(23, 33, 27, 0.12);
  --shadow: 0 24px 70px rgba(22, 80, 48, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-main: "Noto Sans Armenian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-feature-settings: "case" on;
  font-style: normal;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.top-line {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 15px;
}

.top-line p {
  margin: 0;
}

.site-header {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  min-height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(25, 184, 106, 0.25);
}

.section-pad {
  padding: 88px 0;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(25, 184, 106, 0.13), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.13), transparent 28%),
    var(--bg);
}

.hero-grid,
.two-col,
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.media-box {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(25, 184, 106, 0.12), rgba(255, 183, 3, 0.13)),
    #ffffff;
  border: 2px dashed rgba(25, 184, 106, 0.35);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}



.media-box::before {
  width: 180px;
  height: 180px;
  top: -55px;
  right: -45px;
}

.media-box::after {
  width: 120px;
  height: 120px;
  bottom: 40px;
  left: 36px;
}

.media-box span {
  position: relative;
  z-index: 1;
  color: var(--green-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.media-box--gif {
  min-height: 560px;
}

.hero-content h1 {
  font-size: clamp(30px, 3.5vw, 56px);
  line-height: 1.06;
  margin: 18px 0 24px;
  letter-spacing: -0.06em;
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.rating-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}

.star-part {
  position: relative;
  color: rgba(255, 183, 3, 0.35);
}

.star-part::before {
  content: "★";
  color: var(--orange);
  position: absolute;
  inset: 0;
  width: 80%;
  overflow: hidden;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}

.old-price {
  color: var(--muted);
  font-weight: 800;
  font-size: 24px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.new-price {
  color: var(--red);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 13px;
}

.benefit-list li {
  position: relative;
  padding-left: 36px;
  color: #26332b;
  font-size: 17px;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.main-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(25, 184, 106, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(25, 184, 106, 0.34);
}

.main-btn--large {
  width: 100%;
  flex-direction: column;
  gap: 3px;
  border-radius: 24px;
  padding: 18px 22px;
}

.btn-title {
  font-size: 22px;
  line-height: 1.1;
}

.btn-subtitle {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
  text-align: center;
}

.arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.main-btn:hover .arrow {
  transform: translateX(4px);
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-benefit {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
}

.mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.mini-benefit p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #26332b;
}

.alt-bg {
  background: #f5fbf7;
}

.copy-block h2,
.section-center h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.05em;
}

.green-title {
  color: var(--green-dark);
}

.copy-block p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 17px;
}

.copy-block p strong {
  color: var(--text);
}

.copy-block .main-btn {
  margin-top: 12px;
}

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.rating-row--center {
  margin-bottom: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
}

.avatar-placeholder {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border: 2px dashed rgba(25, 184, 106, 0.35);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.stars--small {
  font-size: 17px;
  margin-bottom: 12px;
}

.review-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-icon {
  background: var(--green);
  color: #ffffff;
}

.order-section {
  background:
    radial-gradient(circle at top, rgba(25, 184, 106, 0.15), transparent 34%),
    #f4fbf7;
}

.order-title {
  margin-bottom: 38px;
}

.order-grid {
  align-items: stretch;
}

.order-product,
.order-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.product-placeholder {
  min-height: 430px;
  box-shadow: none;
}

.order-price-box {
  margin-top: 18px;
  border-radius: 22px;
  background: var(--green-soft);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-price-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.order-new-price {
  color: var(--green-dark);
  font-size: 34px;
  font-weight: 950;
  margin-right: 10px;
}

.order-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-form h3 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.order-form > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.order-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 850;
}

.order-form input {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfbf8;
  padding: 0 18px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 184, 106, 0.12);
}

.form-btn {
  width: 100%;
  margin-top: 6px;
}

.site-footer {
  padding: 26px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1024px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-grid,
  .two-col,
  .order-grid {
    gap: 34px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
  }

  .media-box,
  .media-box--gif {
    min-height: 470px;
  }

  .reviews-grid {
    gap: 18px;
  }

  .review-card {
    padding: 22px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-grid,
  .two-col,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid .media-box {
    order: -1;
  }

  .two-col--reverse-mobile .media-box {
    order: -1;
  }

  .media-box,
  .media-box--gif,
  .product-placeholder {
    min-height: 390px;
    border-radius: 26px;
  }

  .hero-content {
    text-align: center;
  }

  .rating-row {
    margin-inline: auto;
  }

  .benefit-list {
    text-align: left;
  }

  .copy-block {
    text-align: center;
  }

  .copy-block p {
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    text-align: center;
  }

  .avatar-placeholder {
    margin-inline: auto;
  }

  .stars--small {
    justify-content: center;
  }

  .order-price-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .top-line {
    font-size: 13px;
    padding: 9px 10px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .section-pad {
    padding: 54px 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .copy-block h2,
  .section-center h2 {
    font-size: 25px;
  }

  .rating-row {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    border-radius: 22px;
    gap: 6px;
  }

  .price-row {
    justify-content: center;
  }

  .new-price {
    font-size: 34px;
  }

  .mini-benefits {
    grid-template-columns: 1fr;
  }

  .main-btn {
    width: 100%;
    border-radius: 18px;
  }

  .btn-title {
    font-size: 19px;
  }

  .btn-subtitle {
    font-size: 12px;
  }

  .media-box,
  .media-box--gif,
  .product-placeholder {
    min-height: 320px;
  }

  .copy-block p,
  .benefit-list li {
    font-size: 16px;
  }

  .faq-question {
    padding: 18px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .order-product,
  .order-form {
    padding: 18px;
    border-radius: 24px;
  }

  .order-form h3 {
    font-size: 25px;
  }

  .order-new-price {
    display: block;
    margin-right: 0;
  }
}


.media-box--image {
  border: none;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.media-box--image span {
  display: none;
}

.media-box--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}


.avatar-photo {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.avatar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.avatar-photo--big {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}


.avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-placeholder {
  width: 230px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  border: none;
}


.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--green-soft);
  position: relative;
  display: block;

  /* hide the real + text from HTML */
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon {
  background: var(--green);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #ffffff;
}

/* active = minus */
.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}


.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--green-soft);
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

/* this creates the vertical line of the plus */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* opened item */
.faq-item.active .faq-icon {
  background: var(--green);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #ffffff;
}

/* opened item becomes minus */
.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}





