/* ============================================================
   ARES ENERGY — BATTERY SERVICES PAGE
   Accent: Green (#10b981 / #059669) + Brand Orange (#f38b2a)
   Consistent with home-beauty.css, about-beauty.css, ac-beauty.css
   ============================================================ */

/* ── SHARED UTILITIES ────────────────────────────────────── */
.bat-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;
}
.bat-section-label.bat-label-light {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.bat-section-header {
    margin-bottom: 3rem;
}
.bat-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;
}
.bat-section-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}
.bat-section-desc.bat-desc-light {
    color: rgba(255,255,255,0.6);
}

/* Shared button styles */
.bat-btn-primary {
    display: inline-flex;
    align-items: 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: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16,185,129,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16,185,129,0.45);
    color: #fff;
}
.bat-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;
}
.bat-btn-outline:hover {
    border-color: #10b981;
    background: rgba(16,185,129,0.05);
    color: #059669;
}
.bat-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.75rem;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: background 0.2s, border-color 0.2s;
}
.bat-btn-outline-dark:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.bat-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);
    position: relative;
    overflow: hidden;
}

/* Breadcrumb */
.bat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}
.bat-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}
.bat-breadcrumb a:hover { color: #10b981; }
.bat-breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }
.bat-breadcrumb span { color: var(--color-primary); font-weight: 600; }

/* Hero 2-col grid */
.bat-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

/* Hero badge */
.bat-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;
}
.bat-hero-badge svg { width: 15px; height: 15px; }

/* Hero heading */
.bat-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;
}
.bat-title-accent {
    background: linear-gradient(135deg, #10b981 0%, #f38b2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero text */
.bat-hero-lead {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.bat-hero-sub {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feature pills */
.bat-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.bat-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);
}
.bat-feature svg { width: 15px; height: 15px; color: #10b981; }

/* Hero CTAs */
.bat-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero visual card */
.bat-hero-visual {
    position: relative;
}
.bat-hero-img-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.bat-hero-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 12px 40px rgba(16,185,129,0.1), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(16,185,129,0.12);
    border-top: 3px solid #10b981;
    text-align: center;
}
.bat-hero-icon-ring {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 24px rgba(16,185,129,0.35);
    animation: float 5s ease-in-out infinite;
}
.bat-hero-icon-ring svg { width: 52px; height: 52px; }

/* Stats row */
.bat-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.bat-hero-stat { text-align: center; }
.bat-stat-num {
    display: block;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.bat-stat-lbl {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-top: 2px;
}
.bat-hero-stat-div {
    width: 1px; height: 36px;
    background: #e5e7eb;
    flex-shrink: 0;
}
.bat-hero-card-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}
.bat-hero-card-note svg { width: 14px; height: 14px; color: #10b981; }

/* ── INFO / UNDERSTANDING SECTION ────────────────────────── */
.bat-info-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #fff;
}
.bat-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.bat-info-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;
}
.bat-info-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.bat-info-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;
}
.bat-info-highlight svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; margin-top: 1px; }

/* Image placeholder */
.bat-info-img-placeholder {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    border: 1px solid rgba(16,185,129,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3.5rem 2rem;
    min-height: 300px;
    color: #6b7280;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bat-info-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(16,185,129,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.bat-placeholder-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    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;
}
.bat-placeholder-icon svg { width: 28px; height: 28px; }
.bat-info-img-placeholder span {
    font-weight: 700;
    color: #374151;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}
.bat-info-img-placeholder p {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ── SCOPE CARDS ─────────────────────────────────────────── */
.bat-scope-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f8fffe 0%, #f9fafb 100%);
}
.bat-scope-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
.bat-scope-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.375rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.bat-scope-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}
.bat-scope-card:nth-child(1)::before,
.bat-scope-card:nth-child(5)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.bat-scope-card:nth-child(2)::before { background: linear-gradient(90deg, #f38b2a, #fbbf24); }
.bat-scope-card:nth-child(3)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bat-scope-card:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.bat-scope-card:hover::before { transform: scaleX(1); }
.bat-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
    border-color: transparent;
}
.bat-scope-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.125rem;
    transition: transform 0.3s ease;
}
.bat-scope-card:hover .bat-scope-icon { transform: scale(1.1) rotate(-5deg); }
.bat-scope-icon svg { width: 26px; height: 26px; }
.bat-icon-green  { background: linear-gradient(135deg, #f0fdf4, #d1fae5); color: #10b981; }
.bat-icon-orange { background: linear-gradient(135deg, #fff7ed, #feecd7); color: var(--color-accent); }
.bat-icon-blue   { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #3b82f6; }
.bat-icon-purple { background: linear-gradient(135deg, #faf5ff, #ede9fe); color: #8b5cf6; }
.bat-scope-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.bat-scope-card p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.bat-services-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #fff;
}
.bat-services-section .bat-section-header { margin-bottom: 3.5rem; }
.bat-services-section .bat-section-header h2 { color: var(--color-primary); }

.bat-service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s, transform 0.3s;
}
.bat-service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.bat-service-card:last-child { margin-bottom: 0; }
.bat-service-card-reverse { direction: rtl; }
.bat-service-card-reverse > * { direction: ltr; }

/* Service content pane */
.bat-service-content {
    padding: clamp(2rem, 4vw, 3rem);
    background: #fff;
    display: flex;
    flex-direction: column;
}
.bat-service-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(16,185,129,0.12);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.bat-service-icon-wrap {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.bat-service-icon-wrap svg { width: 26px; height: 26px; }
.bat-service-content h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.bat-service-content p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
}
.bat-service-list {
    list-style: none;
    padding: 0; margin: 0.75rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bat-service-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}
.bat-service-list li svg { width: 15px; height: 15px; color: #10b981; flex-shrink: 0; stroke-width: 2.5; }
.bat-service-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.875rem 1.125rem;
    background: rgba(16,185,129,0.06);
    border-left: 3px solid #10b981;
    border-radius: 0 10px 10px 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #065f46;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.bat-service-highlight.bat-highlight-warning {
    background: rgba(245,158,11,0.07);
    border-color: #f59e0b;
    color: #92400e;
}
.bat-service-highlight svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.bat-service-highlight.bat-highlight-warning svg { color: #f59e0b; }
.bat-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s, gap 0.2s;
}
.bat-service-link:hover { color: #10b981; gap: 10px; }
.bat-service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.bat-service-link:hover svg { transform: translateX(3px); }

/* Service visual pane */
.bat-service-visual {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 0;
}
.bat-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 28px 28px;
}
.bat-visual-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #f0fdf7 100%);
}
.bat-visual-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 50%, #fff9f5 100%);
}
.bat-visual-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #f5f9ff 100%);
}
.bat-visual-center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.bat-visual-icon-ring {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    transition: transform 0.4s ease;
}
.bat-ring-orange {
    background: linear-gradient(135deg, #f38b2a, #e8750f);
    box-shadow: 0 8px 24px rgba(243,139,42,0.3);
}
.bat-ring-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}
.bat-service-card:hover .bat-visual-icon-ring { transform: scale(1.06) rotate(-4deg); }
.bat-visual-icon-ring svg { width: 52px; height: 52px; }
.bat-visual-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.bat-tag {
    padding: 4px 12px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #065f46;
}
.bat-tag-orange {
    background: rgba(243,139,42,0.1);
    border-color: rgba(243,139,42,0.2);
    color: #92400e;
}
.bat-tag-blue {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.2);
    color: #1e40af;
}

/* ── HONEST ADVICE SECTION ───────────────────────────────── */
.bat-honest-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}
.bat-honest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.bat-honest-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;
}
.bat-honest-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.bat-honest-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.bat-honest-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}
.bat-honest-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.bat-dot-green { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.bat-honest-cta { margin-top: 0.5rem; }

/* Honest visual card */
.bat-honest-card {
    background: var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 12px 40px rgba(11,28,46,0.2);
}
.bat-honest-card-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    margin-bottom: 1.25rem;
}
.bat-honest-card-icon svg { width: 36px; height: 36px; }
.bat-honest-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.bat-considerations {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bat-considerations li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.bat-cons-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    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: #34d399;
    flex-shrink: 0;
}
.bat-cons-icon svg { width: 16px; height: 16px; }
.bat-considerations strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.bat-considerations span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* ── COMMON ISSUES SECTION ───────────────────────────────── */
.bat-issues-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.bat-issues-section::before {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.bat-issues-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);
}
.bat-issues-title {
    font-size: clamp(1.875rem, 3vw, 2.625rem) !important;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.875rem;
}
.bat-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bat-issue-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.bat-issue-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(16,185,129,0.25);
    transform: translateY(-4px);
}
.bat-issue-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    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: #34d399;
    margin-bottom: 1rem;
    transition: background 0.3s;
}
.bat-issue-card:hover .bat-issue-icon {
    background: rgba(16,185,129,0.2);
}
.bat-issue-icon svg { width: 22px; height: 22px; }
.bat-issue-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.bat-issue-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* ── WHY CHOOSE US SECTION ───────────────────────────────── */
.bat-trust-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background: #fff;
    position: relative;
}
.bat-trust-title {
    font-size: clamp(1.875rem, 3vw, 2.625rem) !important;
    color: var(--color-primary) !important;
}
.bat-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.bat-trust-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    padding: 1.875rem 1.625rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.bat-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(11,28,46,0.15);
    border-color: transparent;
    background: var(--color-primary);
}
.bat-trust-featured {
    background: var(--color-primary);
    border-color: transparent;
    border-top: 3px solid #10b981;
}
.bat-trust-featured:hover { border-color: transparent; border-top-color: #10b981; }
.bat-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;
    transition: background 0.3s;
}
.bat-trust-featured .bat-trust-icon {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.25);
    color: #34d399;
}
.bat-trust-card:hover .bat-trust-icon {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.25);
    color: #34d399;
}
.bat-trust-icon svg { width: 22px; height: 22px; }
.bat-trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.bat-trust-card:hover h3 { color: #fff; }
.bat-trust-featured h3 { color: #fff; }
.bat-trust-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}
.bat-trust-card:hover p { color: rgba(255,255,255,0.85); }
.bat-trust-featured p { color: rgba(255,255,255,0.85); }

/* ── NOT SURE? GUIDANCE CTA ──────────────────────────────── */
.bat-guidance-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.bat-guidance-card {
    position: relative;
    background: var(--color-primary);
    border-radius: 24px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    overflow: hidden;
    border-top: 3px solid #10b981;
    box-shadow: 0 16px 48px rgba(11,28,46,0.2);
}
.bat-guidance-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.bat-guidance-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}
.bat-guidance-icon-wrap { position: relative; flex-shrink: 0; }
.bat-guidance-icon-ring {
    width: 100px; height: 100px;
    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;
    color: #34d399;
    animation: float 5s ease-in-out infinite;
}
.bat-guidance-icon-ring svg { width: 44px; height: 44px; }
.bat-guidance-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(16,185,129,0.15);
    animation: glowPulse 3s ease-in-out infinite;
}
.bat-guidance-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.125rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0.875rem;
}
.bat-guidance-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.bat-guidance-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── FINAL CTA SECTION ───────────────────────────────────── */
.bat-final-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}
.bat-final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(243,139,42,0.06) 0%, transparent 50%),
        linear-gradient(160deg, #f0fdf7 0%, #ffffff 50%, #fff9f3 100%);
    pointer-events: none;
}
.bat-final-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.bat-final-text { flex: 1; min-width: 260px; }
.bat-final-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.bat-final-text p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}
.bat-final-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────── */
@media (max-width: 1100px) {
    .bat-hero-grid {
        grid-template-columns: 1fr 360px;
    }
    .bat-scope-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bat-hero-grid,
    .bat-info-grid,
    .bat-honest-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bat-service-card,
    .bat-service-card-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .bat-service-visual {
        min-height: 220px;
        order: -1;
    }
    .bat-issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bat-guidance-inner {
        flex-direction: column;
        text-align: center;
    }
    .bat-guidance-ctas { justify-content: center; }
    .bat-final-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .bat-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bat-honest-card {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .bat-scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bat-issues-grid {
        grid-template-columns: 1fr;
    }
    .bat-trust-grid {
        grid-template-columns: 1fr;
    }
    .bat-hero-features { gap: 0.625rem; }
    .bat-hero-ctas,
    .bat-guidance-ctas,
    .bat-final-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .bat-btn-primary,
    .bat-btn-outline,
    .bat-btn-outline-dark {
        text-align: center;
        justify-content: center;
    }
    .bat-hero-stats { gap: 1rem; }
    .bat-stat-num { font-size: 1.375rem; }
    .bat-final-inner { align-items: stretch; }
    .bat-honest-checks { gap: 0.6rem; }
}

@media (max-width: 480px) {
    .bat-scope-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 900px) {
    .bat-info-img-placeholder,
    .bat-honest-visual,
    .bat-service-visual { 
        position: relative !important; 
        top: 0 !important; 
        min-height: 250px;
    }
}
