:root {
  --white: #FFFFFF;
  --off-white: #F7F4ED;
  --light: #ECE6D8;
  --mid: #C5BBA8;
  --dark: #15140F;
  --charcoal: #2A2926;
  --muted: #807B70;
  --green: #2D5016;
  --green-mid: #4A7A28;
  --green-light: #7AAF4A;
  --green-pale: #D6E8C0;
  --accent: #E8622A;
  --gold: #C4922A;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

nav {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--light);
  padding: 0 32px;
  height: 60px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700;
  color: var(--dark); text-decoration: none;
  letter-spacing: -0.3px; line-height: 1;
}
.brand em { font-style: italic; color: var(--green-mid); }
.nav-back { font-size: 13px; color: var(--muted); text-decoration: none; }
.nav-back:hover { color: var(--green-mid); }

.bm-nav-links {
  display: flex; gap: 6px; align-items: center; list-style: none;
}
.bm-nav-links li a {
  font-size: 14px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; transition: color 0.15s;
  padding: 6px 12px; border-radius: 8px;
}
.bm-nav-links li a:hover { color: var(--green-mid); background: var(--light); }
.bm-nav-links a.bm-nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 100px; font-weight: 600;
  font-size: 13.5px !important; letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s !important;
}
.bm-nav-links a.bm-nav-cta:hover {
  background: var(--green-mid) !important; color: var(--white) !important;
  transform: translateY(-1px);
}
.bm-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  border-radius: 8px;
}
.bm-nav-toggle:hover { background: var(--light); }
.bm-nav-toggle span {
  width: 20px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all 0.25s;
}
.bm-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bm-nav-toggle.open span:nth-child(2) { opacity: 0; }
.bm-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  nav { padding: 0 18px; }
  .bm-nav-toggle { display: flex; }
  .bm-nav-links {
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column;
    gap: 0; padding: 8px 0;
    transform: translateX(110%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    border-top: 1px solid var(--light);
    z-index: 99; overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  }
  .bm-nav-links.open { transform: translateX(0); }
  .bm-nav-links li a {
    display: block; width: 100%; padding: 15px 24px !important;
    font-size: 16px !important; border-radius: 0 !important;
    border-bottom: 1px solid var(--light);
    background: none !important;
  }
  .bm-nav-links li a:hover { background: var(--off-white) !important; }
  .bm-nav-links a.bm-nav-cta {
    display: block; margin: 16px 20px !important; padding: 15px !important;
    border-radius: 100px !important; text-align: center;
    border-bottom: none; font-size: 15px !important;
  }
  body.bm-nav-open { overflow: hidden; }
}

.bm-footer {
  background: var(--dark); color: var(--white);
  padding: 60px 32px 30px;
  margin-top: auto;
}
.bm-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bm-footer-col-brand .bm-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.bm-footer-col-brand .bm-footer-brand em { font-style: italic; color: var(--green-light); }
.bm-footer-col-brand p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.65; max-width: 320px;
}
.bm-footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.bm-footer-col ul { list-style: none; }
.bm-footer-col li { margin-bottom: 9px; }
.bm-footer-col a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 13px; transition: color 0.15s;
}
.bm-footer-col a:hover { color: var(--green-light); }
.bm-footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.bm-footer-bottom strong { color: rgba(255,255,255,0.55); }
@media (max-width: 720px) {
  .bm-footer { padding: 40px 24px 24px; }
  .bm-footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .bm-footer-bottom { flex-direction: column; padding-top: 20px; }
}

body { display: flex; flex-direction: column; min-height: 100vh; }
body > nav { flex-shrink: 0; }
body > main, body > section, body > article, body > div.form-wrap, body > div.legal-wrap, body > div.faq-wrap, body > main.about-wrap { flex: 1 0 auto; }

/* Simple article-style page (about, legal, faq, parteneri, lead-magnet) */
.simple-page { max-width: 720px; margin: 0 auto; padding: 56px 32px 80px; }
.simple-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.5px;
}
.simple-page h1 em { font-style: italic; color: var(--green-mid); }
.simple-page > p, .simple-page > section > p {
  font-size: 16px; line-height: 1.75; color: var(--charcoal); margin-bottom: 16px;
}
.simple-page .lede { font-size: 18px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.simple-page h2 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 32px 0 14px; line-height: 1.2; }

.form-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 18px;
  padding: 28px;
  margin: 20px 0;
}
.form-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--light); border-radius: 10px;
  font-family: inherit; font-size: 15px; margin-bottom: 14px;
  background: var(--white); color: var(--dark);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,122,40,0.12);
}
.form-card textarea { min-height: 100px; resize: vertical; font: inherit; }
.form-card .form-msg { font-size: 13px; line-height: 1.55; margin-top: 12px; min-height: 18px; }
.form-card .form-msg.ok { color: var(--green-mid); }
.form-card .form-msg.err { color: #a04040; }

.blog-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.blog-list li {
  border-bottom: 1px solid var(--light); padding: 22px 0;
}
.blog-list li:last-child { border-bottom: none; }
.blog-list a.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; line-height: 1.2; color: var(--dark); text-decoration: none;
  display: inline-block; margin-bottom: 6px;
  transition: color 0.15s;
}
.blog-list a.blog-title:hover { color: var(--green-mid); }
.blog-list .blog-meta {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.06em;
}
.blog-list .blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 6px; }

.founder-card {
  display: flex; gap: 20px; align-items: center;
  background: var(--white); border: 1px solid var(--light);
  border-radius: 18px; padding: 24px; margin: 32px 0;
}
.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 28px;
  flex-shrink: 0;
}

.pack-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 56px;
  align-items: center;
}
.pack-hero-img {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 28px 70px -16px rgba(21,20,15,0.25);
  position: relative;
}
.pack-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.pack-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  color: var(--green-mid); text-transform: uppercase;
  margin-bottom: 24px;
}
.pack-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--green-mid); }
.pack-eyebrow.limited { color: var(--gold); }
.pack-eyebrow.limited::before { background: var(--gold); }
.pack-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--dark);
}
.pack-hero h1 em { font-style: italic; font-weight: 400; color: var(--green-mid); display: inline-block; }
.pack-hero-lede {
  font-size: 17px; color: var(--charcoal); line-height: 1.6;
  margin-bottom: 28px; font-weight: 400; max-width: 480px;
}
.pack-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
  background: var(--off-white); border: 1px solid var(--light);
  padding: 8px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.pack-price-block { margin-bottom: 24px; }
.pack-price {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700; line-height: 1;
  color: var(--dark); letter-spacing: -1.5px;
}
.pack-price-sub {
  font-size: 12px; color: var(--muted); margin-top: 8px;
  font-family: 'DM Mono', monospace; letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .pack-hero { grid-template-columns: 1fr; padding: 32px 22px 32px; gap: 28px; }
  .pack-hero-img { order: -1; aspect-ratio: 16/10; }
  .pack-hero h1 { font-size: clamp(32px, 8vw, 44px); }
}
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 360px;
  background: var(--dark); color: var(--white);
  padding: 17px 30px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(21,20,15,0.18);
}
.btn-buy:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(21,20,15,0.25);
}
.btn-buy:active { transform: translateY(0); }
.btn-buy.primary { background: var(--green); }
.btn-buy.primary:hover { background: var(--green-mid); }
.btn-buy.gold { background: var(--gold); color: var(--dark); }
.btn-buy.gold:hover { background: #b8861e; color: var(--white); }
.btn-buy.outline {
  background: var(--white); color: var(--dark);
  border: 1.5px solid var(--mid); box-shadow: none;
}
.btn-buy.outline:hover {
  border-color: var(--dark); background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.btn-buy:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px;
  font-size: 12px; color: var(--muted); letter-spacing: 0.01em;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green-mid); flex-shrink: 0;
}
.live-counter {
  margin-top: 14px; font-size: 12px; color: var(--green-mid); font-weight: 600;
}
.countdown-box {
  margin-top: 14px; padding: 12px 16px;
  background: rgba(196,146,42,0.12); border-radius: 12px;
  font-size: 13px; color: var(--gold); font-weight: 600;
}
.countdown-box .cd-num { font-family: 'DM Mono', monospace; font-size: 18px; }

.pack-section {
  max-width: 880px; margin: 0 auto;
  padding: 50px 32px;
}
.pack-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  margin-bottom: 20px;
}
.pack-section h2 em { font-style: italic; color: var(--green-mid); }
.benefit-list { list-style: none; }
.benefit-list li {
  padding: 14px 0; border-bottom: 1px solid var(--light);
  font-size: 15px; line-height: 1.6; color: var(--charcoal);
  display: flex; gap: 12px;
}
.benefit-list li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

.pack-breadcrumb {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 32px 0;
  font-size: 12px; color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.pack-breadcrumb a { color: var(--green-mid); text-decoration: none; }
.pack-breadcrumb a:hover { color: var(--green); }

.meal-samples {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.meal-sample-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: 16px; padding: 20px 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.meal-sample-card:hover { border-color: var(--mid); transform: translateY(-2px); }
.meal-sample-card .slot {
  font-family: 'DM Mono', monospace;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green-mid); font-weight: 500; margin-bottom: 8px;
}
.meal-sample-card .name {
  font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 10px;
  color: var(--dark);
}
.meal-sample-card .meta {
  font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace;
  padding-top: 10px; border-top: 1px solid var(--light);
}

.workout-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: 18px; padding: 28px 32px;
}
.workout-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px;
}
.workout-card .dur {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: var(--green-mid); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.workout-card ul { list-style: none; }
.workout-card li {
  padding: 12px 0; border-bottom: 1px solid var(--light);
  font-size: 14px; line-height: 1.55; color: var(--charcoal);
  display: flex; gap: 12px;
}
.workout-card li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-mid); margin-top: 8px; flex-shrink: 0;
}
.workout-card li:last-child { border-bottom: none; }

.pack-faq details.faq-item {
  border: 1px solid var(--light); border-radius: 14px;
  margin-bottom: 10px; background: var(--white);
  transition: border-color 0.15s;
}
.pack-faq details.faq-item[open] { border-color: var(--mid); }
.pack-faq summary {
  padding: 18px 22px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark);
}
.pack-faq summary::-webkit-details-marker { display: none; }
.pack-faq summary span {
  font-size: 22px; color: var(--green-mid); font-weight: 300; line-height: 1;
  transition: transform 0.2s;
}
.pack-faq details[open] summary span { transform: rotate(45deg); }
.pack-faq .faq-a {
  padding: 0 22px 20px; font-size: 14px; color: var(--charcoal);
  line-height: 1.7;
}

.bundle-bump-card {
  background: linear-gradient(135deg, rgba(196,146,42,0.12), rgba(122,175,74,0.08));
  border: 1.5px solid rgba(196,146,42,0.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0 0;
}
.bundle-bump-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.bundle-bump-label input { width: auto; margin-top: 3px; flex-shrink: 0; }
.bundle-bump-note { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 480px; margin: 0 auto;
  background: var(--dark); color: var(--white);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  z-index: 90;
  box-shadow: 0 12px 40px rgba(21,20,15,0.35);
}
.sticky-cta.visible { display: flex; }
.sticky-cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--white);
}
.sticky-cta .btn-buy {
  width: auto; padding: 12px 22px; font-size: 13px; max-width: none;
  background: var(--green-light); color: var(--dark); box-shadow: none;
}
.sticky-cta .btn-buy:hover { background: #8fc55a; transform: none; box-shadow: none; }
@media (max-width: 720px) {
  .sticky-cta { bottom: 12px; left: 12px; right: 12px; padding: 6px 6px 6px 20px; }
}

/* Exit intent popup */
.exit-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(28,28,26,0.6);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.exit-overlay.open { display: flex; }
.exit-modal {
  background: var(--white); border-radius: 20px;
  padding: 32px; max-width: 420px; width: 100%;
  text-align: center; position: relative;
}
.exit-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; margin-bottom: 10px;
}
.exit-modal p { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.exit-modal input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--light);
  border-radius: 12px; font-size: 15px; margin-bottom: 12px;
  font-family: inherit;
}
.exit-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 22px; color: var(--muted); cursor: pointer; background: none; border: none;
}

footer {
  background: var(--dark); color: var(--white);
  padding: 50px 32px 30px; text-align: center; margin-bottom: 70px;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.footer-brand em { font-style: italic; color: var(--green-light); }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 12px; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); max-width: 680px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 768px) {
  .pack-hero { grid-template-columns: 1fr; padding: 32px 20px 24px; }
  .pack-hero-img { order: -1; }
  nav { padding: 14px 20px; }
  .sticky-cta.visible { display: flex; }
  footer { margin-bottom: 80px; }
}
