/* ======================== PRICE SECTION ======================== */

.pricing {
    background: var(--bg);
    padding: 70px 0 90px;
}

.price-wrap {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.price-eyebrow {
    text-align: center;
    color: var(--muted4);
    font-weight: 700;
    letter-spacing: .05em;
}

.price-title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin: 10px 0 40px;
    color: #F6C200;
}

/* GRID LAYOUT → LOGO LEFT / CARDS RIGHT */
.price-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT COLUMN (LOGO) */
.brand-col {
    display: flex;
    justify-content: center;
}

.brand-logo {
    width: 310px;
    height: auto;
    object-fit: contain;
}

/* RIGHT SIDE — CARDS */
.cards {
    display: grid;
    gap: 28px;
}

/* CARD DESIGN */
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.09);
    padding: 26px 26px 26px 145px;
    position: relative;
    min-height: 180px;
}

/* ICON BACKBOX (blue border + shadow) */
.card::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 32px;
    width: 92px;
    height: 92px;
    border-radius: 12px;
    background: #f3f7ff;
    box-shadow: inset 0 0 0 1px #dbe6ff;
}

/* ICON */
.card .icon {
    position: absolute;
    left: 34px;
    top: 32px;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
}

.card .icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

/* TITLE */
.card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: #0f4f93;
}

/* TEXT */
.card p,
.card li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #2a3444;
}

/* Muted lines */
.card .muted {
    color: #64748b;
}

/* Bullets */
.bullets {
    margin: 0;
    padding-left: 1.1em;
}

.bullets li {
    margin: .25em 0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .price-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .brand-logo {
        margin: 0 auto;
        width: 240px;
    }

    .card {
        padding: 26px;
    }

    .card::before,
    .card .icon {
        display: none;
    }
}

@media (max-width: 640px) {
    .price-title {
        font-size: 32px;
    }

    .card {
        padding: 22px;
    }
}

/* ESERVICE */
/* ===========================
   ESERVICE (FINAL – DRAG + AUTO)
=========================== */

.open-soft {
    padding: 90px 0 120px;
    background: #fff;
}

/* title */
.os-head {
    text-align: center;
    margin-bottom: 60px;
}

.os-title {
    font-size: 42px;
    font-weight: 800;
    color: #f6c200;
}

/* slider wrapper */
.os-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* arrows */
.os-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 34px;
    cursor: pointer;
    color: #8a3d2b;
    z-index: 10;
    transition: transform .15s ease, box-shadow .15s ease;
}

.os-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.os-arrow.left {
    left: -60px;
}

.os-arrow.right {
    right: -60px;
}

/* =========================
   VIEWPORT = SCROLL AREA
========================= */
.os-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    padding: 10px 0 30px;
    scrollbar-width: none;
}

.os-viewport::-webkit-scrollbar {
    display: none;
}

.os-viewport.dragging {
    cursor: grabbing;
}

/* =========================
   TRACK (CRITICAL)
========================= */
.os-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

/* =========================
   CARD
========================= */
.os-card {
    flex: 0 0 640px;
    /* 🔥 MUST (NO SHRINK) */
    display: flex;
    gap: 28px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: #111;
    align-items: flex-start;
}

.os-card * {
    pointer-events: none;
}

.os-icon {
    width: 120px;
    height: 120px;
    border: 3px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.os-icon img {
    max-width: 70px;
}

.os-content {
    display: flex;
    flex-direction: column;
}

.os-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f6c200;
    margin: 0 0 12px;
    line-height: 1.3;
}

.os-content p {
    margin: 0;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 380px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .os-card {
        flex: 0 0 85vw;
    }

    .os-arrow.left {
        left: -20px;
    }

    .os-arrow.right {
        right: -20px;
    }
}

@media (max-width: 640px) {
    .os-title {
        font-size: 34px;
    }

    .os-card {
        padding: 22px;
        gap: 20px;
    }

    .os-icon {
        width: 96px;
        height: 96px;
    }
}