/* ── Hero B2B ── */
.hero-b2b {
    background: #fff;
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-pink {
    width: 340px;
    height: 340px;
    background: rgba(231, 0, 137, .08);
    top: -80px;
    right: -80px;
}

.hero-deco-blue {
    width: 260px;
    height: 260px;
    background: rgba(110, 198, 240, .13);
    bottom: -60px;
    right: 40px;
}

.badge-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #e0e0e0;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 18px;
}

.badge-cert .fa-shield-alt {
    color: #e6007e;
}

.hero-heading {
    margin: 0;
    font-size: inherit;
    line-height: 1;
}

.hero-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hero-cards-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-b2b-label {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
}

.text-brand-pink {
    color: #e6007e;
}

.text-gradient-pinot {
    background: linear-gradient(90deg, #e6007e 0%, #7bc8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-hero-primary {
    background: #e6007e;
    border-color: #e6007e;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
}

.btn-hero-primary:hover {
    background: #c4006a;
    border-color: #c4006a;
    color: #fff;
}

.btn-hero-outline {
    border: 2px solid #333;
    color: #333;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    background: transparent;
}

.btn-hero-outline:hover {
    background: #333;
    color: #fff;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .88rem;
    color: #666;
}

.hero-contact i {
    color: #e6007e;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 4px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.hero-card.mb-0,
.hero-card:last-child {
    border-bottom: none;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: #fff0f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6007e;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-card .hero-card-heading {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.hero-card p:not(.hero-card-heading) {
    font-size: .82rem;
    color: #767676;
    margin: 0;
}

/* Feature bar */
.hero-features {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 22px 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: #fff0f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6007e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    font-size: .9rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.feature-sub {
    font-size: .8rem;
    color: #737373;
}

/* ── About card (피노 소개) ── */
.about-card {
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    transition: box-shadow .2s, transform .2s;
    color: inherit;
}

.about-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    color: inherit;
}

.about-card-logo {
    width: 56px;
    height: 56px;
    background: #fff0f7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e6007e;
    flex-shrink: 0;
}

.about-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.about-card-sub {
    font-size: .82rem;
    color: #767676;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-b2b {
        padding: 36px 0 24px;
    }

    .hero-features .col-md-4 + .col-md-4 {
        margin-top: 16px;
    }
}

/* ── Clients Section ── */
.clients-section {
    background: #fafafa;
    padding: 56px 0;
}

.clients-title {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.clients-desc {
    font-size: .95rem;
    color: #737373;
    margin-bottom: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.client-item {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    font-size: .92rem;
    font-weight: 600;
    color: #444;
    background: #fff;
    cursor: default;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ── Capabilities Section ── */
.capabilities-section {
    padding: 60px 0;
    background: #fff;
}

.capabilities-section-title {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.capabilities-link {
    font-size: .9rem;
    color: #767676;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.capabilities-link:hover {
    color: #e6007e;
    text-decoration: none;
}

.capability-card {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-left-width: 4px;
    border-radius: 12px;
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.capability-card--pink   { border-left-color: #e6007e; }
.capability-card--blue   { border-left-color: #7bc8f0; }
.capability-card--yellow { border-left-color: #e6a817; }

.capability-category {
    font-size: .8rem;
    color: #767676;
    font-weight: 500;
    margin-bottom: 8px;
}

.capability-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.capability-desc {
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.capability-specs {
    margin: 0;
    padding-left: 1.1em;
    font-size: .82rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.capability-specs li {
    margin-bottom: 3px;
}

.capability-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: #2e7d32;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: auto;
}

.capability-badge i {
    color: #4caf50;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .capabilities-section {
        padding: 40px 0;
    }
}

/* ── Best Products Section ── */
.best-products-section {
    padding: 0 0 60px;
}

@media (max-width: 768px) {
    .best-products-section {
        padding: 0 0 40px;
    }
}
