﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    color: #1a1a1a;
    background: #fff;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* NAV HEADER */
.port-title {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
}

.port-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    flex-shrink: 0;
}

    .nav-btn:hover {
        background: #f5f5f5;
    }

.port-heading {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #1a1a1a;
}

.nav-arrows {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* HERO PRODUCT SECTION */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.img-block {
    background: #f5f5f5;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .img-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

.prod-meta-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.prod-title h3 {
    font-size: 18px;
    font-weight: 400;
}

.prod-title strong {
    font-weight: 600;
}

.meta-list {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #666;
    flex-wrap: wrap;
    align-items: center;
}

    .meta-list span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.prod-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1rem;
}

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #d0d0d0;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #490ded;
    color: #fff;
    border-color: #185FA5;
}

    .btn-primary:hover {
        background: #0C447C;
    }

.modules-block h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    font-size: 12px;
    color: #1a1a1a;
}

.chip-icon {
    color: #1D9E75;
    font-size: 11px;
}

/* DIVIDER */
.section-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 2.5rem 0;
}

/* TAGLINE */
.tagline-row {
    margin-bottom: 1.5rem;
}

    .tagline-row h2 {
        font-size: 22px;
        font-weight: 400;
    }

    .tagline-row .highlight {
        color: #490ded;
        font-weight: 600;
    }

.lead-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
    .lead-row {
        grid-template-columns: 1fr;
    }
}

.lead-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

    .lead-text strong {
        color: #1a1a1a;
        font-weight: 600;
    }

/* WHAT IS CLOUD ERP */
.content-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

@media (max-width: 700px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.content-main h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

    .content-main h3:first-child {
        margin-top: 0;
    }

.content-main h4 {
    font-size: 14px;
    font-weight: 600;
    color: #185FA5;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.content-main p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

/* BENEFIT CARDS SIDEBAR */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.benefit-card-icon {
    margin-bottom: 6px;
}

.benefit-card h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* WHY SYBEREGE */
.why-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .why-header h2 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 0.5rem;
    }

        .why-header h2 .highlight {
            color: #185FA5;
            font-weight: 600;
        }

    .why-header p {
        font-size: 14px;
        color: #666;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-label {
    font-size: 13px;
    font-weight: 500;
}

/* FOOTER TAG */
.footer-tag {
    text-align: center;
    padding: 1.5rem 0 0;
}

    .footer-tag span {
        font-size: 16px;
        color: #888;
        font-style: italic;
    }







/*PHARMA - NEW CLASSES ONLY - does not override existing CSS */

.offers-wrapper {
    margin-top: 2rem;
}

.offers-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

    .offers-section-title span {
        color: #185FA5;
    }

/* MODULE CARD */
.mod-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.mod-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.1rem 1.5rem;
    border-left: 4px solid #185FA5;
    background: #f8f9fb;
}

    .mod-card-header.teal {
        border-left-color: #0F6E56;
        background: #f4fdf9;
    }

    .mod-card-header.amber {
        border-left-color: #854F0B;
        background: #fefaf4;
    }

    .mod-card-header.purple {
        border-left-color: #534AB7;
        background: #f8f7fe;
    }

.mod-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mod-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.mod-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 700px) {
    .mod-card-body {
        grid-template-columns: 1fr;
    }
}

.mod-card-text {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid #e8edf3;
}

@media (max-width: 700px) {
    .mod-card-text {
        border-right: none;
        border-bottom: 1px solid #e8edf3;
    }
}

.mod-card-text p {
    font-size: 13.5px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 0.75rem;
}

    .mod-card-text p:last-child {
        margin-bottom: 0;
    }

.mod-card-list {
    padding: 1.25rem 1.5rem;
    background: #fcfcfd;
}

.mod-list-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.85rem;
}

    .mod-list-label.blue {
        color: #185FA5;
    }

    .mod-list-label.teal {
        color: #0F6E56;
    }

    .mod-list-label.amber {
        color: #854F0B;
    }

    .mod-list-label.purple {
        color: #534AB7;
    }

.mod-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .mod-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #333;
        line-height: 1.5;
    }

        .mod-checklist li svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .mod-checklist li.more {
            color: #534AB7;
            font-weight: 600;
        }

/* WHY SYBEREGE - overrides nothing, new selector */
.why-section {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

    .why-section h2 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 0.5rem;
    }

        .why-section h2 .whl {
            color: #185FA5;
            font-weight: 700;
        }

    .why-section p {
        font-size: 14px;
        color: #666;
    }

