/* ============================================================
   CTA – See ElevatorPlus in Your Business Context Section
   ============================================================ */

.ep-biz-section {
    position: relative;
    overflow: hidden;
    background: rgba(10, 26, 111, 1);
    padding: 72px 40px;
}


.ep-biz-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ---- Left content ---- */
.ep-biz-left {
    flex: 0 0 48%;
    max-width: 48%;
    text-align: left;
}

.ep-biz-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.ep-biz-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.ep-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #ffffff;
    color: #0a1a6f;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid #ffffff;
    text-decoration: none !important;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.ep-demo-btn:hover,
.ep-demo-btn:focus {
    background: #ffffff !important;
    color: #0a1a6f !important;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
    text-decoration: none !important;
}

/* ---- Right pill cloud ---- */
.ep-biz-right {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative concentric rings */
.ep-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}
.ep-ring-1 { width: 240px; height: 240px; border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.04); animation: ep-breathe 5s ease-in-out infinite; }
.ep-ring-2 { width: 380px; height: 380px; border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.025); animation: ep-breathe 5s ease-in-out infinite 1.6s; }
.ep-ring-3 { width: 520px; height: 520px; border-color: rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.015); animation: ep-breathe 5s ease-in-out infinite 3.2s; }

@keyframes ep-breathe {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-50%, -50%) scale(1.12); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Pill cloud grid */
.ep-pill-cloud {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding-left: 20px;
}

.ep-pill-row {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

/* Stagger rows for visual interest */
.ep-pill-row:nth-child(1) { padding-left: 40px; }
.ep-pill-row:nth-child(2) { padding-left: 0; }
.ep-pill-row:nth-child(3) { padding-left: 60px; }
.ep-pill-row:nth-child(4) { padding-left: 10px; }
.ep-pill-row:nth-child(5) { padding-left: 20px; }

.ep-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    cursor: default;
    letter-spacing: 0.01em;
}

.ep-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .ep-biz-inner { flex-direction: column; }
    .ep-biz-left, .ep-biz-right { flex: 0 0 100%; max-width: 100%; }
    .ep-biz-left { text-align: center; }
    .ep-biz-heading br { display: none; }
    .ep-biz-heading { line-height: 1.4; }
    .ep-demo-btn { display: inline-flex; }
    .ep-biz-right { min-height: 320px; }
    .ep-ring-3 { width: 400px; height: 400px; }
    .ep-pill-cloud { align-items: center; padding-left: 0; }
    .ep-pill-row:nth-child(1),
    .ep-pill-row:nth-child(2),
    .ep-pill-row:nth-child(3),
    .ep-pill-row:nth-child(4),
    .ep-pill-row:nth-child(5) { padding-left: 0; }
}

@media (max-width: 576px) {
    .ep-biz-section { padding: 52px 20px; }
    .ep-biz-heading { font-size: 1.5rem; }
    .ep-pill { font-size: 0.78rem; padding: 9px 18px; }
    .ep-ring-2 { display: none; }
    .ep-ring-3 { display: none; }
    .ep-pill-cloud { gap: 12px; }
}

@media (max-width: 400px) {
    .ep-biz-heading { font-size: 1.35rem; }
}
