/* Beginner Manual page — reuses --green, --gray-text, --navy, .container,
   .btn, .highlight, .lp-check-list, .lp-section-title, anim-fade-* */

.bm-page { --navy: var(--navy, #0f2a4a); color: #222; }

.bm-hero { 
    position: relative;
    padding: 6rem 0 5.5rem; 
    /* Stable external Pexels URL */
    background: url('https://images.pexels.com/photos/209977/pexels-photo-209977.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    background-color: var(--navy);
    overflow: hidden;
}

.bm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 32, 70, 0.95) 0%, rgba(11, 32, 70, 0.8) 50%, rgba(11, 32, 70, 0.2) 100%);
    z-index: 1;
    display: block;
}

.bm-hero .container {
    position: relative;
    z-index: 2;
}

.bm-hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr 300px; 
    gap: 2.5rem; 
    align-items: center; 
}

@media (max-width: 1024px) {
    .bm-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .bm-hero-left { margin: 0 auto; }
    .bm-check-list { display: inline-block; text-align: left; }
    .bm-book-badge { position: relative; margin: -20px auto 0; bottom: auto; left: auto; transform: none; }
    .bm-hero::before { background: rgba(11, 32, 70, 0.92); }
}

.bm-hero-left h1 { font-family: "Montserrat", sans-serif; color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; margin-bottom: 0.5rem; font-weight: 900; }
.bm-hero-sub { color: var(--green-bright); font-style: italic; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; }
.bm-hero-text { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.5rem; max-width: 42ch; line-height: 1.6; }
.bm-check-list { font-size: 0.95rem; display: flex; flex-direction: column; gap: 8px; font-weight: 600; color: var(--white); margin-bottom: 0; padding: 0; }
.bm-check-list li { display: flex; align-items: center; gap: 10px; }
.bm-check-list li::before { 
    content: '✓'; 
    display: inline-flex; justify-content: center; align-items: center; 
    width: 20px; height: 20px; background-color: var(--green); color: #fff; 
    border-radius: 50%; font-size: 0.7rem; font-weight: bold; flex-shrink: 0; 
}

.bm-hero-center { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }
.bm-book-cover { 
    width: 100%; 
    max-width: 650px; 
    height: auto; 
    display: block; 
}

.bm-book-badge {
    position: absolute; 
    bottom: 5%; 
    left: 45%;
    transform: translateX(-50%);
    z-index: 2;
    background: var(--green); 
    color: #fff; 
    border-radius: 50%;
    width: 110px; 
    height: 110px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 0.72rem; 
    font-weight: 800; 
    text-align: center; 
    line-height: 1.2;
    padding: 0.5rem;
    box-shadow: 0 10px 20px rgba(103, 155, 48, 0.3);
}

.bm-sidebar { 
    background: var(--navy-light, #16366B); 
    color: #fff; 
    border-radius: 12px; 
    padding: 1.5rem; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.bm-sidebar h2 { color: var(--green-bright); font-size: 0.95rem; margin-bottom: 1rem; }
.bm-learn-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.bm-learn-list li { display: flex; gap: 0.65rem; align-items: flex-start; }
.bm-learn-icon { color: var(--green); flex-shrink: 0; }
.bm-learn-icon svg { width: 20px; height: 20px; }
.bm-learn-list strong { display: block; font-size: 0.85rem; }
.bm-learn-list p { font-size: 0.78rem; opacity: 0.85; margin: 0; }

/* 2. Sample Pages (Reverted to 6-col & Fixed Zoom) */
.bm-samples { 
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.bm-samples .lp-section-title {
    text-align: center;
    font-size: 1.5rem;
    color: #0f2a4a;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    margin-bottom: 3rem;
}
.bm-samples-grid { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 1.25rem; 
}
.bm-sample-card { 
    background: #fff; 
    border: 1px solid rgba(11, 32, 70, 0.05); 
    border-radius: 12px; 
    overflow: hidden; 
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bm-sample-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 32, 70, 0.08);
}

/* 🛑 THE FIX: We removed height: 110px and object-fit: cover. 
   It now naturally inherits height: auto from style.css */
.bm-sample-card img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-bottom: 1px solid rgba(11, 32, 70, 0.05);
    background-color: #F5F7F8;
}

.bm-page-num {
    position: absolute; 
    top: 10px; 
    right: 10px;
    background-color: #679b30; 
    color: #fff; 
    font-size: 0.7rem; 
    font-weight: 800;
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.bm-sample-body { 
    padding: 1rem 0.8rem; 
}
.bm-sample-body h3 { 
    font-size: 0.85rem; 
    color: #0f2a4a; 
    margin-bottom: 0.2rem; 
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.bm-sample-body p { 
    font-size: 0.75rem; 
    color: #4A4A4A; 
    margin: 0;
    line-height: 1.4;
}

/* Strip */
/* Premium Purchase Section */
.bm-purchase-section { margin: 2rem auto 4rem; }
.bm-purchase-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 40px rgba(15, 42, 74, 0.06);
    overflow: hidden;
    align-items: stretch;
}

/* Left Side */
.bm-purchase-content { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.bm-purchase-eyebrow { color: var(--green); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.5rem; }
.bm-purchase-content h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; font-family: "Montserrat", sans-serif; font-weight: 900; line-height: 1.1; }
.bm-purchase-content p { color: var(--gray-text); line-height: 1.6; margin-bottom: 2rem; font-size: 1.05rem; max-width: 90%; }
.bm-purchase-features { display: flex; flex-direction: column; gap: 1.2rem; }
.bm-pf-item { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--navy); font-size: 0.95rem; line-height: 1.4; }
.bm-pf-item svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Right Side Action Box (BULLETPROOF FIX) */
.bm-purchase-action {
    background-color: #0f2a4a !important; /* Forces the dark navy background */
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff !important;
    position: relative;
}
.bm-action-card { text-align: center; }
.bm-action-icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.bm-action-icon svg { 
    width: 50px !important; 
    height: 50px !important; 
    color: #679b30 !important; 
}
.bm-action-card h3 { 
    color: #ffffff !important; 
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
    font-family: "Montserrat", sans-serif; 
    font-weight: 800; 
}
.bm-action-card p { 
    color: rgba(255, 255, 255, 0.8) !important; 
    font-size: 0.95rem; 
    margin-bottom: 2rem; 
}

/* The Order Button */
.bm-btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    /* padding: 1.25rem 2rem; */
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(103, 155, 48, 0.25);
    width: 100%;
    text-decoration: none;
}
.bm-btn-order svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.bm-btn-order:hover { 
    background: #5a8a29; 
    transform: translateY(-3px); 
    box-shadow: 0 15px 25px rgba(103, 155, 48, 0.4); 
    color: #fff; 
}
.bm-btn-order:hover svg { transform: translateX(5px); }

.bm-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bm-secure-badge svg { width: 14px; height: 14px; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .bm-hero-grid { grid-template-columns: 1fr; }
    /* Collapse to 3 columns on tablet */
    .bm-samples-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } 
    .bm-strip { grid-template-columns: 1fr; }
    .bm-bottom-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .bm-quote-block::before { left: 50%; transform: translateX(-50%); }
    .bm-quote-block cite { align-items: center; }
    .bm-purchase-container { grid-template-columns: 1fr; }
    .bm-purchase-action { padding: 3rem 2rem; }
    .bm-purchase-content { padding: 3rem 2rem 2rem; }
}

@media (max-width: 640px) {
    /* Collapse to 2 columns on mobile */
    .bm-samples-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } 
    .bm-hero-left h1 { font-size: 1.8rem; }
    .bm-features-wrap { grid-template-columns: 1fr; }
}
.bm-strip-item, .bm-strip-cta { display: flex; align-items: center; gap: 0.75rem; }
.bm-strip-cta { background: var(--green); color: #fff; border-radius: 10px; padding: 1rem 1.25rem; flex-wrap: wrap; }
.bm-strip-icon { color: var(--green); flex-shrink: 0; }
.bm-strip-cta .bm-strip-icon { color: #fff; }
.bm-strip-item strong, .bm-strip-cta strong { display: block; font-size: 0.85rem; }
.bm-strip-item span, .bm-strip-cta span { font-size: 0.75rem; color: var(--gray-text); }
.bm-strip-cta span { color: rgba(255,255,255,0.85); }
.bm-strip-cta .btn { margin-left: auto; }
.btn-navy { background: var(--navy); color: #fff; border: none; }
.btn-navy:hover { background: #16375f; }

/* Bottom Trust & Features Banner (BULLETPROOF FIX) */
.bm-bottom { 
    background-color: #0f2a4a !important; /* Forces the dark navy background */
    color: #ffffff !important; 
    padding: 5rem 0; 
    margin-top: 4rem; 
    border-top: 5px solid #679b30; 
}
.bm-bottom-container { 
    display: grid; 
    grid-template-columns: 1fr 1.3fr; 
    gap: 5rem; 
    align-items: center; 
}

/* Left: Quote Block */
.bm-quote-block { position: relative; }
.bm-quote-block::before {
    content: '"';
    position: absolute;
    top: -45px;
    left: -20px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.08); /* Slightly more visible */
    line-height: 1;
    z-index: 0;
}
.bm-quote { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-family: "Montserrat", sans-serif;
    font-style: italic; 
    font-weight: 700; 
    line-height: 1.3; 
    margin-bottom: 1.5rem; 
    position: relative; 
    z-index: 1; 
    border: none;
    padding: 0;
    color: #ffffff; /* Hardcoded white text */
}
.bm-quote-block cite { display: flex; flex-direction: column; font-style: normal; }
.bm-cite-name { color: #679b30; font-weight: 800; font-size: 1.1rem; }
.bm-cite-title { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* Right: Glass Feature Cards */
.bm-features-wrap { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.25rem; 
}
.bm-feature-card { 
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 12px; 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    transition: all 0.3s ease; 
}
.bm-feature-card:hover { 
    background-color: rgba(255, 255, 255, 0.1); 
    border-color: #679b30; 
    transform: translateY(-4px); 
}
.bm-fc-icon { 
    background-color: rgba(103, 155, 48, 0.2); 
    width: 42px; height: 42px; 
    border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; 
    color: #679b30; 
}
.bm-fc-text strong { display: block; font-size: 1.05rem; margin-bottom: 0.3rem; color: #ffffff; font-family: "Montserrat", sans-serif; font-weight: 700; }
.bm-fc-text span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; display: block; }

/* Responsive */
@media (max-width: 1024px) {
    .bm-hero-grid { grid-template-columns: 1fr; }
    .bm-samples-grid { grid-template-columns: repeat(3, 1fr); }
    .bm-strip { grid-template-columns: 1fr; }
    .bm-bottom-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .bm-quote-block::before { left: 50%; transform: translateX(-50%); }
    .bm-quote-block cite { align-items: center; }
}

@media (max-width: 640px) {
    .bm-samples-grid { grid-template-columns: repeat(2, 1fr); }
    .bm-hero-left h1 { font-size: 1.8rem; }
    .bm-features-wrap { grid-template-columns: 1fr; }
}
