.eb-transform-section {
    background-color: var(--eb-blue);
    /* padding: 88px 52px; */
    position: relative;
    overflow: hidden;
    color: var(--eb-white);
}

/* .eb-transform-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 170, 87, .1) 0%, transparent 65%);
    pointer-events: none;
} */

.eb-transform-header {
    text-align: center;
    /* max-width: 600px; */
    margin: 0 auto 52px;
}

.eb-transform-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--eb-gold-lt);
    margin-bottom: 14px;
    justify-content: center;
}

.eb-transform-section .section-tag::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eb-gold);
    border-radius: 2px;
}

.eb-transform-heading {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    color: var(--eb-white);
}

.eb-transform-heading em {
    font-style: normal;
    color: var(--eb-gold-lt);
}

.eb-transform-desc p {
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin-top: 8px;
}

.eb-transform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.eb-transform-col {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 28px 26px;
}

.eb-transform-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eb-transform-col-label.bad {
    color: #ff6b6b;
}

.eb-transform-col-label.good {
    color: var(--eb-gold-lt);
}

.eb-transform-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.eb-transform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
}

.eb-transform-item:last-child {
    border-bottom: none;
}

.t-dot-bad {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 107, 107, .7);
}

.t-dot-good {
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: var(--eb-gold);
    border-radius: 50%;
}

.eb-transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.eb-arrow-circle {
    width: 56px;
    height: 56px;
    background: var(--eb-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.eb-arrow-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--eb-gold);
    text-align: center;
    line-height: 1.4;
}

.eb-transform-cta {
    text-align: center;
    margin-top: 44px;
}

@media (max-width: 1100px) {
    .eb-transform-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eb-transform-arrow {
        flex-direction: row;
        gap: 15px;
    }

    .eb-arrow-label {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .eb-transform-section {
        /* padding: 64px 20px; */
    }
}