:root {
  --accent: #0f9e8e;
  --accent-dark: #0a7a6c;
  --accent-light: #e0f7f4;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #f8fffe;
  --border: #e2e8f0;
  --star: #f59e0b;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

nav a:hover {
  color: var(--accent);
}

.header-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.header-cta:hover {
  background: var(--accent-dark);
}

.hero {
  background: linear-gradient(135deg, #e0f7f4 0%, #f0fffe 50%, #e8f8f5 100%);
  padding: 80px 24px;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.product-image-wrap {
  width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

h1 span {
  color: var(--accent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.stars {
  display: inline-block;
  width: 6rem;
  height: 1.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f59e0b' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") repeat-x;
  background-size: 1.2rem 1.2rem;
  font-size: 0;
  vertical-align: middle;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-main {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
}

.price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.order-form {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.order-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-row a {
  color: var(--accent);
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
}

.form-error-inline {
  display: block;
  margin-top: 6px;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #dc2626;
}

.btn-order {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 158, 142, 0.35);
}

.disclaimer-box {
  margin-top: 24px;
  padding: 20px 24px;
  background: #f8f6e8;
  border: 1px solid #e8e4c8;
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}

.disclaimer-box p {
  margin: 0 0 12px;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

section {
  padding: 80px 24px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.characteristics {
  background: white;
}

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

.char-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}

.char-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.char-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
}
.char-icon--capsule { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9e8e'%3E%3Cpath d='M8 4a4 4 0 0 1 8 0v8a4 4 0 0 1-8 0V4z'/%3E%3C/svg%3E"); }
.char-icon--jar { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Crect x='6' y='4' width='12' height='14' rx='1'/%3E%3Cpath d='M9 4V2h6v2'/%3E%3C/svg%3E"); }
.char-icon--box { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Cpath d='M21 8v13H3V8M12 3v5M3 8l9-4 9 4'/%3E%3C/svg%3E"); }
.char-icon--clipboard { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Crect x='8' y='4' width='8' height='4' rx='1'/%3E%3Cpath d='M8 8h8v12H8z'/%3E%3C/svg%3E"); }
.char-icon--thermometer { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Cpath d='M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z'/%3E%3C/svg%3E"); }

.char-title {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.char-value {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}

.char-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.benefits {
  background: linear-gradient(135deg, #e0f7f4 0%, #f0fffe 100%);
}

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

.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  font-size: 0;
}
.benefit-icon--leaf { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9e8e'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.04L5.71 22L6.66 19.92C7.14 19.32 7.9 19 8.66 19L17 8z'/%3E%3C/svg%3E"); }
.benefit-icon--check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); }
.benefit-icon--cycle { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Cpath d='M21 12a9 9 0 11-9-9'/%3E%3Cpath d='M21 3v6h-6'/%3E%3C/svg%3E"); }
.benefit-icon--drop { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f9e8e'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E"); }
.benefit-icon--plant { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2'%3E%3Cpath d='M7 20h10M10 20c5.5-2.5 8-7 8-12a4 4 0 0 0-8 0c0 5 2.5 9.5 8 12'/%3E%3C/svg%3E"); }

.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.description {
  background: white;
}

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.desc-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.instructions h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.instruction-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.instruction-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  border: 1px solid var(--border);
}

.step-num {
  background: var(--accent);
  color: white;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.composition {
  background: var(--bg);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  transition: border-color .2s;
}

.ingredient-row:hover {
  border-color: var(--accent);
}

.ingredient-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.ingredient-name small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.ingredient-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.composition-note {
  margin-top: 24px;
  background: white;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  border: 1px solid var(--border);
}

.reviews {
  background: white;
}

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

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform .2s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-stars {
  display: inline-block;
  height: 1.1rem;
  margin-bottom: 14px;
  font-size: 0;
  background-size: 1.1rem 1.1rem;
}
.review-stars--5 {
  width: 5.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f59e0b' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.review-stars--4 {
  width: 5.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23f59e0b' stroke-width='1.5' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f59e0b' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat-x;
  background-position: 4.4rem 0, 0 0;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 0.88rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.faq {
  background: linear-gradient(135deg, #e0f7f4 0%, #f0fffe 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q .toggle {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .3s;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
}

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

.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 24px;
}

.cta .section-title {
  color: white;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 18px 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .brand-logo {
  color: white;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-contact {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 6px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9999;
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.3);
  transition: opacity .4s, transform .4s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.cookie-banner p {
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.btn-cookie-accept:hover {
  background: var(--accent-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

.btn-cookie-decline:hover {
  color: white;
}

.policy-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

@media (min-width: 768px) {
  .policy-main {
    padding: 48px 40px 64px;
  }
}

@media (min-width: 1024px) {
  .policy-main {
    padding: 64px 80px 80px;
  }
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

main h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 12px;
}

main h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 8px;
}

main p,
main li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

main ul,
main ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

main a {
  color: var(--accent);
}

main table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

main th,
main td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

main th {
  background: var(--bg);
  font-weight: 700;
  font-size: 0.88rem;
}

.back-link {
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

body.thank-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.thank-page main.page-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 60px 24px;
}
.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 64px - 80px);
  padding: 60px 24px;
}

.thank-card {
  background: white;
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.check-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: popIn .5s ease;
}
.check-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.thank-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.thank-email strong {
  color: var(--accent);
  font-weight: 600;
}

.info-box {
  background: var(--accent-light);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 28px;
}

.info-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box ul li::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.35em;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9e8e' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.btn-home {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .2s;
}

.btn-home:hover {
  background: var(--accent-dark);
}

@media (max-width: 1024px) {
  .chars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .product-image-wrap {
    width: 100%;
    max-width: 320px;
  }

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

  .chars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid,
  .desc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  nav {
    display: none;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .thank-card {
    padding: 40px 24px;
  }
}
