/* ============================================================
   WellNexis Gastro – Main Stylesheet
   Design: Modern, Minimalist, Light Tones, Mobile-First
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-100: #ccfbf1;
  --teal-50:  #f0fdfa;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --red-500: #ef4444;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ---- Typography ---- */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--gray-900); line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; color: var(--gray-900); line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); }
p  { font-size: 1rem; color: var(--gray-700); }

.section-label {
  display: inline-block;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 12px auto 0;
  text-align: center;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-pulse {
  animation: pulse-cta 2.5s infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(13,148,136,0); }
}

/* ---- Urgency Bar ---- */
.urgency-bar {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.urgency-icon { margin-right: 6px; }

/* ---- Header ---- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
}
.logo-text strong { color: var(--teal-600); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--teal-600); }
.btn-nav {
  background: var(--teal-600);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--teal-700) !important; }

/* ---- Hero ---- */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }

.badge-made-in {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.badge-made-in svg { width: 14px; height: 14px; }

.hero h1 { margin-bottom: 16px; }
.hero-subtitle { font-size: 1.05rem; color: var(--gray-700); margin-bottom: 24px; }
.hero-subtitle strong { color: var(--teal-600); }

.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.price-old {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.price-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-600);
}
.price-badge {
  background: var(--red-500);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.hero-cta-group { margin-bottom: 20px; }
.hero-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 10px;
}

.trust-mini {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
}
.trust-mini-item svg { width: 16px; height: 16px; color: var(--teal-600); }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--gray-900);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap svg { width: 20px; height: 20px; color: var(--teal-100); }
.trust-item strong { display: block; font-size: 0.9rem; font-weight: 600; }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ---- Problem Section ---- */
.problem-section {
  padding: 80px 0;
  text-align: center;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.problem-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow); }
.problem-icon { font-size: 2rem; margin-bottom: 12px; }
.problem-card h3 { font-size: 1rem; margin-bottom: 8px; }
.problem-card p { font-size: 0.88rem; color: var(--gray-500); }

.problem-solution {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.solution-arrow { font-size: 2rem; color: var(--teal-600); margin-bottom: 8px; }
.problem-solution p { font-size: 1rem; }
.problem-solution strong { color: var(--teal-600); }

/* ---- Benefits ---- */
.benefits-section {
  padding: 80px 0;
  background: var(--gray-50);
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-icon-1 { background: #f0fdfa; color: var(--teal-600); }
.benefit-icon-2 { background: #ecfdf5; color: #059669; }
.benefit-icon-3 { background: #eff6ff; color: #2563eb; }
.benefit-icon-4 { background: #fef3c7; color: #d97706; }
.benefit-icon-5 { background: #fdf2f8; color: #9333ea; }
.benefit-icon-6 { background: #fff1f2; color: #e11d48; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ---- Ingredients ---- */
.ingredients-section {
  padding: 80px 0;
  text-align: center;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.2s;
}
.ingredient-card:hover { box-shadow: var(--shadow-lg); }
.ingredient-featured {
  border: 2px solid var(--teal-600);
  background: var(--teal-50);
}
.ingredient-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
}
.ingredient-featured .ingredient-number { color: var(--teal-100); }
.ingredient-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.ingredient-icon { width: 64px; height: 64px; margin-bottom: 16px; }
.ingredient-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.ingredient-latin { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 12px; }
.ingredient-card > p { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 16px; }
.ingredient-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ingredient-benefits span {
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.ingredient-featured .ingredient-benefits span {
  background: var(--teal-600);
  color: var(--white);
}

.made-in-italy {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.italy-flag { font-size: 2.5rem; }
.made-in-italy strong { display: block; font-size: 1rem; color: var(--gray-900); margin-bottom: 4px; }
.made-in-italy p { font-size: 0.88rem; color: var(--gray-500); }

/* ---- How It Works ---- */
.how-it-works {
  padding: 80px 0;
  background: var(--gray-50);
  text-align: center;
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon { margin: 0 auto 12px; width: 40px; height: 40px; color: var(--teal-600); }
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--gray-500); }
.step-arrow {
  font-size: 1.8rem;
  color: var(--teal-600);
  font-weight: 300;
}

/* ---- Product Details ---- */
.product-details { padding: 80px 0; }
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.details-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.details-content h2 { margin-bottom: 24px; }
.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.details-table tr { border-bottom: 1px solid var(--gray-100); }
.details-table td {
  padding: 12px 0;
  font-size: 0.92rem;
}
.details-table td:first-child {
  color: var(--gray-500);
  width: 40%;
  font-weight: 500;
}
.details-table td:last-child { color: var(--gray-900); font-weight: 500; }
.price-highlight { color: var(--teal-600); font-size: 1.2rem; }

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 0;
  background: var(--gray-50);
  text-align: center;
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 40px;
  flex-wrap: wrap;
}
.rating-stars { font-size: 1.4rem; color: var(--amber-400); }
.rating-score { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); }
.rating-count { font-size: 0.88rem; color: var(--gray-500); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow);
}
.testimonial-featured {
  border: 2px solid var(--teal-600);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--teal-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-header > div:nth-child(2) { flex: 1; }
.testimonial-header strong { display: block; font-size: 0.92rem; color: var(--gray-900); }
.testimonial-location { font-size: 0.78rem; color: var(--gray-500); }
.testimonial-stars { color: var(--amber-400); font-size: 0.9rem; }
.testimonial-card > p { font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 12px; }
.testimonial-date { font-size: 0.75rem; color: var(--gray-500); }

/* ---- FAQ ---- */
.faq-section {
  padding: 80px 0;
  text-align: center;
}
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal-600); }
.faq-question[aria-expanded="true"] { color: var(--teal-600); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 16px;
}
.faq-answer p { font-size: 0.92rem; color: var(--gray-700); }

/* ---- Order Section ---- */
.order-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.order-info h2 { margin-bottom: 20px; }
.order-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.order-price-old {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.order-price-new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-600);
}
.order-discount-badge {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red-500);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}
.order-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.order-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}
.order-features li svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; }
.order-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--teal-600); }

/* ---- Order Form ---- */
.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.order-form h3 { font-size: 1.25rem; margin-bottom: 6px; }
.form-subtitle { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group input.error { border-color: var(--red-500); }
.field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 4px;
  min-height: 16px;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
}
.phone-prefix {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-300);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 13px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.phone-input-wrap input {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex: 1;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
  animation: pulse-cta 2.5s infinite;
}
.btn-submit svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-submit:hover { background: var(--teal-700); }
.btn-submit:disabled { background: var(--gray-300); cursor: not-allowed; animation: none; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--teal-600); text-decoration: underline; }

/* ---- Form Success ---- */
.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; color: var(--teal-600); }
.form-success h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--teal-600); }
.form-success p { font-size: 0.95rem; margin-bottom: 8px; }
.success-note { font-size: 0.82rem; color: var(--gray-500); }

/* ---- Footer ---- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-100); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal-100); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 800px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }
  .trust-mini { justify-content: center; }
  .price-block { justify-content: center; }
  .hero-cta-group { text-align: center; }

  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; }
  .details-grid { grid-template-columns: 1fr; }
  .details-image { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .order-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { padding: 40px 0 30px; }
  .problems-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn-primary { padding: 14px 20px; font-size: 0.95rem; }
  .price-new { font-size: 1.7rem; }
  .order-price-new { font-size: 1.8rem; }
}
