/* ============================================================
   OCULARRX — VistaMax · Ciencia para tu visión · España
   Design: Sage — warm cream · forest green · terracotta CTA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --bg:            #FDF9F3;
  --bg-white:      #FFFFFF;
  --bg-alt:        #FFFFFF;
  --bg-dark:       #1C1917;
  --bg-dark-2:     #292524;
  --bg-dark-3:     #1A1614;

  --text-dark:     #1C1917;
  --text-mid:      #3A3530;
  --text-muted:    #78716C;
  --text-light:    #C8C0B8;
  --text-on-dark:  #F0EBE3;

  --accent:        #16A34A;
  --accent-dark:   #14532D;
  --accent-light:  #DCFCE7;
  --accent-glow:   rgba(22,163,74,0.16);
  --accent-grad:   linear-gradient(135deg, #14532D 0%, #16A34A 100%);

  --cta:           #C2410C;
  --cta-dark:      #9A3412;
  --cta-light:     #FFF7ED;
  --cta-grad:      linear-gradient(135deg, #9A3412 0%, #C2410C 55%, #EA580C 100%);
  --shadow-cta:    0 4px 22px rgba(194,65,12,0.28);

  --warm:          #D97706;
  --warm-light:    #FEF3C7;

  --border:        rgba(28,25,23,0.10);
  --border-light:  rgba(255,255,255,0.10);
  --border-accent: rgba(22,163,74,0.22);

  --shadow-sm:     0 2px 12px rgba(28,25,23,0.06);
  --shadow-md:     0 8px 32px rgba(28,25,23,0.09);
  --shadow-lg:     0 20px 72px rgba(28,25,23,0.13);
  --shadow-green:  0 8px 36px rgba(22,163,74,0.18);

  --radius-xl:     20px;
  --radius-lg:     12px;
  --radius-md:     8px;
  --radius-sm:     5px;
  --radius-full:   999px;

  --max-width:     1160px;
  --font-serif:    'Merriweather', Georgia, serif;
  --font-sans:     'Nunito', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { display: block; }

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--accent-dark);
  color: var(--accent-light);
  text-align: center;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 9px 16px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,249,243,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* ── BRAND ── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.brand-logo svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.brand-text-wrap { display: grid; gap: 1px; }

.brand-tagline {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-rx {
  color: var(--accent);
  font-size: 0.68em;
  vertical-align: super;
  letter-spacing: 0;
}

/* ── NAV ── */
.nav { display: flex; align-items: center; gap: 2px; }

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.nav-cta {
  background: var(--cta-grad);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-cta);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(194,65,12,0.40);
  color: #fff !important;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.badge-green  { background: var(--accent-light); color: var(--accent-dark); border: 1px solid var(--border-accent); }
.badge-amber  { background: var(--cta-light); color: var(--cta-dark); border: 1px solid rgba(194,65,12,0.22); }
.badge-gold   { background: var(--warm-light); color: var(--warm); border: 1px solid rgba(217,119,6,0.22); }
.badge-ad     { background: #F5F0E8; color: #78716C; border: 1px solid rgba(120,113,108,0.18); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--cta-grad);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.96rem;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,65,12,0.38);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
}

.btn-outline-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.32);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.60);
  color: #fff;
}

.btn-amber {
  background: var(--cta-grad);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  box-shadow: var(--shadow-cta);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,65,12,0.38);
  color: #fff;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 1.04rem;
}

/* ══════════════════════════════════════════
   HERO — warm dark brown, sage green glow
══════════════════════════════════════════ */
.hero {
  background: var(--bg-dark);
  padding: 88px 0 84px;
  overflow: hidden;
  position: relative;
}

/* Sage green ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 62%);
  pointer-events: none;
}

/* Warm glow bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(194,65,12,0.09) 0%, transparent 62%);
  pointer-events: none;
}

.hero-clip { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-divider {
  width: 40px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-category {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw + 0.4rem, 3.6rem);
  line-height: 1.18;
  margin: 0 0 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.hero-intro {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.84;
}

.hero-intro strong { color: rgba(255,255,255,0.90); font-weight: 700; }

.hero-features {
  display: grid;
  gap: 8px;
  margin-bottom: 38px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s;
}

.hero-feature:hover {
  background: rgba(22,163,74,0.06);
  border-color: rgba(22,163,74,0.20);
}

.hero-feature-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(22,163,74,0.16);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 0.80rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.26);
  margin-top: 18px;
  line-height: 1.6;
}

/* Hero product card */
.hero-visual { position: relative; }

.hero-product-card {
  background: #252220;
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(22,163,74,0.10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-grad);
}

.hero-product-card::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-product-card img {
  width: 84%;
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 32px rgba(22,163,74,0.20));
  position: relative;
  z-index: 1;
}

.product-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--cta-grad);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  margin-top: 8px;
  box-shadow: 0 6px 22px rgba(194,65,12,0.28);
  position: relative;
  z-index: 1;
}

.price-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; opacity: 0.84; text-transform: uppercase; }
.price-value { font-size: 1.82rem; font-weight: 700; font-family: var(--font-serif); line-height: 1.1; }
.price-sub   { font-size: 0.70rem; opacity: 0.80; }

.floating-badge {
  position: absolute;
  background: #2E2B29;
  border: 1px solid rgba(22,163,74,0.26);
  border-radius: var(--radius-lg);
  padding: 7px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.82);
  z-index: 2;
}

.fb-top-right  { top: 18px; right: -14px; }
.fb-bottom-left{ bottom: 24px; left: -14px; }

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-eyebrow.centered { justify-content: center; }

.eyebrow-line {
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw + 0.4rem, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.24;
}

.section-subtitle {
  font-size: 0.99rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
  line-height: 1.76;
}

.section-subtitle.wide { max-width: 720px; }

/* ── TRUST BAR — WHITE background with warm tone ── */
.trust-bar {
  background: var(--bg-alt);
  padding: 24px 0;
  border-bottom: 1.5px solid var(--border);
  border-top: 1.5px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-mid);
}

.trust-icon {
  width: 34px; height: 34px;
  background: var(--accent-light);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
}

/* ── ARTICLE SECTION ── */
.article-section { background: var(--bg); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.58rem;
  color: var(--text-dark);
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.26;
}

.article-body p {
  color: var(--text-mid);
  margin: 0 0 18px;
  font-size: 1.00rem;
  line-height: 1.88;
}

.article-body p:last-child { margin-bottom: 0; }

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 18px 24px;
  background: var(--accent-light);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  margin: 30px 0;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.10rem;
  font-style: italic;
  color: var(--accent-dark);
  margin: 0 !important;
  line-height: 1.64;
}

.article-sidebar { display: grid; gap: 20px; }

.sidebar-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.sidebar-card-title {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ingredient-list { display: grid; gap: 8px; }

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.ingredient-num {
  width: 26px; height: 26px;
  background: var(--accent-grad);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ingredient-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ingredient-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--accent-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(255,255,255,0.04), transparent 65%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item { color: #fff; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.stat-label {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.56);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.14);
  align-self: stretch;
  margin: auto 0;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg-alt); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1px;
  background: var(--border);
  pointer-events: none;
}

.step-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px; height: 56px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-sans);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--accent);
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg); }

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

.testimonial-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 22px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-light);
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star { color: var(--warm); font-size: 0.93rem; }

.testimonial-text {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.76;
  margin: 0 0 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.87rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-location {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.disclaimer-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 30px;
  font-style: italic;
}

/* ── PRODUCT SHOWCASE ── */
.product-section {
  background: var(--bg-dark-2);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.product-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,65,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-visual {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  box-shadow: var(--shadow-green);
}

.product-visual img {
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 16px 44px rgba(22,163,74,0.22));
}

.product-info { display: grid; gap: 24px; }

.product-name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.product-tagline {
  font-size: 0.99rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.76;
}

.product-benefits { display: grid; gap: 10px; }

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.benefit-row:hover { border-color: rgba(22,163,74,0.22); }

.benefit-icon {
  width: 36px; height: 36px;
  background: rgba(22,163,74,0.14);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.benefit-text span {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.40);
}

/* ── ORDER SECTION ── */
.order-section {
  background: var(--bg);
  border-top: 1.5px solid var(--border);
}

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

.order-info { display: grid; gap: 24px; }

.order-price-block {
  background: var(--accent-grad);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-green);
}

.order-price-label { font-size: 0.78rem; opacity: 0.82; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.order-price-amount {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
.order-price-note { font-size: 0.72rem; opacity: 0.70; margin-top: 4px; }

.order-guarantees { display: grid; gap: 10px; }

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
  font-weight: 600;
}

.guarantee-icon { font-size: 1.1rem; }

/* ── FORM ── */
.form-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cta-grad);
}

.form-title {
  font-family: var(--font-sans);
  font-size: 1.30rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 26px;
}

.form { display: grid; gap: 16px; }

.form-group { display: grid; gap: 6px; }

.form-label {
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--text-dark);
  font-size: 0.93rem;
  font-family: var(--font-sans);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
  background: #fff;
}

.form-input::placeholder { color: var(--text-muted); }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--cta-grad);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,65,12,0.40);
}

.form-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.form-legal a { color: var(--accent-dark); text-decoration: underline; }

/* ── BLOG SECTION ── */
.blog-section { background: var(--bg-alt); }

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

.blog-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 175px;
  overflow: hidden;
  position: relative;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card-cat {
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

.blog-card-title {
  font-family: var(--font-sans);
  font-size: 1.00rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
  line-height: 1.40;
}

.blog-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.62;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
}

/* ── DISCLAIMER ── */
.disclaimer-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.disclaimer-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.disclaimer-icon {
  width: 40px; height: 40px;
  background: rgba(194,65,12,0.14);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.34);
  line-height: 1.76;
}

.disclaimer-text strong { color: rgba(255,255,255,0.60); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 56px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.30); }
.footer-brand .brand-rx { color: var(--accent); }

.footer-brand-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.36);
  margin-top: 14px;
  line-height: 1.72;
}

.footer-col-title {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.24);
  margin-bottom: 18px;
}

.footer-links { display: grid; gap: 10px; }

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.46);
  font-weight: 500;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.46);
  margin-bottom: 9px;
}

.footer-contact-icon { font-size: 0.88rem; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.20);
  line-height: 1.66;
  max-width: 700px;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.20);
  white-space: nowrap;
}

/* ── CONTENT PAGES ── */
.content-page { padding: 60px 0 68px; background: var(--bg); }

.content-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.content-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
}

.content-card h1 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0 28px;
  letter-spacing: -0.01em;
}

.content-card h2 {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 32px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.content-card h2:first-of-type { border-top: none; }

.content-card p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.86;
  margin: 0 0 16px;
}

.content-card p:last-child { margin-bottom: 0; }

.content-card strong { color: var(--text-dark); }
.content-card a { color: var(--accent-dark); text-decoration: underline; }

.content-card ul {
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.86;
  margin: 0 0 16px;
}

/* ── BLOG PAGES ── */
.blog-page { padding: 60px 0 68px; background: var(--bg); }

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.post-page { padding: 60px 0 68px; background: var(--bg); }

.post-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.post-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.post-cat {
  font-size: 0.69rem;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.post-card h1 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 22px;
  line-height: 1.30;
}

.post-card p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.86;
  margin: 0 0 16px;
}

.post-card h2 {
  font-family: var(--font-sans);
  font-size: 1.10rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 32px 0 12px;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,25,23,0.65);
  z-index: 200;
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg);
  padding: 24px;
  display: grid;
  gap: 8px;
  align-content: start;
  box-shadow: var(--shadow-lg);
  border-left: 1.5px solid var(--border);
}

.mobile-nav.open { display: block; }

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  justify-self: end;
  padding: 4px 8px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  color: var(--text-mid);
  font-size: 0.93rem;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid, .product-grid, .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-product-card { max-width: 380px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero { padding: 52px 0 48px; }
  .section { padding: 52px 0; }
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .content-card, .post-card { padding: 28px 22px; }
  .trust-items { gap: 22px; }
  .order-price-block { flex-direction: column; text-align: center; gap: 12px; }
  .fb-top-right, .fb-bottom-left { display: none; }
}
