﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #111827;
}

/* COMMON */
.td-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
}

.td-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
}

    .td-title.light {
        color: #ffffff;
    }

/* HERO */
.td-hero {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
    text-align: center;
}

    .td-hero h1 {
        font-size: 46px;
        margin-bottom: 14px;
    }

/* OVERVIEW */
.td-overview {
    background: #f8fafc;
}

.overview-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.overview-badge span {
    display: block;
    background: #1e3a8a;
    color: #ffffff;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-align: center;
}


/* ================= PHARMA MODULES ================= */

.pharma-modules {
    background: #ffffff;
    padding: 25px 0;
}

.pharma-section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 80px;
}

/* MODULE FLOW WRAPPER */
.pharma-module-flow {
    margin-left: 50px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

    /* CONNECTING RAIL */
    .pharma-module-flow::before {
        content: "";
        position: absolute;
        top: -87px;
        left: 246px;
        right: 341px;
        height: 1px;
        background: linear-gradient(to right, #00000000, #8da4ff, #839bfb, transparent);
    }

/* MODULE ITEM */
.pharma-module-item {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    padding-left: 32px;
    line-height: 1.4;
}

    /* DOT INDICATOR */
    .pharma-module-item span {
        position: absolute;
        left: 0;
        top: 4px;
        width: 12px;
        height: 12px;
        background: #2563eb;
        border-radius: 50%;
        box-shadow: 0 0 0 6px rgba(37,99,235,0.15);
    }

    /* UNDERLINE ACCENT */
    .pharma-module-item::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #2563eb, #22c55e);
        margin-top: 10px;
        border-radius: 2px;
    }

    /* HOVER EFFECT */
    .pharma-module-item:hover span {
        box-shadow: 0 0 0 10px rgba(37,99,235,0.18);
        transition: box-shadow 0.3s ease;
    }

    .pharma-module-item:hover::after {
        width: 70px;
        transition: width 0.3s ease;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pharma-module-flow {
        grid-template-columns: repeat(2, 1fr);
    }

        .pharma-module-flow::before {
            display: none;
        }
}

@media (max-width: 640px) {
    .pharma-module-flow {
        grid-template-columns: 1fr;
    }
}

/* ROI */
.td-roi {
    background: #ffffff;
    padding:10px 0 ;
}

.roi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

    .roi-strip div {
        background: #f1f5f9;
        padding: 30px;
        border-radius: 18px;
        text-align: center;
    }

    .roi-strip h3 {
        margin-bottom: 10px;
        color: #1e40af;
    }

/* IMPLEMENTATION */
.td-implementation {
    padding:3px 0;
    background: linear-gradient(135deg, #020617, #020617);
}

.impl-steps {
    max-width: 700px;
    margin: auto;
}

    .impl-steps div {
        background: rgba(255,255,255,0.1);
        color: #ffffff;
        padding: 22px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .impl-steps b {
        color: #22c55e;
        margin-right: 10px;
    }

/* MODULES */
.td-modules {
    background: #eef2ff;
}

.module-wheel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .module-wheel span {
        background: #ffffff;
        padding: 26px;
        border-radius: 16px;
        text-align: center;
        font-weight: 600;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .overview-split,
    .benefit-cards,
    .roi-strip,
    .module-wheel {
        grid-template-columns: 1fr;
    }
}


/* ==================== FAQ STYLE 2 (ISOLATED) ==================== */

.faq2-wrapper {
    background: linear-gradient(180deg, #eef9fb 0%, #f7feff 100%);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    color: #222;
}

.faq2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq2-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.faq2-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq2-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

    .faq2-item:hover {
        background: #fafafa;
    }

.faq2-title {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px 0;
}

    .faq2-title::before {
        content: "›";
        font-size: 26px;
        font-weight: 600;
        color: #806666;
        transition: transform 0.3s ease;
    }

    .faq2-title h3 {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
    }

/* Expand arrow */
.faq2-item.faq2-expanded .faq2-title::before {
    transform: rotate(90deg);
}

.faq2-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 38px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

    .faq2-content p {
        margin: 15px 0;
        color: #555;
    }

/* Expanded state */
.faq2-item.faq2-expanded .faq2-content {
    padding-top: 8px;
    padding-bottom: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1118px) {
    .faq2-list {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .faq2-list {
        margin: 0 20px;
    }
}

@media (max-width: 300px) {
    .faq2-list {
        margin: 0 10px;
    }

    .faq2-title {
        flex-direction: column;
        align-items: flex-start;
    }

        .faq2-title h3 {
            font-size: 15px;
        }
}
