
/* ============================= BASE ============================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  max-width: 1000px;
  margin: 0 auto !important;
  padding-top: 68px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #1f2937;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

@media (max-width: 760px) { body { padding-top: 56px; font-size: 18px; } }

/* ============================= CONTAINERS ============================= */
.rp-container { max-width: 980px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.rp-section { padding-top: 36px; padding-bottom: 36px; }
.rp-bg-gray { background: #f9fafb; }

@media (max-width: 760px) {
  .rp-container { padding-left: 16px; padding-right: 16px; }
  .rp-section { padding-top: 28px; padding-bottom: 28px; }
}

.rp-section h2 {
  text-align: center;
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
  color: #083643;
  font-weight: 800;
}
.rp-section h2 span.rp-accent { color: #25874A; }
.rp-section p { margin: 0 0 16px; }
@media (max-width: 760px) { .rp-section h2 { font-size: 24px; } }

.rp-deco-sub { text-align: center; color: #6b7280; font-size: 17px; font-style: italic; margin: -6px 0 22px; }

/* ============================= HEADER ============================= */
.rp-header {
  background: #083643;
  border-bottom: 1px solid #0d4a5c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  padding: 14px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
}
.rp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; max-width: 980px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.rp-header-brand { color: #ffffff; font-size: 22px; text-transform: uppercase; letter-spacing: 0.5px; }
.rp-header-brand strong { color: #ffffff; font-weight: 700; }
.rp-place-order {
  display: inline-block;
  background: #25874A;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.rp-place-order:hover { transform: translateY(-2px); background: #2fa65c; box-shadow: 0 6px 16px rgba(37,135,74,0.45); }

@media (max-width: 760px) {
  .rp-header-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; padding-left: 14px; padding-right: 14px; }
  .rp-header-brand { font-size: 17px; text-align: left; }
  .rp-place-order { font-size: 13px; padding: 7px 14px; }
}
@media (max-width: 380px) {
  .rp-header-brand { font-size: 15px; letter-spacing: 0.3px; }
  .rp-place-order { font-size: 12px; padding: 6px 12px; }
}

/* ============================= HERO ============================= */
.rp-hero { padding-top: 36px; padding-bottom: 28px; }
.rp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title image" "text image";
  column-gap: 36px;
  row-gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.rp-hero-title { grid-area: title; margin: 0 0 14px; font-size: 32px; font-weight: 800; line-height: 1.2; color: #083643; text-align: left; }
.rp-hero-text { grid-area: text; text-align: left; }
.rp-hero-sub { margin: 0 0 18px; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #111827; }
.rp-hero-sub .rp-hero-year { color: #dc2626; font-weight: 700; }
.rp-hero-text p { margin: 0 0 14px; font-size: 18px; line-height: 1.6; font-weight: 400; }
.rp-hero-text p strong { font-weight: 700; }
.rp-hero-img { grid-area: image; display: flex; justify-content: center; align-items: center; }
.rp-hero-img img { border-radius: 12px; max-width: 380px; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }

@media (max-width: 1024px) {
  .rp-hero-grid { column-gap: 24px; }
  .rp-hero-title { font-size: 22px; margin-bottom: 10px; }
  .rp-hero-sub { font-size: 15px; margin-bottom: 14px; }
  .rp-hero-text p { font-size: 15px; line-height: 1.55; margin-bottom: 10px; }
  .rp-hero-img img { max-width: 320px; }
}
@media (max-width: 760px) {
  .rp-hero-grid { grid-template-columns: 1fr; grid-template-areas: "title" "image" "text"; column-gap: 0; row-gap: 18px; align-items: center; }
  .rp-hero-title { font-size: 26px; margin-bottom: 0; text-align: center; }
  .rp-hero-text { text-align: center; }
  .rp-hero-sub { font-size: 16px; }
  .rp-hero-text p { font-size: 17px; }
  .rp-hero-img { align-items: center; }
  .rp-hero-img img { max-width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
}

/* ============================= IMAGES ============================= */
.rp-image-full { text-align: center; margin: 0 auto 22px; }
.rp-image-full picture { display: block; width: 100%; }
.rp-image-full.rp-image-full--banner { margin-bottom: 28px; }
.rp-image-full.rp-image-full--banner img { max-width: 900px; aspect-ratio: 1920 / 1280; object-fit: contain; width: 100%; margin: 0 auto; border-radius: 12px; }
@media (max-width: 760px) { .rp-image-full.rp-image-full--banner img { max-width: 100%; } }

.rp-image-full.rp-image-full--refund img { max-width: 260px; margin: 0 auto; }
@media (max-width: 760px) { .rp-image-full.rp-image-full--refund img { max-width: 240px; } }

.rp-image-full.rp-image-full--pack6 img { max-width: 560px; margin: 0 auto; border-radius: 12px; }
@media (max-width: 760px) { .rp-image-full.rp-image-full--pack6 img { max-width: 100%; } }

/* ============================= CTA ============================= */
.rp-btn-wrap { text-align: center; margin: 22px 0 8px; }
.rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25874A;
  color: #ffffff;
  border: 2px solid #1b6b3a;
  border-radius: 10px;
  padding: 16px 30px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.rp-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37,135,74,0.38); background: #2fa65c; }
.rp-special-offer { text-align: center; font-size: 16px; color: #1f2937; margin: 4px 0 16px; }
.rp-final-cta { max-width: 860px; width: 100%; text-align: center; font-size: 20px; padding: 20px 26px; }
@media (max-width: 760px) {
  .rp-btn { font-size: 16px; padding: 14px 20px; width: 100%; }
  .rp-final-cta { font-size: 16px; padding: 16px 18px; }
  .rp-special-offer { font-size: 14px; }
}

.rp-bridge { text-align: center; font-size: 17px; color: #475569; margin-top: 22px; font-style: italic; }

/* ============================= SCORECARD ============================= */
.rp-scorecard { max-width: 720px; margin: 0 auto 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.rp-scorecard-img img { max-width: 280px; margin: 0 auto; border-radius: 12px; }
.rp-ring-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rp-ring { position: relative; width: 130px; height: 130px; }
.rp-ring svg { transform: rotate(-90deg); width: 130px; height: 130px; }
.rp-ring circle { fill: none; stroke-width: 12; }
.rp-ring .rp-ring-bg { stroke: #e5e7eb; }
.rp-ring .rp-ring-fg { stroke: #25874A; stroke-linecap: round; stroke-dasharray: 345; stroke-dashoffset: 345; transition: stroke-dashoffset 1.6s cubic-bezier(0.22,1,0.36,1); }
.rp-ring-value { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rp-ring-num { font-size: 30px; font-weight: 800; color: #25874A; line-height: 1; }
.rp-ring-of { font-size: 13px; color: #6b7280; margin-top: 3px; }
.rp-ring-label { margin-top: 12px; font-size: 16px; font-weight: 700; color: #083643; text-align: center; }

.rp-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; max-width: 880px; margin: 0 auto 28px; }
.rp-bar-label { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; color: #083643; margin-bottom: 6px; }
.rp-bar-label span:last-child { color: #25874A; }
.rp-bar-track { background: #e5e7eb; border-radius: 999px; height: 12px; overflow: hidden; }
.rp-bar-fill { background: linear-gradient(90deg, #25874A, #4cb877); height: 100%; width: 0; border-radius: 999px; transition: width 1.6s cubic-bezier(0.22,1,0.36,1); }

.rp-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
.rp-pc-box { border-radius: 12px; padding: 20px 22px; border: 1px solid #e5e7eb; background: #ffffff; }
.rp-pc-box h3 { margin: 0 0 14px; font-size: 20px; }
.rp-pc-pros h3 { color: #15803d; }
.rp-pc-cons h3 { color: #b91c1c; }
.rp-pc-box ul { list-style: none; margin: 0; padding: 0; }
.rp-pc-box li { position: relative; padding-left: 30px; margin-bottom: 11px; font-size: 17px; line-height: 1.5; }
.rp-pc-pros li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #15803d; font-weight: 700; }
.rp-pc-cons li::before { content: "\2715"; position: absolute; left: 0; top: 0; color: #b91c1c; font-weight: 700; }

@media (max-width: 760px) {
  .rp-scorecard { grid-template-columns: 1fr; gap: 18px; }
  .rp-scorecard-img img { max-width: 200px; }
  .rp-ring, .rp-ring svg { width: 110px; height: 110px; }
  .rp-ring-num { font-size: 26px; }
  .rp-bars { grid-template-columns: 1fr; gap: 14px; }
  .rp-proscons { grid-template-columns: 1fr; gap: 18px; }
  .rp-pc-box li { font-size: 16px; }
}

/* ============================= HOW DOES WORK ============================= */
.rp-howwork-grid { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: stretch; max-width: 880px; margin: 16px auto; }
.rp-howwork-desktop { display: block; }
.rp-howwork-desktop img { max-width: 190px; width: 100%; height: auto; border-radius: 10px; }
.rp-howwork-mobile { display: none; text-align: center; margin: 16px auto; max-width: 900px; }
.rp-howwork-mobile img { max-width: 900px; width: 100%; height: auto; aspect-ratio: 1920 / 1280; object-fit: cover; margin: 0 auto; border-radius: 12px; }
.rp-howwork-text { display: flex; flex-direction: column; justify-content: space-between; }
.rp-howwork-text p { margin: 0 0 16px; font-size: 18px; line-height: 1.6; }
.rp-howwork-text p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .rp-howwork-grid { display: block; }
  .rp-howwork-desktop { display: none; }
  .rp-howwork-mobile { display: block; }
  .rp-howwork-text { display: block; }
  .rp-howwork-text p { font-size: 18px; }
}
@media (max-width: 760px) { .rp-howwork-mobile img { max-width: 100%; } }

/* ============================= INGREDIENTS ============================= */
.rp-ingredient { border-left: 4px solid #25874A; padding: 4px 0 4px 20px; margin: 0 0 24px; }
.rp-ingredient h3 { margin: 0 0 8px; font-size: 21px; color: #25874A; }
.rp-ingredient p { margin: 0; font-size: 18px; line-height: 1.6; }
@media (max-width: 760px) { .rp-ingredient { padding-left: 14px; } .rp-ingredient h3 { font-size: 19px; } .rp-ingredient p { font-size: 17px; } }

/* ============================= BENEFITS LIST ============================= */
.rp-benefits-list { list-style: none; margin: 0 auto 10px; padding: 0; max-width: 880px; }
.rp-benefits-list li { position: relative; padding-left: 36px; margin-bottom: 16px; font-size: 18px; line-height: 1.6; }
.rp-benefits-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #25874A; color: #ffffff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.rp-benefits-list li strong { color: #083643; }
@media (max-width: 760px) { .rp-benefits-list li { font-size: 17px; padding-left: 32px; } }

/* ============================= TESTIMONIALS ============================= */
.rv-section { padding-top: 36px; padding-bottom: 36px; background: #ffffff; }
.rv-wrap { max-width: 980px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.rv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rv-card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 22px; background: #ffffff; box-shadow: 0 2px 10px rgba(15,23,42,0.05); }
.rv-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.rv-avatar { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex: 0 0 80px; }
.rv-headinfo { display: flex; flex-direction: column; }
.rv-name { font-size: 18px; font-weight: 700; color: #083643; }
.rv-location { font-size: 15px; color: #6b7280; margin-top: 2px; }
.rv-stars { margin-top: 6px; display: flex; gap: 2px; }
.rv-stars svg { width: 16px; height: 16px; fill: #f59e0b; }
.rv-title { text-transform: uppercase; font-weight: 700; font-size: 17px; color: #25874A; margin: 0 0 8px; letter-spacing: 0.3px; }
.rv-meta { font-size: 14px; color: #6b7280; margin: 0 0 12px; }
.rv-body { font-size: 17px; line-height: 1.6; margin: 0 0 14px; }
.rv-foot { font-size: 14px; color: #94a3b8; border-top: 1px solid #f1f5f9; padding-top: 10px; }
@media (max-width: 1024px) { .rv-card { padding: 18px; } .rv-grid { gap: 18px; } }
@media (max-width: 760px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-wrap { padding-left: 16px; padding-right: 16px; }
  .rv-avatar { width: 70px; height: 70px; flex: 0 0 70px; }
  .rv-stars svg { width: 15px; height: 15px; }
  .rv-body { font-size: 16px; }
}

/* ============================= REFUND ============================= */
.rp-refund-grid { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: center; max-width: 880px; margin: 16px auto; }
.rp-refund-text p { margin: 0 0 14px; font-size: 18px; line-height: 1.6; }
@media (max-width: 760px) {
  .rp-refund-grid { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
  .rp-refund-grid .rp-image-full--refund { margin: 0 auto; }
  .rp-refund-text { width: 100%; }
  .rp-refund-text p { text-align: center; }
}

/* ============================= PRICING ============================= */
#pricing-cards { scroll-margin-top: 80px; }
@media (max-width: 760px) { #pricing-cards { scroll-margin-top: 64px; } }
.rp-pricing { max-width: 880px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 14px; }
.rp-pricing-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: 2px solid #e5e7eb; border-radius: 12px;
  padding: 18px 22px; text-decoration: none; color: #083643;
  background: #ffffff;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.rp-pricing-row:hover { transform: translateY(-3px); border-color: #25874A; background: #f2fbf5; box-shadow: 0 10px 24px rgba(37,135,74,0.18); }
.rp-pricing-row .label { font-size: 18px; font-weight: 700; }
.rp-pricing-row .price { font-size: 18px; font-weight: 700; color: #25874A; white-space: nowrap; }
.rp-pricing-row.best { border-color: #25874A; background: #eef9f2; }
.rp-pricing-row.best:hover { background: #e4f4ea; }
@media (max-width: 760px) {
  .rp-pricing-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px; }
  .rp-pricing-row .label, .rp-pricing-row .price { font-size: 16px; white-space: normal; }
}

/* ============================= FAQ ============================= */
.rp-faq { max-width: 880px; margin: 0 auto; }
.rp-faq-item { border: 1px solid #e5e7eb; border-radius: 10px; margin-bottom: 12px; background: #ffffff; overflow: hidden; }
.rp-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 16px 20px; cursor: pointer; font-size: 18px; font-weight: 700; color: #083643;
  transition: background 0.15s ease;
}
.rp-faq-q:hover { background: #f4fbf6; }
.rp-faq-icon { color: #25874A; font-size: 24px; line-height: 1; flex: 0 0 auto; transition: transform 0.25s ease; }
.rp-faq-item.is-open .rp-faq-icon { transform: rotate(45deg); }
.rp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.rp-faq-a p { margin: 0; padding: 0 20px 18px; font-size: 17px; line-height: 1.6; color: #374151; }
@media (max-width: 760px) { .rp-faq-q { font-size: 16px; padding: 14px 16px; } .rp-faq-a p { font-size: 16px; padding: 0 16px 16px; } }

/* ============================= FOOTER ============================= */
.rp-footer { background: #083643; color: #94a3b8; padding: 26px 0; text-align: center; font-size: 14px; }
.rp-footer a { color: #cbd5e1; text-decoration: none; margin: 0 10px; }
.rp-footer a:hover { color: #ffffff; }
.rp-footer-copy { margin-top: 10px; color: #64748b; }
