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

/* ── LEFT: image ── */
.card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 288px;
}

.card-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
}

.img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── RIGHT: content ── */
.top-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 16px;
}

.card-content h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 16px;
}

/* challenge / solution blocks */
.info-block {
    border-radius: 0 8px 8px 0;
    padding: 12px;
}

.info-block.challenge {
    background: #fef2f2;
    border-left: 4px solid #f87171;
    margin-bottom: 12px;
}

.info-block.solution {
    background: #f0faf4;
    border-left: 4px solid #22c55e;
    margin-bottom: 20px;
}

.info-block .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.info-block.challenge .label {
    color: #dc2626;
}

.info-block.solution .label {
    color: #22c55e;
}

.info-block p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.customer p {
    margin-bottom: 8px;
}

.customer p strong {
    font-size: 12px;
    color: #94a3b8;

}

.customer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.customer ul li {
    padding: 4px 10px;
    background-color: #f1f5f9;
    border-radius: 30px;
    font-size: 12px;
    color: #475569;
}

.customer {
    margin-bottom: 20px;
}

/* CTA button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-sub);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    width: fit-content;
}

.btn-cta:hover {
    background: #d05a0e;
}

/* icon helper */
.icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.banner-wrap {
    background: #1b3a5c;
    padding: 48px 0;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.banner h2 {
    font-size: clamp(23px, 4vw, 30px);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* badges row */
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff1a;
    border-radius: 30px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: #f07820;
}

/* buttons row */
.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-sub);
    color: #fff !important;
    border: none;
}

.btn-primary:hover {
    background: #d05a0e;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff1a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
    border: 1px solid #ffffff4d;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    background: #fff3;
}

.btn-badge-image {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(53%) sepia(79%) saturate(1786%) hue-rotate(344deg) brightness(96%) contrast(96%);
}

.solution-wrap {
    padding: 64px 0;
}

.solution-wrap .card:not(:first-child) {
    margin-top: 48px;
}

.solution-wrap .card:nth-child(even) .card-content {
    order: -1;
}

.card-2 .top-badge,
.card-2 .img-badge {
    background: var(--color-sub);
}

.card-3 .top-badge,
.card-3 .img-badge {
    background: #22c55e;
}