/* ═══════════════════════════════════════════════════════════
   Podle Helen Komunita — main.css
   Styl 1:1 s podlehelen.cz — ostré rohy, Raleway, jemné barvy
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #90d5ff;
    --blue-light: rgba(186,229,248,0.33);
    --green: #93a850;
    --green-hover: #f7f7f8;
    --dark: #222222;
    --text: rgba(34,34,34,0.95);
    --gray: rgba(0,0,0,0.45);
    --beige: rgba(222,208,194,0.35);
    --gray-light: #f7f8fa;
    --white: #ffffff;
    --shadow: 0 1px 8px rgba(0,0,0,0.04);
    --shadow-hover: 0 2px 16px rgba(0,0,0,0.08);
    --radius: 12px;
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
    font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8em;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 600; }
a { color: var(--dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

h1 { font-size: 50px; font-weight: 500; line-height: 1em; color: var(--dark); }
h2 { font-size: 30px; font-weight: 600; line-height: 1.2em; color: var(--dark); }
h3 { font-size: 26px; font-weight: 600; line-height: 1.3em; color: var(--dark); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 0.3em 1em;
    border: 1px solid var(--green);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.02em;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-hover); color: var(--green); }
.btn-outline { background: transparent; color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 0.5em 1.6em; font-size: 18px; }
.btn-sm { padding: 0.25em 0.8em; font-size: 14px; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 1px 4px rgba(0,0,0,0.02); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.logo img { height: 46px; width: auto; }

/* Header login link */
.header-login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--transition);
}
.header-login-link svg { flex-shrink: 0; }
.header-login-link:hover { color: var(--green); }

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { color: var(--dark); font-size: 15px; font-weight: 500; letter-spacing: 0.01em; }
.main-nav a:hover { color: var(--green); }
.main-nav .nav-portal { font-weight: 600; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero { padding: 140px 0 80px; background: var(--white); }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero h1 { margin-bottom: 20px; line-height: 1.2em; }
.hero-sub { font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 12px; line-height: 1.8em; }
.hero-desc { font-size: 20px; font-weight: 500; color: var(--text); margin-bottom: 32px; line-height: 1.6em; }
.hero-desc p { margin-bottom: 18px; }
.hero-desc p:last-child { margin-bottom: 0; }
.hero-desc strong { color: var(--dark); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.mockup-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 340px;
    margin: 0 auto;
    background: var(--blue-light);
    border: 1px solid rgba(144,213,255,0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
}

/* ── Sections — shared ────────────────────────────────── */
section { padding: 72px 0; }
section h2 { text-align: center; margin-bottom: 12px; }
.section-subtitle {
    text-align: center;
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 48px;
    line-height: 1.8em;
}

/* ── Pain points ──────────────────────────────────────── */
.pain-points { background: var(--blue-light); }
.pain-points h2 { margin-bottom: 40px; }
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 36px;
}
.pain-item {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
}
.pain-icon { flex-shrink: 0; width: 20px; height: 20px; opacity: 0.35; }
.pain-emoji { flex-shrink: 0; font-size: 22px; line-height: 1; }
.pain-item p { font-size: 17px; color: var(--dark); line-height: 1.7; }
.pain-item strong { color: var(--dark); font-weight: 600; }
.pain-cta { text-align: center; font-size: 17px; color: var(--dark); line-height: 1.8em; }

/* ── Solution / Pillars ───────────────────────────────── */
.solution { background: var(--blue-light); }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pillar {
    background: var(--gray-light);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius);
    transition: box-shadow var(--transition);
}
.pillar:hover { box-shadow: none; }
.pillar-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.5; filter: grayscale(100%); }
.pillar h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.pillar p { color: var(--dark); font-size: 17px; line-height: 1.8em; margin-bottom: 24px; }

/* ── Steps ────────────────────────────────────────────── */
.steps { background: var(--beige); }
.steps h2 { margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; }
.step-num {
    width: 44px; height: 44px;
    background: var(--blue-light);
    border: 1px solid rgba(144,213,255,0.4);
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 17px; color: var(--dark); line-height: 1.7; }

/* ── Meal Gallery ────────────────────────────────────── */
.meal-gallery { background: var(--blue-light); }
.meal-gallery h2 { margin-bottom: 48px; }
.meal-gallery-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.meal-gallery-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    background: var(--gray-light);
}
.meal-gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.meal-gallery-img-wrap img.active {
    opacity: 1;
}
.meal-gallery-highlight {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px !important;
    font-style: normal;
}
.meal-gallery-highlight strong {
    text-decoration: none;
    text-underline-offset: 3px;
}
.meal-gallery-extra {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--dark);
}
.meal-gallery-text p {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.8em;
    margin-bottom: 8px;
}

/* ── Benefits ─────────────────────────────────────────── */
.benefits { background: var(--white); }
.benefits h2 { margin-bottom: 40px; }
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
}
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
    background: var(--gray-light);
    padding: 16px 20px;
    border-radius: var(--radius);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: default;
}
.check-list li:hover {
    background: var(--green);
    color: var(--white);
    box-shadow: none;
    transform: none;
}
.check-list li:hover .check-icon {
    color: var(--white);
}
.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--green);
}

/* ── About Helen ──────────────────────────────────────── */
.about-helen { background: var(--blue-light); }
.about-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 820px;
    margin: 0 auto;
}
.photo-placeholder {
    width: 100%; height: 100%;
    background: var(--blue-light);
    border: 1px solid rgba(144,213,255,0.3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 18px; font-weight: 500;
}
.about-photo {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-text h2 { font-size: 26px; margin-bottom: 14px; text-align: left; }
.about-text p { color: var(--dark); font-size: 17px; margin-bottom: 10px; line-height: 1.8em; }
.about-text strong { color: var(--dark); }
.about-thanks { margin-top: 28px; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials { background: var(--beige); }
.testimonials h2 { margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial {
    background: var(--gray-light);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius);
}
.testimonial-text { font-size: 17px; font-style: italic; color: var(--dark); margin-bottom: 14px; line-height: 1.8em; }
.testimonial-author { font-weight: 600; color: var(--dark); font-size: 13px; }

/* ── Pricing ──────────────────────────────────────────── */
.pricing-section { background: var(--white); padding-top: 72px; }
.pricing-section h2 { text-align: center; margin-bottom: 8px; }
.pricing-subtitle { text-align: center; color: var(--dark); margin-bottom: 40px; font-size: 17px; }
.pricing-grid { max-width: 400px; margin: 0 auto; }
.pricing-card {
    background: rgba(222,208,194,0.35);
    border: none;
    padding: 40px 36px;
    text-align: center;
    border-radius: var(--radius);
}
.pricing-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 12px; }
.pricing-price { font-size: 42px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--dark); }

/* Pricing features — icon circle style */
.pricing-features { list-style: none; padding: 0; margin: 28px 0 32px; text-align: left; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
}
.pf-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(147, 168, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pf-icon svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}
.pf-has-info {
    flex-wrap: wrap;
}
.pf-info-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.pf-info-toggle:hover {
    color: var(--green);
}
.pf-info-popup {
    display: none;
    width: 100%;
    padding: 4px 0 4px 44px;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}
.pf-has-info.open .pf-info-popup {
    display: block;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq h2 { margin-bottom: 40px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    font-size: 17px; font-weight: 600; color: var(--dark);
    padding: 18px 32px 18px 0; cursor: pointer;
    position: relative; transition: color var(--transition); line-height: 1.6;
}
.faq-question:hover { color: var(--green); }
.faq-question::after {
    content: '+'; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-size: 20px; font-weight: 300; color: var(--dark);
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 0 18px; color: var(--dark); font-size: 17px; line-height: 1.8em; }

/* ── Final CTA ────────────────────────────────────────── */
.final-cta { padding: 80px 0; background: var(--blue-light); text-align: center; }
.final-cta h2 { font-size: 30px; margin-bottom: 14px; }
.final-cta > .container > p {
    font-size: 17px; color: var(--dark); margin-bottom: 28px;
    max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8em;
}
.final-cta .hero-cta { justify-content: center; margin-bottom: 14px; }
.guarantee-note { font-size: 13px; color: var(--dark); margin-top: 10px; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { padding: 48px 0 40px; background: var(--dark); color: rgba(255,255,255,0.5); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo { margin-bottom: 4px; }
.footer-logo img { height: 72px; opacity: 0.85; transition: opacity 0.2s; }
.footer-logo img:hover { opacity: 1; }
.footer-social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-social-links a {
    display: inline-block; padding: 8px 20px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px; color: var(--white); font-size: 14px; font-weight: 500;
    background: rgba(255,255,255,0.05); transition: all 0.2s;
}
.footer-social-links a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.footer-divider { width: 100%; max-width: 500px; height: 1px; background: rgba(255,255,255,0.1); }
.footer-legal-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; font-size: 16px; }
.footer-legal-links a { color: rgba(255,255,255,0.5); }
.footer-legal-links a:hover { color: var(--white); }
.footer-legal-links span { color: rgba(255,255,255,0.2); }
.footer-disclaimer { font-size: 16px; text-align: center; max-width: 600px; }
.footer-copy { font-size: 16px; text-align: center; }
.footer-copy a { color: rgba(255,255,255,0.5); }
.footer-copy a:hover { color: var(--white); }

/* ── Page content ─────────────────────────────────────── */
.page-content { padding: 120px 0 80px; flex: 1; }
.page-content h1 { margin-bottom: 28px; }
.entry-content p { margin-bottom: 14px; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

/* ── Mobile fullscreen overlay menu ─────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-overlay.open { display: flex; }

.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    flex-shrink: 0;
}
.mobile-overlay-header .logo img { height: 46px; width: auto; }

.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-close svg { width: 24px; height: 24px; stroke: var(--dark); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 24px 32px 16px;
    gap: 0;
    flex: 1;
}
.mobile-nav a {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); }

.mobile-actions {
    padding: 16px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.mobile-actions .btn { text-align: center; font-size: 13px; padding: 12px 20px; }
.mobile-actions .mobile-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    padding: 12px 20px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    transition: all var(--transition);
}
.mobile-actions .mobile-login-link:hover { border-color: var(--green); color: var(--green); }
.mobile-actions .mobile-login-link svg { flex-shrink: 0; }

body.mobile-menu-open { overflow: hidden; }

@media (max-width: 968px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn { display: none; }
    .header-actions .header-login-link { display: none; }
    .header-actions .hamburger { display: flex; }

    h1 { font-size: 36px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { order: -1; max-height: 420px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
    .hero-photo { max-height: 420px; object-position: center center; transform: scale(1.1); }
    .mockup-placeholder { max-width: 260px; }

    .pain-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .about-inner { grid-template-columns: 1fr; text-align: center; }
    .about-text h2 { text-align: center; }
    .photo-placeholder { margin: 0 auto; width: 180px; height: 180px; }
    .about-photo { width: 220px; height: 220px; margin: 0 auto; }

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

    .meal-gallery-inner { grid-template-columns: 1fr; text-align: center; }
    .meal-gallery-img-wrap { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 0 48px; }
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    section { padding: 56px 0; }
}



/* ── References Carousel ─────────────────────────────── */

/* ── References Carousel ─────────────────────────────── */
.ref-carousel-wrap {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}
.ref-carousel {
    overflow: hidden;
    width: 100%;
}
.ref-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    will-change: transform;
}
.ref-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    height: 440px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: var(--radius);
}
.ref-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    padding-bottom: 3px;
    font-family: system-ui, -apple-system, sans-serif;
}
.ref-arrow:hover { background: rgba(0,0,0,0.12); }
.ref-arrow-left { left: 4px; }
.ref-arrow-right { right: 4px; }

@media (max-width: 968px) {
    .ref-slide { flex: 0 0 calc((100% - 20px) / 2); height: 450px; }
    .ref-carousel-wrap { padding: 0 44px; }
}
@media (max-width: 600px) {
    .ref-slide { flex: 0 0 100%; height: 400px; }
    .ref-carousel-wrap { padding: 0 40px; }
    .ref-arrow { width: 32px; height: 32px; font-size: 20px; }
}

/* ═══ 4 vychytávky — mockupy (2026-04-01) ═══ */
.pillar-mockup {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.pillar-mockup img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobil: mockup vlevo, text vpravo */
@media (max-width: 768px) {
    .pillar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 28px 20px;
    }
    .pillar-mockup {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .pillar-mockup img {
        max-width: 260px;
    }
    .pillar-content {
        flex: 1;
    }
}

/* Vychytávky — světle modré pozadí karet */
.solution .pillar {
    background: #FEFEFE;
    border: none;
}

/* ═══ Bonusová sekce (2026-04-02) ═══ */
.bonus-section { background: #FFF9D6; padding: 80px 0; }
.bonus-cards { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.bonus-card {
    display: flex;
    align-items: center;
    gap: 36px;
    background: rgba(252,243,218,0.5);
    border-radius: var(--radius);
    padding: 40px 36px;
}
.bonus-mockup { flex-shrink: 0; }
.bonus-mockup img { max-width: 200px; width: 100%; height: auto; border-radius: 8px; }
.bonus-text { flex: 1; }
.bonus-label { font-size: 14px; color: var(--gray); font-style: italic; margin-bottom: 4px; }
.bonus-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.bonus-value { font-size: 15px; color: var(--gray); margin-bottom: 16px; }
.bonus-text ul { list-style: none; padding: 0; margin: 0 0 12px 0; }
.bonus-text ul li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}
.bonus-text ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--dark);
}
.bonus-sub-heading { font-size: 16px; margin: 12px 0 8px; }

@media (max-width: 768px) {
    .bonus-card {
        flex-direction: row;
        padding: 24px 20px;
        gap: 20px;
    }
    .bonus-mockup img { max-width: 140px; }
    .bonus-text h3 { font-size: 18px; }
}

@media (max-width: 480px) {
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    .bonus-text ul li { padding-left: 0; }
    .bonus-text ul li::before { display: none; }
}

/* Hero photo */
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
}

/* Hero mockup container */
.hero-mockup {
    border-radius: var(--radius);
    overflow: hidden;
}

/* Bonus pillars - 2 columns like solution pillars */
.bonus-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 968px) {
    .bonus-pillars-grid {
        grid-template-columns: 1fr;
    }
}
