* {
    box-sizing: border-box;
}

.b2b-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('/assets/imgs/b2b.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.b2b-hero-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.b2b-badge {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.b2b-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.b2b-title span {
    color: #60a5fa;
}

.b2b-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.85;
    margin-bottom: 48px;
    max-width: 700px;
    font-weight: 400;
}

.b2b-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 64px;
    margin-bottom: 56px;
    max-width: 800px;
}

.b2b-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.b2b-feature-icon {
    width: 22px;
    height: 22px;
    color: #4ade80;
    flex-shrink: 0;
}

.b2b-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.b2b-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.b2b-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
}

.b2b-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    min-width: 200px;
}

.b2b-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.b2b-footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    width: 100%;
}

.b2b-contact-label {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.5;
    margin-bottom: 16px;
}

.b2b-contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.b2b-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.b2b-contact-item i {
    color: #60a5fa;
    font-size: 18px;
}

.b2b-contact-item:hover {
    color: #60a5fa;
}

.b2b-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

@media (max-width: 768px) {
    .b2b-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    .b2b-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .b2b-actions {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
    }
    .b2b-btn-primary, .b2b-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .b2b-contact-details {
        flex-direction: column;
        gap: 16px;
    }
    .b2b-contact-details span {
        display: none;
    }
}

/* ─── About Section (Stats) ──────────────────────────────── */
.b2b-about-section {
    padding: 100px 24px;
    background: #f8fafc;
    text-align: center;
}

.b2b-about-header {
    max-width: 800px;
    margin: 0 auto 64px;
}

.b2b-about-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.b2b-about-title span {
    color: #2563eb;
}

.b2b-about-subtitle {
    font-size: 19px;
    color: #64748b;
    line-height: 1.6;
}

.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b2b-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.b2b-stat-icon-wrap {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #2563eb;
}

.b2b-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.b2b-stat-label {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.b2b-stat-desc {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .b2b-stats-grid {
        grid-template-columns: 1fr;
    }
    .b2b-about-title {
        font-size: 32px;
    }
    .b2b-about-section {
        padding: 60px 20px;
    }
}

/* ─── Target Section (Cui ne Adresăm) ────────────────────── */
.b2b-target-section {
    padding: 100px 24px;
    background: #ffffff;
    text-align: center;
}

.b2b-target-header {
    max-width: 900px;
    margin: 0 auto 40px;
}

.b2b-target-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.b2b-target-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.b2b-target-banner {
    background: #1e3a8a;
    background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 100%);
    color: #fff;
    padding: 24px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    max-width: 1000px;
    margin-bottom: 64px;
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.3);
}

.b2b-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-target-card {
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b2b-target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

.b2b-target-icons {
    font-size: 24px;
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.b2b-target-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.b2b-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b2b-target-list li {
    font-size: 14px;
    color: #475569;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.b2b-target-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
}

/* Color Variants */
.t-blue { background: #eff6ff; border-color: #dbeafe; }
.t-blue h3 { color: #1e40af; }
.t-blue .b2b-target-icons { color: #3b82f6; }

.t-orange { background: #fffaf0; border-color: #ffedd5; }
.t-orange h3 { color: #9a3412; }

.t-purple { background: #faf5ff; border-color: #f3e8ff; }
.t-purple h3 { color: #6b21a8; }

.t-green { background: #f0fdf4; border-color: #dcfce7; }
.t-green h3 { color: #166534; }

.t-indigo { background: #eef2ff; border-color: #e0e7ff; }
.t-indigo h3 { color: #3730a3; }

.t-gray { background: #f8fafc; border-color: #f1f5f9; }
.t-gray h3 { color: #334155; }

.t-teal { background: #f0fdfa; border-color: #ccfbf1; }
.t-teal h3 { color: #0f766e; }

@media (max-width: 1024px) {
    .b2b-target-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .b2b-target-grid { grid-template-columns: 1fr; }
    .b2b-target-banner { padding: 20px; font-size: 16px; }
}

/* ─── CTA Banner (Blue Gradient) ────────────────────────── */
.b2b-cta-banner {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 64px 48px;
    background: linear-gradient(90deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.b2b-cta-banner-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
}

.b2b-cta-banner-desc {
    font-size: 19px;
    font-weight: 500;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .b2b-cta-banner {
        padding: 40px 24px;
        margin-top: 60px;
        border-radius: 20px;
    }
    .b2b-cta-banner-title {
        font-size: 24px;
    }
    .b2b-cta-banner-desc {
        font-size: 17px;
    }
}

/* ─── Dark Challenges Section ────────────────────────────── */
.b2b-dark-section {
    background-color: #0f172a; /* Slate 900 */
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 100px 20px;
    margin: 80px 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-dark-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    padding: 8px 16px;
    border-radius: 99px;
    color: #fb7185;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.b2b-dark-title {
    font-size: 48px;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.1;
}

.b2b-dark-title span {
    color: #60a5fa;
}

.b2b-dark-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 64px;
}

.b2b-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 48px;
}

.b2b-challenge-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.b2b-challenge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3);
}

.b2b-challenge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.b2b-challenge-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #f8fafc;
}

.b2b-challenge-content p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.b2b-result-banner {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(90deg, rgba(159, 18, 57, 0.2) 0%, rgba(30, 41, 59, 0.4) 50%, rgba(159, 18, 57, 0.2) 100%);
    border: 1px solid rgba(159, 18, 57, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 24px;
}

.b2b-result-banner h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.b2b-result-banner p {
    font-size: 18px;
    color: #cbd5e1;
    margin: 0;
}

.b2b-result-banner p span {
    color: #fb7185;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .b2b-challenges-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-dark-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .b2b-challenges-grid { grid-template-columns: 1fr; }
    .b2b-dark-section { padding: 60px 20px; border-radius: 0; margin-left: -20px; margin-right: -20px; }
    .b2b-challenge-card { padding: 24px; }
}

/* ─── Solution Section ──────────────────────────────────── */
.b2b-solution-section {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
}

.b2b-sol-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    color: #059669;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.b2b-sol-title {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.b2b-sol-title span {
    color: #2563eb;
}

.b2b-sol-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
}

.b2b-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.b2b-sol-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.b2b-sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.b2b-sol-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.b2b-sol-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.b2b-sol-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.b2b-blue-banner {
    width: 100%;
    max-width: 1200px;
    background: #2563eb;
    border-radius: 24px;
    padding: 60px 48px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.b2b-blue-banner h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.b2b-blue-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.b2b-sol-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.b2b-sol-stat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.b2b-sol-stat-val {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.b2b-sol-stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .b2b-sol-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-sol-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .b2b-sol-grid { grid-template-columns: 1fr; }
    .b2b-sol-stats-row { grid-template-columns: 1fr; }
    .b2b-blue-banner { padding: 40px 24px; }
}

/* ─── Workflow Section (How it Works) ──────────────────── */
.b2b-workflow-section {
    padding: 100px 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-workflow-title {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.b2b-workflow-title span {
    color: #2563eb;
}

.b2b-workflow-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
}

.b2b-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
    position: relative;
}

.b2b-workflow-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 32px;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.b2b-workflow-step:hover {
    transform: translateY(-5px);
}

.b2b-step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #2563eb;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.b2b-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.b2b-workflow-step h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.b2b-workflow-step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Connecting Arrows (Desktop only) */
.b2b-step-arrow {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    color: #bfdbfe;
    z-index: 2;
}

.b2b-workflow-banner {
    width: 100%;
    max-width: 1200px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.b2b-workflow-banner-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #065f46;
}

.b2b-workflow-banner p {
    font-size: 17px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
    max-width: 900px;
}

@media (max-width: 1024px) {
    .b2b-workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .b2b-step-arrow { display: none; }
}

@media (max-width: 768px) {
    .b2b-workflow-grid { grid-template-columns: 1fr; }
    .b2b-workflow-title { font-size: 32px; }
    .b2b-workflow-banner { padding: 32px 20px; }
}

/* ─── Vehicle Types Section (Dark Theme) ───────────────── */
.b2b-vt-section {
    background-color: #0f172a; /* Slate 900 */
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 100px 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-vt-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.b2b-vt-title span {
    color: #60a5fa;
}

.b2b-vt-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 64px;
}

.b2b-vt-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 48px;
}

.b2b-vt-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.b2b-vt-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(96, 165, 250, 0.3);
}

.b2b-vt-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.b2b-vt-card span {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
}

.b2b-vt-footer-banner {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: 16px;
    padding: 24px 48px;
    font-size: 17px;
    color: #cbd5e1;
}

.b2b-vt-footer-banner strong {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .b2b-vt-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .b2b-vt-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-vt-title { font-size: 32px; }
    .b2b-vt-footer-banner { padding: 20px; font-size: 15px; }
}

@media (max-width: 480px) {
    .b2b-vt-grid { grid-template-columns: 1fr; }
}

/* ─── Cash-Flow Impact Section ───────────────────────────── */
.b2b-cf-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.b2b-cf-badge {
    background: #d1fae5;
    color: #059669;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid #a7f3d0;
}

.b2b-cf-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.b2b-cf-title span {
    color: #10b981;
}

.b2b-cf-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    max-width: 600px;
}

.b2b-cf-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 64px;
    align-items: start;
}

/* Comparison Card (Left) */
.b2b-cf-comparison {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.b2b-cf-comparison h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 40px 0;
}

.b2b-cf-bar-group {
    margin-bottom: 32px;
}

.b2b-cf-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.b2b-cf-bar-label {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
}

.b2b-cf-bar-value {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.b2b-cf-bar-bg {
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.b2b-cf-bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.b2b-cf-bar-fill.gray { background: #94a3b8; width: 0; }
.b2b-cf-bar-fill.blue { background: #3b82f6; width: 0; display: flex; align-items: center; justify-content: flex-end; padding-right: 16px; color: white; }

.b2b-afu.visible .b2b-cf-bar-fill.gray { width: 75%; }
.b2b-afu.visible .b2b-cf-bar-fill.blue { width: 100%; }

.b2b-cf-comparison-footer {
    margin-top: auto;
    font-size: 14px;
    color: #64748b;
    text-align: center;
    line-height: 1.6;
}

.b2b-cf-comparison-footer span {
    color: #10b981;
    font-weight: 700;
}

/* Feature Cards (Right) */
.b2b-cf-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.b2b-cf-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.b2b-cf-feature-card:hover {
    transform: translateX(10px);
}

.b2b-cf-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdf4;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b2b-cf-feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.b2b-cf-feature-tag {
    font-size: 11px;
    font-weight: 700;
    background: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}

.b2b-cf-feature-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Total Efficiency Banner */
.b2b-cf-total-banner {
    width: 100%;
    max-width: 1200px;
    background: #059669;
    border-radius: 24px;
    padding: 60px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.b2b-cf-total-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
}

.b2b-cf-total-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.b2b-cf-total-banner h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.b2b-cf-total-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .b2b-cf-container { grid-template-columns: 1fr; }
    .b2b-cf-comparison { padding: 32px; }
    .b2b-cf-feature-card:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .b2b-cf-title { font-size: 32px; }
    .b2b-cf-total-banner { padding: 40px 20px; }
    .b2b-cf-total-banner h3 { font-size: 24px; }
}

/* ─── Safety & Control Section ──────────────────────────── */
.b2b-safety-section {
    padding: 100px 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-safety-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid #dbeafe;
}

.b2b-safety-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.b2b-safety-title span {
    color: #2563eb;
}

.b2b-safety-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    max-width: 600px;
}

.b2b-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 64px;
}

.b2b-safety-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.b2b-safety-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
}

.b2b-safety-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.b2b-safety-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.b2b-safety-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Safety Main Banner */
.b2b-safety-banner {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    border-radius: 24px;
    padding: 64px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.b2b-safety-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.b2b-safety-banner h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.b2b-safety-banner p {
    font-size: 17px;
    max-width: 750px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.b2b-safety-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .b2b-safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .b2b-safety-grid { grid-template-columns: 1fr; }
    .b2b-safety-title { font-size: 32px; }
    .b2b-safety-banner { padding: 48px 20px; }
    .b2b-safety-banner h3 { font-size: 24px; }
}

/* ─── Why Choose Masterbid Section ─────────────────────── */
.b2b-why-section {
    padding: 100px 20px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-why-badge {
    background: #2563eb;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.b2b-why-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.b2b-why-title span {
    color: #2563eb;
}

.b2b-why-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    max-width: 800px;
}

.b2b-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 64px;
}

.b2b-why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
}

.b2b-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.b2b-why-card.wide {
    grid-column: span 1;
}

.b2b-why-icon-box {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.b2b-why-stat-tag {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #2563eb;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
}

.b2b-why-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.b2b-why-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Why Bottom Banner */
.b2b-why-banner {
    width: 100%;
    max-width: 1200px;
    background: #1e3a8a;
    background-image: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: #ffffff;
    text-align: left;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.b2b-why-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b2b-why-banner-icon svg {
    color: #10b981;
}

.b2b-why-banner-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.b2b-why-banner-content p {
    font-size: 17px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.b2b-why-banner-content p span {
    color: #60a5fa;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .b2b-why-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-why-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .b2b-why-grid { grid-template-columns: 1fr; }
    .b2b-why-title { font-size: 32px; }
    .b2b-why-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
    .b2b-why-banner-icon { width: 64px; height: 64px; }
}

/* ─── Concrete Results Section ─────────────────────────── */
.b2b-results-section {
    padding: 100px 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-results-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid #d1fae5;
}

.b2b-results-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.b2b-results-title span {
    color: #2563eb;
}

.b2b-results-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
}

.b2b-results-main-card {
    width: 100%;
    max-width: 1100px;
    background: #f0f7ff;
    border: 1px solid #e0eefe;
    border-radius: 32px;
    padding: 60px;
    text-align: left;
    margin-bottom: 48px;
}

.b2b-results-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.b2b-results-header-icon {
    width: 56px;
    height: 56px;
    background: #2563eb;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-results-header-text h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.b2b-results-header-text p {
    font-size: 15px;
    color: #64748b;
    margin: 4px 0 0 0;
}

.b2b-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.b2b-case-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.03);
}

.b2b-case-stat-icon {
    color: #2563eb;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.b2b-case-stat-val {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.b2b-case-stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.b2b-case-stat-sub {
    font-size: 13px;
    color: #94a3b8;
}

/* Testimonial Area */
.b2b-testimonial-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.b2b-testimonial-quote {
    font-size: 17px;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.b2b-testimonial-quote strong {
    font-weight: 800;
}

.b2b-testimonial-quote span {
    color: #64748b;
    font-size: 15px;
}

.b2b-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.b2b-author-avatar {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.b2b-author-info h5 {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.b2b-author-info p {
    font-size: 14px;
    color: #94a3b8;
    margin: 2px 0 0 0;
}

.b2b-results-footer-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

.b2b-results-footer-pill strong {
    color: #0f172a;
}

@media (max-width: 1024px) {
    .b2b-case-stats { grid-template-columns: 1fr; }
    .b2b-results-main-card { padding: 40px 24px; }
}

@media (max-width: 768px) {
    .b2b-results-title { font-size: 32px; }
    .b2b-results-header { flex-direction: column; text-align: center; }
}

/* ─── Contact / Schedule Meeting Section ────────────────── */
.b2b-contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.b2b-contact-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.b2b-contact-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.b2b-contact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 64px;
    line-height: 1.6;
}

.b2b-contact-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    padding: 60px;
    color: #1e293b;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.b2b-contact-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 32px 0;
}

/* Topics Grid */
.b2b-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.b2b-topic-item {
    background: #f0f7ff;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    text-align: left;
}

.b2b-topic-item svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* Internal Contact Box */
.b2b-contact-info-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b2b-contact-info-box h4 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.b2b-contact-info-box span {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.b2b-contact-btns {
    display: flex;
    gap: 12px;
}

.b2b-phone-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.b2b-phone-btn:hover { background: #1d4ed8; }

.b2b-email-btn {
    background: white;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.b2b-email-btn:hover { background: #f1f5f9; }

/* Secondary Email Call */
.b2b-secondary-email {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.b2b-secondary-email a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
}

/* Green Action Button */
.b2b-form-btn {
    width: 100%;
    background: #059669;
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.b2b-form-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

.b2b-contact-footer-note {
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .b2b-contact-title { font-size: 32px; }
    .b2b-contact-card { padding: 40px 20px; }
    .b2b-topics-grid { grid-template-columns: 1fr; }
    .b2b-contact-btns { flex-direction: column; width: 100%; }
    .b2b-phone-btn, .b2b-email-btn { justify-content: center; }
}

/* ─── Animations ─────────────────────────────────────────── */
.b2b-afu {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-afu.visible {
    opacity: 1;
    transform: translateY(0);
}
