/* ============================================================
   ARES ENERGY — BATTERY INSTALLATION PAGE (bi-beauty.css)
   Accent: Green (#10b981 / #059669) primary, Orange secondary
   Consistent with home-beauty, battery-beauty, bfd-beauty
   ============================================================ */

/* ── SHARED UTILITIES ────────────────────────────────────── */
.bi-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 4px 12px;
    background: rgba(243,139,42,0.08);
    border: 1px solid rgba(243,139,42,0.2);
    border-radius: 30px;
}
.bi-section-label.bi-label-light {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.bi-section-header { margin-bottom: 3rem; }
.bi-section-header h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.875rem;
}
.bi-section-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}
.bi-section-desc.bi-desc-light { color: rgba(255,255,255,0.6); }

/* Shared image placeholder style */
.bi-img-placeholder-base {
    width: 100%;
    border-radius: 20px;
    border: 2px dashed rgba(16,185,129,0.25);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    min-height: 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #6b7280;
}
.bi-img-placeholder-base::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(16,185,129,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.bi-placeholder-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    position: relative; z-index: 1;
}
.bi-placeholder-icon svg { width: 28px; height: 28px; }

/* Buttons */
.bi-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem 1.875rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16,185,129,0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bi-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16,185,129,0.5);
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
}
.bi-btn-primary.bi-btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.bi-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.875rem;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgba(11,28,46,0.18);
    transition: border-color 0.2s, background 0.2s;
}
.bi-btn-outline:hover { border-color: #10b981; background: rgba(16,185,129,0.05); color: #059669; }
.bi-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2.25rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.bi-btn-outline-light:hover { 
    background: rgba(255,255,255,0.15); 
    border-color: rgba(255,255,255,0.3); 
    transform: translateY(-2px);
    color: #fff; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── HERO SECTION ────────────────────────────────────────── */
.bi-hero-section {
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(3.5rem, 7vw, 5rem);
    background:
        radial-gradient(ellipse at 70% 40%, rgba(16,185,129,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 5% 80%, rgba(243,139,42,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 60%),
        linear-gradient(160deg, #f0fdf7 0%, #ffffff 45%, #fdfff5 100%);
    color: var(--color-primary);
    border-bottom: 1px solid rgba(16,185,129,0.12);
    overflow: hidden;
}

/* Breadcrumb */
.bi-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}
.bi-breadcrumb a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.bi-breadcrumb a:hover { color: #10b981; }
.bi-breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }
.bi-breadcrumb span { color: var(--color-primary); font-weight: 600; }

/* Hero grid */
.bi-hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.bi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #059669;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.bi-hero-badge svg { width: 15px; height: 15px; }
.bi-hero-section h1 {
    font-size: clamp(2.25rem, 5vw, 3.625rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.bi-title-accent {
    background: linear-gradient(135deg, #10b981 0%, #f38b2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bi-hero-lead {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.bi-hero-sub {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.bi-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.bi-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8375rem;
    font-weight: 600;
    color: #374151;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.bi-feature svg { width: 15px; height: 15px; color: #10b981; }
.bi-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image with floating badges */
.bi-hero-visual { position: relative; }
.bi-hero-img-wrap { position: relative; }
.bi-hero-img-placeholder {
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ecfdf5 100%);
    border: 2px dashed rgba(16,185,129,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    min-height: 360px;
    text-align: center;
    color: #6b7280;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(16,185,129,0.1);
}
.bi-hero-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(16,185,129,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.bi-hero-img-placeholder .bi-placeholder-icon { width: 72px; height: 72px; }
.bi-hero-img-placeholder .bi-placeholder-icon svg { width: 36px; height: 36px; }
.bi-hero-img-placeholder span {
    font-weight: 700;
    color: #374151;
    font-size: 0.95rem;
    position: relative; z-index: 1;
}
.bi-hero-img-placeholder p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    position: relative; z-index: 1;
}

/* Floating badge overlays */
.bi-hero-badge-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 2;
}
.bi-hero-badge-float svg { width: 16px; height: 16px; color: #10b981; }
.bi-badge-tl { top: 20px; left: -10px; }
.bi-badge-br { bottom: 20px; right: -10px; }

/* ── WHY SECTION ─────────────────────────────────────────── */
.bi-why-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #fff;
}
.bi-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.bi-why-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.bi-why-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.bi-why-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(16,185,129,0.05);
    border-left: 3px solid #10b981;
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #065f46;
    line-height: 1.5;
}
.bi-why-highlight svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; margin-top: 1px; }
.bi-why-img-placeholder {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    border: 2px dashed rgba(16,185,129,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3.5rem 2rem;
    min-height: 300px;
    text-align: center;
    color: #6b7280;
    position: sticky;
    top: 100px;
    overflow: hidden;
}
.bi-why-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(16,185,129,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.bi-why-img-placeholder span {
    font-weight: 700;
    color: #374151;
    font-size: 0.9rem;
    position: relative; z-index: 1;
}
.bi-why-img-placeholder p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    position: relative; z-index: 1;
}

/* ── ASSESS CARDS ────────────────────────────────────────── */
.bi-assess-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f8fffe 0%, #f9fafb 100%);
}
.bi-assess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bi-assess-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.875rem 1.625rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bi-assess-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    border-color: rgba(16,185,129,0.2);
}
.bi-assess-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}
.bi-assess-icon svg { width: 24px; height: 24px; }
.bi-icon-green  { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.15);  color: #10b981; }
.bi-icon-orange { background: rgba(243,139,42,0.1);  border: 1px solid rgba(243,139,42,0.15);  color: var(--color-accent); }
.bi-icon-blue   { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.12);  color: #3b82f6; }
.bi-icon-purple { background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.12);  color: #8b5cf6; }
.bi-assess-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.bi-assess-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── WHAT'S INCLUDED ─────────────────────────────────────── */
.bi-includes-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #fff;
}
.bi-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.bi-includes-img-placeholder {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7ed, #fef3e2);
    border: 2px dashed rgba(243,139,42,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3.5rem 2rem;
    min-height: 320px;
    text-align: center;
    color: #6b7280;
    position: sticky;
    top: 100px;
    overflow: hidden;
}
.bi-includes-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(243,139,42,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.bi-includes-img-placeholder .bi-placeholder-icon {
    background: rgba(243,139,42,0.1);
    border-color: rgba(243,139,42,0.2);
    color: var(--color-accent);
    position: relative; z-index: 1;
}
.bi-includes-img-placeholder span {
    font-weight: 700;
    color: #374151;
    font-size: 0.9rem;
    position: relative; z-index: 1;
}
.bi-includes-img-placeholder p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    position: relative; z-index: 1;
}
.bi-includes-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.bi-includes-content > p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}
.bi-include-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bi-include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.bi-include-item:last-child { border-bottom: none; }
.bi-include-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
    flex-shrink: 0;
    margin-top: 6px;
}
.bi-include-body h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}
.bi-include-body p {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── PROCESS STEPS (vertical timeline) ──────────────────── */
.bi-process-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.bi-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(16,185,129,0.06) 0%, transparent 55%);
    pointer-events: none;
}
.bi-process-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.3), rgba(243,139,42,0.2), transparent);
}
.bi-process-title {
    font-size: clamp(1.875rem, 3vw, 2.625rem) !important;
    color: #fff !important;
}
.bi-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
}
/* Horizontal connector line behind steps */
.bi-process-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 2px;
    background: linear-gradient(90deg, rgba(16,185,129,0.3), rgba(243,139,42,0.2));
    pointer-events: none;
    z-index: 0;
}
.bi-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}
.bi-step-bubble {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    border: 2px solid rgba(16,185,129,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #34d399;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    z-index: 1;
    background: var(--color-primary);
}
.bi-step:hover .bi-step-bubble {
    background: rgba(16,185,129,0.15);
    border-color: #10b981;
}
.bi-step-line { display: none; } /* handled by ::before on grid */
.bi-step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem 1.125rem;
    width: 100%;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.bi-step:hover .bi-step-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(16,185,129,0.25);
    transform: translateY(-4px);
}
.bi-step-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    margin: 0 auto 0.875rem;
}
.bi-step-icon.bi-step-icon-final {
    background: rgba(243,139,42,0.1);
    border-color: rgba(243,139,42,0.2);
    color: var(--color-accent);
}
.bi-step-icon svg { width: 22px; height: 22px; }
.bi-step-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.bi-step-card p {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

/* ── COMPATIBILITY SECTION ───────────────────────────────── */
.bi-compat-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}
.bi-compat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.bi-compat-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.bi-compat-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.bi-compat-items {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.5rem;
}
.bi-compat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}
.bi-compat-icon { color: #10b981; }
.bi-compat-icon svg { width: 18px; height: 18px; }
.bi-compat-img-placeholder {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px dashed rgba(59,130,246,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3.5rem 2rem;
    min-height: 300px;
    text-align: center;
    color: #6b7280;
    position: sticky;
    top: 100px;
    overflow: hidden;
}
.bi-compat-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(59,130,246,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.bi-compat-img-placeholder .bi-placeholder-icon {
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.15);
    color: #3b82f6;
    position: relative; z-index: 1;
}
.bi-compat-img-placeholder span {
    font-weight: 700;
    color: #374151;
    font-size: 0.9rem;
    position: relative; z-index: 1;
}
.bi-compat-img-placeholder p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    position: relative; z-index: 1;
}

/* ── HONEST COMPARISON CARDS ─────────────────────────────── */
.bi-honest-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #fff;
}
.bi-honest-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 340px;
    gap: 1.25rem;
    align-items: start;
}
.bi-honest-card {
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #f3f4f6;
}
.bi-honest-yes { background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%); border-color: rgba(16,185,129,0.2); }
.bi-honest-no  { background: linear-gradient(180deg, #fff9f3 0%, #ffffff 100%); border-color: rgba(243,139,42,0.2); }
.bi-honest-cta { background: var(--color-primary); border-color: transparent; }
.bi-honest-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}
.bi-honest-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bi-h-green  { background: rgba(16,185,129,0.12); color: #10b981; }
.bi-h-orange { background: rgba(243,139,42,0.1);  color: var(--color-accent); }
.bi-honest-icon svg { width: 22px; height: 22px; }
.bi-honest-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}
.bi-honest-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.bi-honest-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}
.bi-honest-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: #10b981; }
.bi-list-caution li svg { color: #f38b2a; }

/* CTA card */
.bi-honest-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
}
.bi-honest-cta-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
}
.bi-honest-cta-icon svg { width: 34px; height: 34px; }
.bi-honest-cta h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.bi-honest-cta p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}
.bi-honest-cta .bi-btn-primary {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
}

/* ── WHY CHOOSE US (TRUST GRID) ──────────────────────────── */
.bi-trust-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}
.bi-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bi-trust-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    padding: 1.875rem 1.625rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bi-trust-card:hover {
    transform: translateY(-5px);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(11, 28, 46, 0.15);
}
.bi-trust-card:hover h3 {
    color: #ffffff;
}
.bi-trust-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}
.bi-trust-card:hover .bi-trust-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.25);
    color: #34d399;
}
.bi-trust-featured {
    background: var(--color-primary);
    border-color: transparent;
    border-top: 3px solid #10b981;
}
.bi-trust-featured:hover { border-color: transparent; border-top-color: #10b981; }
.bi-trust-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-bottom: 1.125rem;
}
.bi-trust-featured .bi-trust-icon {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.25);
    color: #34d399;
}
.bi-trust-icon svg { width: 22px; height: 22px; }
.bi-trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.bi-trust-featured h3 { color: #fff; }
.bi-trust-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.65; margin: 0; }
.bi-trust-featured p { color: rgba(255,255,255,0.6); }

/* ── FINAL CTA BANNER ────────────────────────────────────── */
.bi-cta-section {
    padding: clamp(5rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}
.bi-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(243,139,42,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(16,185,129,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.bi-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}
.bi-cta-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.875rem;
}
.bi-cta-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.bi-cta-text .bi-section-label { color: #6ee7b7; }
.bi-cta-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.875rem;
}
.bi-cta-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.775rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.bi-cta-trust svg { width: 15px; height: 15px; color: #34d399; flex-shrink: 0; }

/* ── RELATED SERVICES ────────────────────────────────────── */
.bi-related-section {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    background: #fff;
}
.bi-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bi-related-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 1.875rem 1.625rem;
    border: 1px solid #f3f4f6;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bi-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
    border-color: rgba(16,185,129,0.2);
    background: #fff;
}
.bi-related-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.bi-related-card:hover .bi-related-icon { transform: scale(1.1) rotate(-5deg); }
.bi-rel-green  { background: rgba(16,185,129,0.1);  color: #10b981; }
.bi-rel-blue   { background: rgba(59,130,246,0.08); color: #3b82f6; }
.bi-rel-orange { background: rgba(243,139,42,0.1);  color: var(--color-accent); }
.bi-related-icon svg { width: 24px; height: 24px; }
.bi-related-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
}
.bi-related-body p { font-size: 0.83rem; color: #6b7280; line-height: 1.6; margin-bottom: 0.75rem; }
.bi-related-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #10b981;
    transition: gap 0.2s;
}
.bi-related-card:hover .bi-related-link { gap: 8px; }
.bi-related-link svg { width: 14px; height: 14px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .bi-hero-grid { grid-template-columns: 1fr 400px; }
    .bi-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
    .bi-cta-actions { flex-direction: row; flex-wrap: wrap; align-items: center; min-width: auto; }
    .bi-cta-trust { flex-basis: 100%; }
}
@media (max-width: 900px) {
    .bi-hero-grid,
    .bi-why-grid,
    .bi-compat-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bi-includes-grid { display: flex; flex-direction: column-reverse; gap: 2.5rem; }
    .bi-assess-grid { grid-template-columns: repeat(2, 1fr); }
    .bi-process-steps { grid-template-columns: repeat(3, 1fr); }
    .bi-process-steps::before { display: none; }
    .bi-honest-cards { grid-template-columns: 1fr 1fr; }
    .bi-honest-cta { grid-column: 1 / -1; }
    .bi-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .bi-related-grid { grid-template-columns: repeat(2, 1fr); }
    .bi-badge-tl, .bi-badge-br { display: none; }
    .bi-why-img-placeholder,
    .bi-includes-img-placeholder,
    .bi-compat-img-placeholder {
        position: relative !important;
        top: 0 !important;
        min-height: 280px;
    }
}
@media (max-width: 640px) {
    .bi-assess-grid { grid-template-columns: 1fr; }
    .bi-process-steps { grid-template-columns: 1fr 1fr; }
    .bi-honest-cards { grid-template-columns: 1fr; }
    .bi-trust-grid { grid-template-columns: 1fr; }
    .bi-related-grid { grid-template-columns: 1fr; }
    .bi-hero-ctas,
    .bi-cta-actions { flex-direction: column; align-items: stretch; }
    .bi-btn-primary,
    .bi-btn-outline,
    .bi-btn-outline-light { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
    .bi-process-steps { grid-template-columns: 1fr; }
}
