/* --- BRANDS PAGE STYLES --- */

:root {
    --primary-red: #e61818;
    --dark-bg: #0f1113;
    --dark-text: #1a1a1a;
    --gray-text: #666;
    --light-beige: #fdfaf5;
}

.bd-red {
    color: var(--primary-red);
}

/* Hero */
.bd-hero {
    background: var(--light-beige);
    padding: 80px 0;
    overflow: hidden;
}

.bd-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bd-hero-text {
    flex: 1;
}

.bd-subtitle-top {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bd-hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.bd-hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.bd-hero-btns {
    display: flex;
    gap: 20px;
}

.bd-hero-btn {
    padding: 15px 35px;
    font-size: 13px;
}

.bd-partner-btn {
    padding: 15px 35px;
    font-size: 13px;
    background: transparent;
    border: 1px solid #ddd;
    color: var(--dark-text);
}

.bd-hero-image {
    flex: 1.2;
    position: relative;
}

.bd-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Showcase Section */
.bd-showcase-section {
    padding: 100px 0;
}

.bd-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.bd-subtitle-main {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bd-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
}

.bd-title-line {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto 0;
}

.bd-brands-grid {
    display: flex;
    gap: 30px;
}

.bd-brand-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.bd-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.bd-incenio-card {
    background: #fffaf9;
}

.bd-polpo-card {
    background: #f9fbfb;
}

.bd-card-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.bd-card-text {
    flex: 1;
    padding: 40px;
}

.bd-brand-logo-wrap {
    margin-bottom: 25px;
}

.incenio-logo {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #4a2c2a;
    line-height: 1;
    text-transform: lowercase;
}

.polpo-logo {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a3c34;
    line-height: 1;
    text-transform: uppercase;
}

.bd-brand-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

.bd-green { color: #1a3c34; }

.bd-brand-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bd-brand-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.bd-brand-bullets li {
    font-size: 13px;
    color: #444;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bd-card-btn {
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 800;
}

.bd-incenio-btn { border-color: var(--primary-red); color: var(--primary-red); }
.bd-polpo-btn { border-color: #1a3c34; color: #1a3c34; }

.bd-card-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
}

.bd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.bd-why-section {
    padding-bottom: 100px;
}

.bd-features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
}

.bd-feat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.bd-feat-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.bd-feat-item:hover .bd-feat-icon {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.bd-feat-item h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bd-feat-item p {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
}

.bd-feat-divider {
    width: 1px;
    height: 100px;
    background: #eee;
    flex-shrink: 0;
}

/* Stats Bar */
.bd-stats-bar {
    padding-bottom: 100px;
}

.bd-stats-card {
    background: linear-gradient(90deg, #0f1113 0%, #4a0000 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.bd-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bd-stat-icon {
    flex-shrink: 0;
}

.bd-stat-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.bd-stat-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.bd-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Innovation Section */
.bd-innovation-section {
    padding-bottom: 100px;
}

.bd-innovation-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.bd-innovation-image {
    flex: 1.2;
    height: 550px;
}

.bd-innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-innovation-content {
    flex: 1;
    padding: 60px 80px 60px 0;
}

.bd-innovation-content h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.bd-innovation-desc {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 35px;
}

.bd-innovation-list {
    list-style: none;
    margin-bottom: 40px;
}

.bd-innovation-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.bd-list-icon {
    width: 32px;
    height: 32px;
    background: #fff0f0;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bd-innovation-btn {
    padding: 15px 30px;
    font-size: 12px;
}

/* Distribution Section */
.bd-dist-section {
    padding-bottom: 100px;
}

.bd-dist-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bd-dist-left {
    flex: 1;
}

.bd-dist-desc {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.bd-dist-list {
    list-style: none;
    margin-bottom: 35px;
}

.bd-dist-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.bd-dist-btn {
    padding: 14px 30px;
    font-size: 12px;
}

.bd-dist-map {
    flex: 1.2;
    text-align: center;
}

.bd-map-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.bd-map-container img {
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
    opacity: 0.8;
}

.map-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: rgba(230, 24, 24, 0.2);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-connection-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.bd-dist-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.bd-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.bd-card-head p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.bd-states-grid {
    display: flex;
    gap: 30px;
}

.bd-state-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bd-state-col span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Grow Bar */
.bd-grow-bar {
    background: var(--primary-red);
    padding: 60px 0;
    color: #fff;
}

.bd-grow-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bd-grow-text h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.bd-grow-text p {
    font-size: 16px;
    opacity: 0.9;
}

.bd-grow-btn {
    background: #fff;
    color: var(--primary-red);
    padding: 15px 35px;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1100px) {
    .bd-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .bd-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .bd-hero-btns {
        justify-content: center;
    }

    .bd-brands-grid {
        flex-direction: column;
    }

    .bd-features-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .bd-feat-divider {
        display: none;
    }

    .bd-stats-card {
        flex-direction: column;
        gap: 40px;
    }

    .bd-stat-divider {
        display: none;
    }

    .bd-innovation-flex {
        flex-direction: column;
    }

    .bd-innovation-content {
        padding: 40px;
        text-align: center;
    }

    .bd-innovation-list li {
        justify-content: center;
    }

    .bd-innovation-image {
        height: 350px;
        width: 100%;
    }

    .bd-dist-grid {
        flex-direction: column;
        text-align: center;
    }

    .bd-dist-list li {
        justify-content: center;
    }

    .bd-dist-card {
        width: 100%;
    }

    .bd-card-head {
        justify-content: center;
    }

    .bd-states-grid {
        justify-content: center;
    }

    .bd-grow-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .bd-hero-text h1 {
        font-size: 32px;
    }

    .bd-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .bd-hero-btn, .bd-partner-btn {
        width: 100%;
    }

    .bd-section-header h2 {
        font-size: 26px;
    }

    .bd-card-inner {
        flex-direction: column;
    }

    .bd-card-text {
        padding: 30px 20px;
        text-align: center;
    }

    .bd-brand-bullets li {
        justify-content: center;
    }

    .bd-card-image {
        min-height: 250px;
        width: 100%;
    }

    .bd-innovation-image {
        height: 250px;
    }

    .bd-innovation-content {
        padding: 30px 20px;
    }

    .bd-states-grid {
        flex-direction: column;
        gap: 15px;
    }

    .bd-grow-text h2 {
        font-size: 26px;
    }
}