/* --- ALAP BEÁLLÍTÁSOK --- */
:root {
  --bm-burgundy: #7b1f2a;
  --bm-teal: #0f4550;
  --bm-cream: #fff9f5;
  --bm-ink: #1a1a1d;
  --bm-muted: #585860;
  --bm-cta: #D16053; 
  --bm-cta-hover: #b84e42;
  --bm-gold: #fbbf24;
  --bm-border: #e6e6eb;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--bm-ink);
  background: #fff;
  line-height: 1.6;
  padding-top: 54px;
  font-size: 17px; 
}
h1, h2, h3 { font-family: var(--font-head); margin: 0; font-weight: 800; }
a { text-decoration: none; transition: 0.2s; }
img, video { max-width: 100%; display: block; }

/* HEADER */
.bm-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 8px 16px;
  backdrop-filter: blur(10px);
}
.bm-topbar__inner {
  max-width: 1150px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.brand-main { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; color: var(--bm-ink); }
.brand-highlight { color: var(--bm-burgundy); }
.brand-sub { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--bm-muted); font-weight: 700; }
.btn-nav-cta {
  font-size: 13px; padding: 8px 20px;
  background: var(--bm-cta) !important; color: #fff;
  border-radius: 50px; text-align: center; font-weight: 700;
}
.btn-nav-cta:hover { background: var(--bm-cta-hover) !important; }

/* MOBIL FEJLÉC VÉKONYÍTÁS & RÖVIDÍTÉS */
.cta-mobile { display: none; }
@media (max-width: 768px) {
    body { padding-top: 45px; } 
    .bm-topbar { padding: 4px 12px; }
    
    .brand-main { font-size: 16px; }
    /* Mobilon a brand-sub szövegét módosítjuk CSS-ben vagy elrejtjük */
    /* Itt kicsit csalunk: kisebbre vesszük, hogy kiférjen */
    .brand-sub { font-size: 8px; letter-spacing: 0; } 

    .cta-desktop { display: none; }
    .cta-mobile { display: inline; }
    .btn-nav-cta { padding: 6px 14px; font-size: 12px; }
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
  padding: 30px 16px 60px;
  overflow: hidden;
}
.hero__container {
  max-width: 1150px; margin: 0 auto;
  display: grid; gap: 20px;
  position: relative; z-index: 2;
}
@media (min-width: 992px) {
  .hero__container { grid-template-columns: 48% 48%; align-items: center; justify-content: space-between; }
  .hero { padding-top: 50px; padding-bottom: 90px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.stars { color: var(--bm-gold); font-size: 12px; }
.eyebrow-text { font-size: 11px; font-weight: 700; color: var(--bm-muted); }
.hero__title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; color: var(--bm-ink); margin-bottom: 12px;
}
.highlight-text { color: var(--bm-burgundy); font-style: italic; }
.hero__subtitle {
  font-size: 16px; color: var(--bm-muted);
  margin-bottom: 16px; line-height: 1.5;
}
@media (min-width: 992px) { .hero__subtitle { font-size: 18px; max-width: 95%; } }

/* MOBIL HERO FELHÚZÁS */
@media (max-width: 768px) {
    .hero { padding-top: 10px; padding-bottom: 20px; }
    .hero__eyebrow { margin-bottom: 8px; }
    .hero__title { font-size: 28px; margin-bottom: 10px; }
    .hero__subtitle { font-size: 15px; margin-bottom: 12px; }
    .btn-hero-wide { padding: 12px 20px; font-size: 15px; }
}

.btn-main {
  display: inline-flex; justify-content: center; align-items: center;
  background: var(--bm-cta); color: #fff;
  font-weight: 800; font-size: 16px; padding: 14px 28px;
  border-radius: 50px; transition: transform 0.1s;
  box-shadow: 0 8px 20px rgba(209, 96, 83, 0.3);
}
.btn-main:hover { background: var(--bm-cta-hover); transform: translateY(-1px); }
.btn-hero-wide { width: 100%; text-align: center; }
@media (min-width: 600px) { .btn-hero-wide { width: auto; } }

.trust-bar { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; justify-content: center; }
@media (min-width: 992px) { .trust-bar { justify-content: flex-start; margin-top: 14px; } }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--bm-muted); }
.trust-icon { width: 14px; height: 14px; color: var(--bm-teal); }

.hero__media-collage { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, 110px); gap: 8px; position: relative; margin-top: 10px; }
@media (min-width: 768px) { .hero__media-collage { grid-template-rows: repeat(2, 170px); gap: 12px; } }
.collage-item { border-radius: 12px; background-size: cover; background-position: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.item-1 { grid-column: 1 / 4; grid-row: 1 / 3; } .item-2 { grid-column: 4 / 7; grid-row: 1 / 2; } .item-3 { grid-column: 4 / 5; grid-row: 2 / 3; } .item-4 { grid-column: 5 / 6; grid-row: 2 / 3; } .item-5 { grid-column: 6 / 7; grid-row: 2 / 3; }
.collage-badge { position: absolute; bottom: 15px; left: 15px; right: 15px; background: rgba(255, 255, 255, 0.98); padding: 12px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.05); }
@media (min-width: 768px) { .collage-badge { width: 300px; right: auto; } }
.cb-quote { font-size: 12px; font-style: italic; color: #333; margin: 0 0 8px; line-height: 1.4; }
.cb-footer { display: flex; align-items: center; gap: 8px; }
.cb-stars { color: var(--bm-gold); font-size: 10px; }
.cb-text { font-size: 10px; font-weight: 800; color: var(--bm-ink); text-transform: uppercase; }
.wave-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; pointer-events: none; }
.wave-bottom svg { width: 100%; height: auto; }

/* STATS */
.stats { background: var(--bm-teal); color: #fff; padding: 20px 16px 50px; position: relative; z-index: 2; margin-top: -2px; }
.stats__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
@media (max-width: 600px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.stat-item__value { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 2px; }
.stat-item__label { font-size: 11px; text-transform: uppercase; opacity: 0.9; line-height: 1.3; }
.stat-item__label span { display: block; font-size: 10px; opacity: 0.6; text-transform: none; margin-top: 2px; }

/* PAIN DEEP */
.pain-deep { padding: 60px 16px; background: #fff; }
.pain__inner { max-width: 800px; margin: 0 auto; }
.pain__block { margin-bottom: 40px; }
.pain__block h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--bm-ink); line-height: 1.3; margin-bottom: 20px; text-align:center; }
.pain__block h3 { font-size: 20px; color: var(--bm-ink); margin-bottom: 15px; }
.pain__block p { font-size: 16px; color: #444; margin-bottom: 15px; }
.pain__block--intro h3 { color: var(--bm-burgundy); text-align: center; font-family: var(--font-body); font-weight: 800; }
.pain__block--intro p { text-align: center; font-size: 18px; line-height: 1.6; }
.list-intro { font-weight: 700; margin-bottom: 12px !important; }
.pain__list-check { list-style: none; padding: 0; margin: 0; font-size: 16px; color: #333; }
.pain__list-check li { margin-bottom: 14px; position: relative; padding-left: 32px; }
.pain__list-check li::before { content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23166534'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.pain__highlight-box { font-size: 18px; line-height: 1.6; color: var(--bm-ink); border-left: 5px solid var(--bm-burgundy); background: #fff5f5; padding: 24px; border-radius: 0 12px 12px 0; margin: 30px 0; }
.pain__highlight-box strong { color: var(--bm-burgundy); }
.pain__list-cross-red { list-style: none; padding: 0; margin: 0; font-size: 16px; color: #333; }
.pain__list-cross-red li { margin-bottom: 14px; position: relative; padding-left: 32px; }
.pain__list-cross-red li::before { content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c53030'%3E%3Cpath d='M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.pain__cta-wrapper { text-align: center; margin-top: 40px; }
.btn-pain-cta { font-size: 18px; padding: 16px 40px; }
.fud-text { font-size: 12px; color: #666; margin-top: 8px; font-weight: 600; text-align: center; }
.fud-text--left { text-align: left; }

/* REVIEWS */
.bm-proofwall { background: #fdfdfd; padding: 60px 16px; border-top: 1px solid var(--bm-border); border-bottom: 1px solid var(--bm-border); }
.bm-proofwall__inner { max-width: 1150px; margin: 0 auto; }
.bm-proofwall__inner h2 { text-align: center; margin-bottom: 6px; font-size: 32px; }
.bm-proofwall__sub { text-align: center; margin-bottom: 40px; color: #777; font-size: 16px; }
.mixed-review-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .mixed-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .mixed-review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); overflow: hidden; transition: transform 0.2s ease; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-3px); }
.review-card--photo-heavy { height: 420px; }
.review-img-large { flex: 4; width: 100%; background-size: cover; background-position: center; position: relative; }
.review-badge { position: absolute; bottom: 10px; left: 10px; background: rgba(255,255,255,0.95); padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 800; color: var(--bm-ink); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.review-content-small { flex: 1; padding: 12px 16px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.review-snippet { font-size: 13px; color: #555; margin: 0 0 6px; line-height: 1.3; font-style: italic; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--bm-ink); border-top: 1px solid #eee; padding-top: 6px; }
.review-card--text { height: auto; min-height: 300px; padding: 24px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.review-stars { color: var(--bm-gold); letter-spacing: 1px; font-size: 12px; }
.review-time { font-size: 11px; color: #bbb; }
.review-title { font-family: var(--font-body); font-weight: 800; font-size: 16px; margin: 0 0 8px; color: var(--bm-ink); }
.review-body { font-size: 14px; color: #555; line-height: 1.5; margin: 0 0 20px; flex-grow: 1; }
.review-footer-line { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 12px; margin-top: auto; }
.review-author { font-weight: 700; font-size: 13px; color: var(--bm-ink); }

/* BENEFITS */
.benefits { padding: 80px 16px; background: #fff; }
.benefits__inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.benefit-row { display: flex; align-items: center; gap: 50px; }
.benefit-row--reverse { flex-direction: row-reverse; }
.benefit-media { flex: 1; }
.benefit-img { width: 100%; height: 350px; background-size: cover; background-position: center; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.benefit-text { flex: 1; }
.benefit-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--bm-burgundy); background: #fff5f5; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.benefit-text h3 { font-size: clamp(24px, 3vw, 32px); line-height: 1.2; margin-bottom: 16px; color: var(--bm-ink); }
.benefit-text p { font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 24px; }
.btn-secondary { display: inline-block; padding: 12px 24px; border: 2px solid var(--bm-ink); color: var(--bm-ink); border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { background: var(--bm-ink); color: #fff; }
@media (max-width: 800px) { .benefit-row, .benefit-row--reverse { flex-direction: column; gap: 30px; text-align: center; } .benefit-img { height: 250px; } .fud-text--left { text-align: center; } }

/* SECONDARY TRUST BAR */
.bm-trusted--teal { background: var(--bm-teal); color: #fff; padding: 60px 16px; text-align: center; }
.bm-trusted__inner p { margin: 0 0 25px; font-size: 18px; color: rgba(255,255,255,0.8); font-weight: 600; }
.trust-text-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 50px; font-weight: 800; color: #fff; font-size: 22px; margin-bottom: 30px; font-family: var(--font-head); }
.trust-link-subtle { display: inline-block; color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: underline; margin-top: 10px; transition: all 0.2s; }
.trust-link-subtle:hover { color: #fff; }

/* DIFFERENTIATION */
.bm-diff { padding: 80px 16px; background: #fff; }
.bm-diff__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.bm-diff__inner h2 { margin-bottom: 50px; font-size: clamp(26px, 3.5vw, 38px); }
.bm-diff__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 40px; }
.diff-card { background: #fff; padding: 30px; border: 1px solid var(--bm-border); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); text-align: left; transition: transform 0.2s; }
.diff-card:hover { transform: translateY(-5px); border-color: var(--bm-burgundy); }
.diff-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--bm-ink); }
.diff-card p { font-size: 14px; color: #555; margin: 0; line-height: 1.5; }

/* FAMILY SECTION */
.bm-family { padding: 80px 16px; background: #fdfdfd; border-top: 1px solid var(--bm-border); }
.bm-family__inner { max-width: 1100px; margin: 0 auto; }
.bm-family h2 { text-align: center; margin-bottom: 10px; font-size: 36px; }
.bm-family__sub { text-align: center; max-width: 700px; margin: 0 auto 50px; color: #666; font-size: 18px; }
.family-grid-clean { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 850px) { .family-grid-clean { grid-template-columns: 1fr; } }
.family-card-clean { background: #fff; padding: 40px 30px; border-radius: 16px; border: 1px solid var(--bm-border); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.family-card-clean h3 { font-size: 24px; margin-bottom: 20px; color: var(--bm-burgundy); text-align: center; }
.clean-list { list-style: none; padding: 0; margin: 0; font-size: 16px; color: #444; }
.clean-list li { margin-bottom: 12px; position: relative; padding-left: 24px; }
.clean-list li::before { content: "✔"; position: absolute; left: 0; color: var(--bm-teal); font-weight: bold; }

/* HOW IT WORKS */
.bm-how { padding: 80px 16px; background: #f5f5f7; }
.bm-how__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.bm-how__sub { font-size: 18px; color: #666; margin-bottom: 50px; }
.how-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
@media (max-width: 768px) { .how-steps-grid { grid-template-columns: 1fr; } }
.how-step-card { background: #fff; border-radius: 16px; text-align: left; border: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.step-img { width: 100%; height: 200px; background-size: cover; background-position: center; border-bottom: 1px solid #eee; }
.how-step-card h3 { font-size: 20px; margin: 15px 20px 10px; color: var(--bm-ink); }
.how-step-card p { font-size: 16px; color: #555; margin: 0 20px 20px; }
.step-header { display: inline-block; background: var(--bm-burgundy); color: #fff; font-weight: 800; padding: 4px 12px; border-radius: 50px; font-size: 14px; margin: 20px 0 0 20px; }
.how-cta { margin-top: 40px; }

/* ABOUT SECTION */
.bm-about-new { padding: 80px 16px; background: #fff; }
.bm-about__inner { max-width: 1000px; margin: 0 auto; }
.about-title { text-align: center; margin-bottom: 5px; font-size: 32px; }
.about-subtitle { text-align: center; color: var(--bm-muted); margin-bottom: 40px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 20px; }
.about-split { display: grid; grid-template-columns: 40% 55%; gap: 5%; align-items: start; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 30px; } }
.aniko-portrait { width: 100%; height: 400px; background-size: cover; background-position: center; border-radius: 16px; }
.about-text-col h3 { font-size: 24px; margin-bottom: 20px; color: var(--bm-burgundy); }
.about-text-col p { margin-bottom: 16px; font-size: 18px; color: #444; }

/* FAQ */
.bm-faq { padding: 80px 16px; background: #f9f9f9; }
.bm-faq__inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.bm-faq details { background: #fff; border: 1px solid var(--bm-border); border-radius: 12px; padding: 20px; cursor: pointer; transition: all 0.2s; }
.bm-faq details[open] { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.bm-faq summary { font-weight: 700; font-size: 16px; color: var(--bm-ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.bm-faq summary::after { content: "+"; font-size: 20px; color: var(--bm-burgundy); font-weight: 400; }
.bm-faq details[open] summary::after { content: "-"; }
.bm-faq p { margin-top: 12px; margin-bottom: 0; color: #555; font-size: 15px; border-top: 1px solid #f0f0f0; padding-top: 12px; }

/* URGENCY / FINAL CTA */
.bm-urgency { padding: 80px 16px; background: #f4f4f4; }
.bm-urgency__inner { max-width: 1000px; margin: 0 auto; }
.urgency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media(max-width: 768px) { .urgency-grid { grid-template-columns: 1fr; } }
.urgency-text h2 { font-size: 32px; margin-bottom: 10px; }
.urgency-text h3 { font-size: 20px; color: var(--bm-burgundy); margin-bottom: 20px; }
.urgency-list { list-style: none; padding: 0; margin: 20px 0; }
.urgency-list li { margin-bottom: 10px; font-weight: 600; font-size: 15px; padding-left: 20px; position: relative; }
.urgency-list li::before { content: "✓"; position: absolute; left: 0; color: var(--bm-burgundy); }
.urgency-img-box { width: 100%; height: 300px; background-size: cover; background-position: center; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* OFFER */
.offer-section { padding: 60px 16px; background: var(--bm-cream); text-align: center; }
.offer__inner { display: flex; flex-direction: column; align-items: center; max-width: 600px; margin: 0 auto; }
.btn-offer { margin-top: 20px; }

.bm-final-cta { padding: 80px 16px; background: var(--bm-teal); color: #fff; text-align: center; }
.bm-final-cta h2 { margin-bottom: 30px; font-size: clamp(24px, 4vw, 36px); }

/* FOOTER */
.footer { background: #1a1a1d; color: #888; padding: 60px 16px 30px; font-size: 13px; }
.footer__inner { max-width: 1000px; margin: 0 auto; }
.footer__contact { text-align: center; margin-bottom: 40px; }
.footer__contact h3 { color: #fff; font-size: 18px; margin-bottom: 15px; }
.footer__contact a { color: #fff; font-weight: 700; text-decoration: none; }
.footer__disclaimer { border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 30px 0; margin-bottom: 30px; font-size: 11px; line-height: 1.6; color: #777; text-align: justify; }
.footer__disclaimer p { margin-bottom: 12px; }
.footer__disclaimer strong { color: #bbb; }
.footer__copy { text-align: center; color: #555; }