.bmk-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 12px;
    display: block;
}
.bmk-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
}
.bmk-section-heading span { color: var(--yellow); }
.bmk-section-sub {
    font-size: 0.9rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0;
}


/* ============================================
   HERO
   ============================================ */
.bmk-hero {
    background: var(--bg-light-green);
    padding: 200px 0 90px;
    position: relative;
    overflow: hidden;
}
.bmk-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(58,124,146,0.12);
    pointer-events: none;
    animation: bmkPulse 4s ease-in-out infinite;
}
.bmk-pr-1 { width: 500px; height: 500px; top: -150px; right: -50px; animation-delay: 0s; }
.bmk-pr-2 { width: 350px; height: 350px; top: -75px; right: 75px; animation-delay: 1s; }
.bmk-pr-3 { width: 200px; height: 200px; top: 0px; right: 200px; animation-delay: 2s; }
@keyframes bmkPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

.bmk-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
}
.bmk-hero-heading span { color: var(--yellow); }
.bmk-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.85;
    max-width: 490px;
}
.bmk-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.bmk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 14px;
}
.bmk-badge i { color: var(--yellow); font-size: 0.8rem; }

/* Hero Visual */
.bmk-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

/* Dashboard Card */
.bmk-dashboard-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(58,124,146,0.15);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.bmk-dash-header {
    background: #f7f7f7;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}
.bmk-dash-dots { display: flex; gap: 6px; }
.bmk-dash-dots span {
    width: 10px; height: 10px; border-radius: 50%;
}
.bmk-dash-dots span:nth-child(1) { background: #ff5f56; }
.bmk-dash-dots span:nth-child(2) { background: #ffbd2e; }
.bmk-dash-dots span:nth-child(3) { background: #27c93f; }
.bmk-dash-title {
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 600; color: #555; flex: 1;
}
.bmk-dash-live {
    font-size: 0.7rem; color: #27c93f; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
}
.bmk-live-dot {
    font-size: 0.45rem;
    animation: bmkLiveBlink 1.2s ease-in-out infinite;
}
@keyframes bmkLiveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

.bmk-dash-body { padding: 20px 20px 16px; }

/* Stat boxes row */
.bmk-stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.bmk-stat-box {
    flex: 1;
    background: var(--bg-light-green);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    border: 1.5px solid var(--border-color);
}
.bmk-stat-featured {
    background: var(--green);
    border-color: var(--green);
}
.bmk-stat-num {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700;
    color: var(--green); line-height: 1; margin-bottom: 3px;
}
.bmk-stat-featured .bmk-stat-num { color: var(--white); }
.bmk-stat-lbl {
    font-size: 0.62rem; color: #999; font-weight: 500; margin-bottom: 4px;
}
.bmk-stat-featured .bmk-stat-lbl { color: rgba(255,255,255,0.55); }
.bmk-stat-up {
    font-size: 0.62rem; font-weight: 700; color: #27c93f;
}
.bmk-stat-featured .bmk-stat-up { color: var(--yellow); }
.bmk-stat-up i { margin-right: 2px; }

/* Mini bar chart */
.bmk-chart-wrap { margin-bottom: 16px; }
.bmk-chart-label {
    font-size: 0.7rem; font-weight: 600; color: var(--green);
    margin-bottom: 10px; opacity: 0.7;
}
.bmk-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}
.bmk-bar-col {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.bmk-bar {
    width: 100%;
    height: var(--h);
    background: rgba(58,124,146,0.18);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}
.bmk-bar-active {
    background: var(--yellow);
    animation: bmkBarPulse 2s ease-in-out infinite;
}
@keyframes bmkBarPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.bmk-bar-col span {
    font-size: 0.58rem; color: #bbb; font-weight: 500;
}

/* Channel pills */
.bmk-channels {
    display: flex; flex-wrap: wrap; gap: 7px;
}
.bmk-channel {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 600;
    color: var(--green);
    background: var(--bg-light-green);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 4px 11px;
}
.bmk-channel i { font-size: 0.75rem; }
.bmk-ch-active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.bmk-dash-footer {
    background: #f0f9f4;
    padding: 11px 20px;
    display: flex; gap: 20px;
    border-top: 1px solid #e0e0e0;
}
.bmk-dash-stat {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 600; color: var(--green);
}
.bmk-dash-stat i { color: var(--yellow); font-size: 0.7rem; }

/* Floating stat cards */
.bmk-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 6px 24px rgba(58,124,146,0.15);
    z-index: 3; white-space: nowrap;
    animation: bmkCardFloat 3.5s ease-in-out infinite;
}
.bmk-fc-1 { left: -20px; top: 25%; animation-delay: 0s; }
.bmk-fc-2 { right: -20px; top: 18%; animation-delay: 0.7s; }
.bmk-fc-3 { right: 10px; bottom: 0; animation-delay: 1.4s; }
@keyframes bmkCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.bmk-fc-icon {
    width: 34px; height: 34px;
    background: var(--bg-light-yellow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow); font-size: 0.85rem; flex-shrink: 0;
}
.bmk-fc-num {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    color: var(--green); line-height: 1;
}
.bmk-fc-lbl { font-size: 0.66rem; color: #999; font-weight: 500; margin-top: 2px; }


/* ============================================
   SERVICES
   ============================================ */
.bmk-services-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.bmk-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bmk-service-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(255,196,12,0.12);
    transform: translateY(-5px);
}
.bmk-service-featured {
    background: var(--green);
    border-color: var(--green);
}
.bmk-service-featured:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(58,124,146,0.2);
}
.bmk-service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--yellow);
    color: var(--white);
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 10px; border-radius: 20px;
}
.bmk-service-icon {
    width: 52px; height: 52px;
    background: var(--bg-light-yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.2rem;
    margin-bottom: 20px; transition: all 0.3s ease;
}
.bmk-service-featured .bmk-service-icon {
    background: rgba(255,196,12,0.15); color: var(--yellow);
}
.bmk-service-card:hover .bmk-service-icon,
.bmk-service-featured:hover .bmk-service-icon {
    background: var(--yellow); color: var(--white);
}
.bmk-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--green); margin-bottom: 12px;
}
.bmk-service-featured .bmk-service-title { color: var(--white); }
.bmk-service-desc {
    font-size: 0.85rem; color: var(--text-paragraph);
    line-height: 1.7; margin-bottom: 18px; opacity: 0.85;
}
.bmk-service-featured .bmk-service-desc { color: rgba(255,255,255,0.72); opacity: 1; }
.bmk-service-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.bmk-service-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 500; color: var(--text-paragraph);
}
.bmk-service-featured .bmk-service-list li { color: rgba(255,255,255,0.8); }
.bmk-service-list li i { color: var(--yellow); font-size: 0.7rem; flex-shrink: 0; }


/* ============================================
   MARKETING CHANNELS
   ============================================ */
.bmk-channels-section {
    padding: 90px 0;
    background: var(--white);
}
.bmk-ch-card {
    background: var(--bg-light-green);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: default;
}
.bmk-ch-card:hover {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 8px 24px rgba(58,124,146,0.15);
    transform: translateY(-4px);
}
.bmk-ch-icon {
    font-size: 1.5rem; color: var(--green);
    margin-bottom: 10px; transition: all 0.3s;
}
.bmk-ch-card:hover .bmk-ch-icon { color: var(--white); }
.bmk-ch-name {
    font-size: 0.82rem; font-weight: 600;
    color: var(--green); transition: color 0.3s;
}
.bmk-ch-card:hover .bmk-ch-name { color: var(--white); }


/* ============================================
   PROCESS
   ============================================ */
.bmk-process-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.bmk-process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 26px; height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative; text-align: center;
}
.bmk-process-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255,196,12,0.1);
    transform: translateY(-5px);
}
.bmk-process-featured {
    background: var(--green); border-color: var(--green);
}
.bmk-process-featured:hover { border-color: var(--yellow); }
.bmk-process-num {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 700;
    color: rgba(255,196,12,0.12); line-height: 1;
    position: absolute; top: 16px; right: 20px;
}
.bmk-process-featured .bmk-process-num { color: rgba(255,255,255,0.1); }
.bmk-process-icon {
    width: 60px; height: 60px;
    background: var(--bg-light-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.3rem;
    margin: 0 auto 18px; transition: all 0.3s ease;
}
.bmk-process-featured .bmk-process-icon {
    background: rgba(255,255,255,0.15); color: var(--white);
}
.bmk-process-card:hover .bmk-process-icon {
    background: var(--yellow); color: var(--white);
}
.bmk-process-title {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 600;
    color: var(--green); margin-bottom: 10px;
}
.bmk-process-featured .bmk-process-title { color: var(--white); }
.bmk-process-desc {
    font-size: 0.83rem; color: var(--text-paragraph);
    line-height: 1.7; opacity: 0.82; margin: 0;
}
.bmk-process-featured .bmk-process-desc { color: rgba(255,255,255,0.7); opacity: 1; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.bmk-why-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.bmk-why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.bmk-why-item { display: flex; gap: 16px; align-items: flex-start; }
.bmk-why-icon {
    width: 46px; height: 46px;
    background: var(--white); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.05rem;
    flex-shrink: 0; box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.bmk-why-item:hover .bmk-why-icon { background: var(--yellow); color: var(--white); }
.bmk-why-title {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 600;
    color: var(--green); margin-bottom: 5px;
}
.bmk-why-desc {
    font-size: 0.83rem; color: var(--text-paragraph);
    line-height: 1.7; opacity: 0.82; margin: 0;
}
.bmk-testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.bmk-testi-card {
    background: var(--white); border-radius: 16px;
    padding: 24px 26px; border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}
.bmk-testi-card:hover {
    box-shadow: 0 10px 30px rgba(58,124,146,0.08);
    transform: translateY(-3px);
}
.bmk-testi-featured { background: var(--green); border-color: var(--green); }
.bmk-testi-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.bmk-testi-text {
    font-size: 0.86rem; color: var(--text-paragraph);
    line-height: 1.75; margin-bottom: 18px; font-style: italic; opacity: 0.85;
}
.bmk-testi-featured .bmk-testi-text { color: rgba(255,255,255,0.8); opacity: 1; }
.bmk-testi-author { display: flex; align-items: center; gap: 12px; }
.bmk-testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--yellow); color: var(--white);
    font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bmk-testi-name { font-weight: 600; font-size: 0.86rem; color: var(--green); line-height: 1; }
.bmk-testi-featured .bmk-testi-name { color: var(--white); }
.bmk-testi-role { font-size: 0.74rem; color: #999; margin-top: 3px; }
.bmk-testi-featured .bmk-testi-role { color: rgba(255,255,255,0.5); }


/* ============================================
   PRICING
   ============================================ */
.bmk-pricing-section {
    padding: 90px 0;
    background: var(--white);
}
.bmk-price-card {
    background: var(--bg-light-green);
    border-radius: 20px; padding: 36px 30px;
    border: 1.5px solid var(--border-color);
    height: 100%; display: flex; flex-direction: column;
    position: relative; overflow: hidden; transition: all 0.3s ease;
}
.bmk-price-card:hover {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(58,124,146,0.12);
    transform: translateY(-5px);
}
.bmk-price-featured {
    background: var(--green); border-color: var(--green);
    transform: translateY(-8px);
}
.bmk-price-featured:hover {
    border-color: var(--yellow);
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(58,124,146,0.25);
}
.bmk-price-badge {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow); color: var(--white);
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 18px; border-radius: 0 0 10px 10px;
}
.bmk-price-tag {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--yellow); margin-bottom: 12px; margin-top: 14px;
}
.bmk-price-featured .bmk-price-tag { color: rgba(255,255,255,0.55); }
.bmk-price-val {
    font-family: var(--font-heading);
    font-size: 2.6rem; font-weight: 700;
    color: var(--green); line-height: 1; margin-bottom: 4px;
}
.bmk-price-featured .bmk-price-val { color: var(--white); }
.bmk-price-val span { font-size: 2.8rem; }
.bmk-price-note { font-size: 0.78rem; color: #999; margin-bottom: 24px; }
.bmk-price-featured .bmk-price-note { color: rgba(255,255,255,0.45); }
.bmk-price-list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.bmk-price-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.84rem; color: var(--text-paragraph); font-weight: 500;
}
.bmk-price-featured .bmk-price-list li { color: rgba(255,255,255,0.8); }
.bmk-price-list li i { font-size: 0.7rem; color: var(--yellow); flex-shrink: 0; }
.bmk-price-list li i.fa-xmark { color: rgba(0,0,0,0.25); }
.bmk-price-featured .bmk-price-list li i.fa-xmark { color: rgba(255,255,255,0.2); }
.bmk-price-list-off { opacity: 0.45; }
.bmk-pricing-note {
    text-align: center; margin-top: 32px;
    font-size: 0.86rem; color: var(--text-paragraph); opacity: 0.7;
}
.bmk-pricing-note a { color: var(--green); font-weight: 600; text-decoration: underline; }
.bmk-pricing-note i { color: var(--yellow); margin-right: 4px; }


/* ============================================
   FAQ
   ============================================ */
.bmk-faq-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.bmk-accordion { display: flex; flex-direction: column; gap: 14px; }
.bmk-acc-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden; background: var(--white);
}
.bmk-acc-btn {
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600;
    color: var(--green); background: var(--white);
    padding: 18px 22px; box-shadow: none !important;
}
.bmk-acc-btn:not(.collapsed) {
    background: var(--green); color: var(--white);
}
.bmk-acc-btn:not(.collapsed)::after { filter: brightness(0) invert(1); }
.bmk-acc-body {
    font-size: 0.87rem; color: var(--text-paragraph);
    line-height: 1.8; padding: 16px 22px 20px; opacity: 0.85;
    border-top: 1px solid var(--border-color);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .bmk-hero { padding: 120px 0 60px; }
    .bmk-fc-1, .bmk-fc-2, .bmk-fc-3 { display: none; }
    .bmk-price-featured { transform: none; }
    .bmk-price-featured:hover { transform: translateY(-5px); }
}
@media (max-width: 767.98px) {
    .bmk-services-section,
    .bmk-channels-section,
    .bmk-process-section,
    .bmk-why-section,
    .bmk-pricing-section,
    .bmk-faq-section { padding: 60px 0; }
    .bmk-dashboard-card { max-width: 100%; }
    .bmk-stats-row { gap: 7px; }
}