/* =====================================================================
   ArtiZynt — mobile landing page styles
   Custom CSS, no frameworks. Organized by section, matches index.html
   and index-ru.html (both files share this single stylesheet).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink: #181C18;
  --lime: #B8F03A;
  --lime-deep: #6FA52A;
  --red: #D0221A;
  --red-shadow: rgba(208, 34, 26, 0.32);
  --paper: #FFFFFF;
  --sand: #F5F4EF;
  --muted: #6B6F68;
  --muted-on-dark: rgba(247, 248, 244, 0.72);
  --line: #E6E5DF;
  --line-on-dark: rgba(247, 248, 244, 0.14);
  --off-white: #F7F8F4;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
}

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--sand);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, p {
  margin: 0;
}

a {
  color: var(--ink);
  text-decoration: underline;
}

a:hover {
  color: var(--lime-deep);
}

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

input {
  font-family: inherit;
}

input::placeholder {
  color: #A6A89F;
}

button {
  font-family: inherit;
  cursor: pointer;
}

s {
  opacity: 0.85;
}

/* ---------- Page shell (centers the mobile card on wide screens) ---------- */
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--sand);
}

.shell {
  width: 100%;
  max-width: 470px;
  background: var(--paper);
  box-shadow: 0 0 50px rgba(24, 28, 24, 0.14);
  overflow: hidden;
  position: relative;
}

/* ---------- Fade-in on load ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.028); }
}

/* ---------- Top bar (logo + rating) ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

/* ---------- Generic section paddings / backgrounds ---------- */
.section {
  padding: 52px 22px 48px;
  background: var(--paper);
}

.section--sand   { background: var(--sand); }
.section--dark   { background: var(--ink); color: var(--off-white); }
.section--lime   { background: var(--lime); color: var(--ink); }

.hero-section {
  padding: 6px 22px 36px;
  background: var(--paper);
  animation: fadeUp 0.6s ease both;
}

/* ---------- Eyebrow label (section badge) ---------- */
.eyebrow {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.eyebrow--on-dark {
  border-color: rgba(247, 248, 244, 0.5);
  color: #FFFFFF;
}

/* ---------- Headings ---------- */
.h1 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 16px;
}

.h1-em {
  color: var(--lime-deep);
}

.h2 {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 22px;
}

.h2-em {
  color: var(--lime-deep);
}

/* ---------- Check / cross list (hero + solution benefits) ---------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-circle {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle--lime {
  background: var(--lime);
}

.check-item span.label {
  font-weight: 500;
}

/* ---------- Hero image ---------- */
.hero-image {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(24, 28, 24, 0.14);
}

/* ---------- Outline badge row (below hero image) ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 20px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Offer / price card (hero) ---------- */
.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.offer-label {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.offer-old {
  font-size: 19px;
  color: var(--muted);
}

.offer-tag-icon {
  flex: none;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  box-sizing: border-box;
  border-radius: 999px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.cta-lead {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

/* ---------- Forms (hero + final order) ---------- */
.form-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card--final {
  border: none;
  border-radius: 26px;
  padding: 24px 20px;
  box-shadow: 0 24px 50px rgba(24, 28, 24, 0.28);
}

.form-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-price-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.form-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.form-label {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  background: var(--sand);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-input:focus {
  border-color: var(--ink);
  background: var(--paper);
}

.form-card--final .form-input {
  background: var(--paper);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

/* ---------- Buttons (pill, icon-bubble trailing) ---------- */
.btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  padding: 8px 8px 8px 26px;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 14px 28px var(--red-shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary--lime {
  background: var(--red);
  color: #FFFFFF;
  box-shadow: 0 14px 28px var(--red-shadow);
}

.btn-primary--pulse {
  animation: pop 2s ease-in-out infinite;
}

.btn-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  white-space: nowrap;
}

/* ---------- Block 2: problem list ---------- */
.pain-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 22px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
}

.icon-circle--sand {
  background: var(--sand);
  margin-top: 1px;
}

.conclusion-card {
  margin-top: 22px;
  background: var(--ink);
  border-radius: 20px;
  padding: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--off-white);
}

.conclusion-em {
  color: var(--lime);
  font-weight: 700;
}

/* ---------- Block 3: aggravation stages ---------- */
.aggravation-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 22px;
}

.stage-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(247, 248, 244, 0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: 18px;
}

.stage-card--final {
  background: var(--lime);
  border: none;
}

.stage-badge {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(184, 240, 58, 0.16);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.stage-badge--final {
  background: var(--ink);
}

.stage-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 19px;
  color: #FFFFFF;
}

.stage-card--final .stage-title {
  color: var(--ink);
}

.stage-text {
  margin: 0;
  color: var(--muted-on-dark);
}

.stage-card--final .stage-text {
  color: #2C3226;
}

.stage-arrow {
  display: flex;
  justify-content: flex-start;
  padding: 8px 0 8px 15px;
}

/* ---------- Block 4: solution benefits ---------- */
.solution-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 24px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--sand);
  border-radius: 18px;
  padding: 16px;
}

/* ---------- Block 5: expert quote ---------- */
.doctor-wrap {
  position: relative;
  margin-bottom: 20px;
}

.doctor-image {
  width: 100%;
  border-radius: 22px;
}

.doctor-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(24, 28, 24, 0.78);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: wrap;
  right: 14px;
  text-align: center;

}

.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 22px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--lime);
  font-weight: 700;
}

.quote-text {
  margin: 4px 0 16px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

.quote-attr {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Block 6: ingredients ---------- */
.composition-image {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--sand);
  border-radius: 20px;
  padding: 18px;
}

.ingredient-item--highlight {
  background: var(--ink);
  color: var(--off-white);
}

.ingredient-item--highlight .ingredient-title {
  color: #FFFFFF;
}

.ingredient-icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(24, 28, 24, 0.08);
}

.ingredient-item--highlight .ingredient-icon {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

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

/* ---------- Block 7: timeline ---------- */
.timeline-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 26px;
}

.timeline-row {
  display: flex;
  gap: 16px;
}

.timeline-node-col {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-node {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-node--final {
  background: var(--lime);
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: var(--line);
  margin: 6px 0;
  min-height: 34px;
}

.timeline-line--long {
  min-height: 50px;
}

.timeline-body {
  padding-bottom: 24px;
}

.timeline-phase {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.timeline-phase--final {
  color: var(--lime-deep);
}

.timeline-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #3A3D37;
}

.timeline-bullet {
  display: flex;
  gap: 10px;
}

.timeline-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink);
  margin-top: 10px;
}

.timeline-dot--lime {
  background: var(--lime-deep);
}

/* ---------- Block 8: reviews carousel ---------- */
.reviews-section {
  padding: 52px 0 48px;
}

.reviews-head {
  padding: 0 22px;
}

.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 22px 18px;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  flex: none;
  width: 84%;
  scroll-snap-align: center;
  background: var(--ink);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #FFFFFF;
}

.review-loc {
  font-weight: 500;
  color: rgba(247, 248, 244, 0.6);
  font-family: var(--font-body);
}

.review-text {
  margin: 0;
  line-height: 1.55;
  color: rgba(247, 248, 244, 0.86);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  transition: width 0.2s ease, background 0.2s ease;
}

.review-dot.active {
  width: 22px;
  background: var(--ink);
}

/* ---------- Block 9: FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: start;
  background: transparent;
  border: none;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

.faq-question {
  flex: 1;
}

.faq-chevron {
  flex: none;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  margin: 0;
  padding: 0 18px 18px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---------- Block 10: order / closing ---------- */
.order-section {
  padding: 52px 22px 56px;
  background: var(--lime);
  color: var(--ink);
}

.order-heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  text-wrap: balance;
}

.offer-box-dark {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ink);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 22px;
}

.offer-box-dark p {
  margin: 0;
  line-height: 1.55;
  color: var(--off-white);
}

.offer-box-dark strong {
  color: #FFFFFF;
}

.order-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 24px;
}

.steps-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-badge {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item p {
  margin: 0;
}

/* ---------- Sticky bottom CTA ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 470px;
  box-sizing: border-box;
  padding: 12px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(24, 28, 24, 0.1);
  z-index: 50;
  display: none;
}

.sticky-bar.visible {
  display: block;
}

.sticky-bar .btn-primary {
  font-size: 18px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 10px 22px var(--red-shadow);
}

.sticky-bar .btn-icon {
  width: 38px;
  height: 38px;
}

/* ---------- Small-screen tightening (< 380px) ---------- */
@media (max-width: 380px) {
  .topbar,
  .hero-section,
  .section,
  .order-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h1 {
    font-size: 27px;
  }

  .h2 {
    font-size: 22px;
  }

  .review-card {
    width: 88%;
  }
}
.cpu{
padding: 10px 0;
text-align: center;
}
.cpu img{
display:block;
margin: 0 auto;
width: auto;
}
.cpu a{
display: inline-block;
margin: 5px;
color: #333;
font-size: 14px;
}
