/* ============================================================
   BALANCIO — Premium Weight Loss · Portugal
   Design: Light editorial / health magazine aesthetic
   Completely different from original dark neon theme
   ============================================================ */

:root {
  --cream:       #faf8f4;
  --warm-white:  #ffffff;
  --sand:        #f2ede4;
  --sand-mid:    #e8e0d2;
  --text-dark:   #1a1a2e;
  --text-mid:    #3d3d5c;
  --text-muted:  #7a7a9a;
  --accent:      #2d7a4f;        /* forest green — health */
  --accent-light:#e8f5ee;
  --accent-2:    #e07b39;        /* warm amber — energy */
  --accent-2-lt: #fdf0e6;
  --gold:        #c9a84c;
  --gold-lt:     #fdf6e3;
  --border:      rgba(26,26,46,0.10);
  --border-soft: rgba(26,26,46,0.06);
  --shadow-sm:   0 2px 12px rgba(26,26,46,0.07);
  --shadow-md:   0 8px 32px rgba(26,26,46,0.10);
  --shadow-lg:   0 20px 60px rgba(26,26,46,0.13);
  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   8px;
  --max-width:   1160px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 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(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── TOP BAR ── */
.top-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

/* ── BRAND ── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #1a5c35 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(45,122,79,0.30);
}

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

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

.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-family: var(--font-sans);
}

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

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

.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(45,122,79,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,122,79,0.35);
  background: var(--accent) !important;
  color: #fff !important;
}

/* ── HAMBURGER (mobile) ── */
.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-dark);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ── EDITORIAL BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.badge-green  { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(45,122,79,0.18); }
.badge-amber  { background: var(--accent-2-lt);  color: var(--accent-2); border: 1px solid rgba(224,123,57,0.18); }
.badge-gold   { background: var(--gold-lt);       color: var(--gold); border: 1px solid rgba(201,168,76,0.22); }
.badge-ad     { background: #f0f0f8; color: var(--text-muted); border: 1px solid var(--border); }

/* ── 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.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(45,122,79,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,122,79,0.38);
  color: #fff;
}

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

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

.btn-amber {
  background: var(--accent-2);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  box-shadow: 0 6px 20px rgba(224,123,57,0.28);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224,123,57,0.38);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #fff 0%, var(--sand) 55%, #eef7f2 100%);
  padding: 64px 0 56px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,0.07), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

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

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

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

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw + 0.8rem, 3.2rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

.hero-intro {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-features {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.93rem;
  color: var(--text-mid);
}

.hero-feature-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--accent-light);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

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

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

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

.hero-product-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #5ab87a);
}

.hero-product-card img {
  width: 85%;
  margin: 0 auto 20px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.12));
}

.product-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  margin-top: 8px;
}

.price-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; opacity: 0.85; }
.price-value { font-size: 1.6rem; font-weight: 800; font-family: var(--font-serif); line-height: 1.1; }
.price-sub   { font-size: 0.72rem; opacity: 0.8; }

.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-top-right { top: 18px; right: -14px; color: var(--accent); }
.fb-bottom-left { bottom: 24px; left: -14px; color: var(--accent-2); }

/* ── SECTION BASE ── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

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

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

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

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

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw + 0.6rem, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

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

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

/* ── TRUST BAR ── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

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

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

/* ── ARTICLE SECTION (editorial) ── */
.article-section {
  background: #fff;
}

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

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-dark);
  margin: 0 0 16px;
  font-weight: 700;
}

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

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

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  background: var(--accent-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

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

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

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.sidebar-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 14px;
}

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

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

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

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

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

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #1a5c35 100%);
  padding: 52px 0;
}

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

.stat-item { color: #fff; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.82;
  font-weight: 500;
}

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

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

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  width: 52px; height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-serif);
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(45,122,79,0.28);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}

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

/* ── TESTIMONIALS ── */
.testimonials-section { background: #fff; }

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

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--accent-light);
  line-height: 1;
  font-weight: 700;
}

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

.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 16px;
  font-style: italic;
}

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

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

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

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

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

/* ── PRODUCT SHOWCASE ── */
.product-section { background: var(--sand); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-visual {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.product-visual img {
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.10));
}

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

.product-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.product-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

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

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── ORDER SECTION ── */
.order-section {
  background: linear-gradient(160deg, #fff 0%, var(--sand) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.order-price-block {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-price-label { font-size: 0.85rem; opacity: 0.85; font-weight: 600; }
.order-price-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.order-price-note { font-size: 0.76rem; opacity: 0.75; margin-top: 4px; }

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

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

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

/* ── FORM ── */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}

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

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

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(45,122,79,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,122,79,0.38);
}

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

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

/* ── BLOG SECTION ── */
.blog-section { background: #fff; }

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

.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.blog-card-img {
  height: 180px;
  background: var(--sand-mid);
  overflow: hidden;
  position: relative;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-light), var(--sand));
}

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

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

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

.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 999px;
}

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

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

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

/* ── DISCLAIMER ── */
.disclaimer-section {
  background: var(--sand);
  border-top: 1px solid var(--border);
}

.disclaimer-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.disclaimer-icon {
  width: 40px; height: 40px;
  background: var(--gold-lt);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: #fff;
  padding: 48px 0 28px;
}

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

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); }

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

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

.footer-contact-icon { font-size: 0.9rem; 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.76rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  max-width: 680px;
}

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

/* ── CONTENT PAGES (policy, terms, contacts) ── */
.content-page { padding: 52px 0 60px; }

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

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}

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

.content-card h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.content-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  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); text-decoration: underline; }

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

/* ── BLOG PAGES ── */
.blog-page { padding: 52px 0 60px; }

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

.post-page { padding: 52px 0 60px; }

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

.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}

.post-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.post-hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

.post-cat {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 999px;
}

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

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

.post-card h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 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(26,26,46,0.5);
  z-index: 200;
  backdrop-filter: blur(4px);
}

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

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

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

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

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

/* ── 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: 36px;
  }

  .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: 40px 0 36px; }
  .section { padding: 44px 0; }

  .hero h1 { font-size: 1.9rem; }

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

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

  .content-card,
  .post-card { padding: 24px 20px; }

  .trust-items { gap: 20px; }

  .order-price-block { flex-direction: column; text-align: center; gap: 8px; }

  .fb-top-right,
  .fb-bottom-left { display: none; }
}