/* ============================================================================
 * Virtual Team page
 * Mirrors asire-consultancy.css so the two service pages share a rhythm; only
 * the pieces that genuinely differ are redefined here. Shared furniture
 * (.section-title, .asire-section-kicker, .asire-gradient-card,
 * .service-detail-call-pill, .box-bg-shape) comes from asire-common.css.
 * ==========================================================================*/

.virtual-team-page .section-title h2 span,
.virtual-team-page .vt-longform-content h2 span{
    color: var(--accent-color);
}

.virtual-team-page::after{
    opacity: var(--page-overlay, 0.58);
}

.virtual-team-page .page-header-box{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.virtual-team-page .page-header-box h1{
    font-size: 48px;
    font-weight: 800;
}

/* ── Copy blocks ─────────────────────────────────────────────────────────── */
.vt-intro-section{
    padding: 60px 0 42px;
}

.vt-copy-stack{
    max-width: 1000px;
    margin: 0 auto;
}

.vt-copy-stack p{
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7em;
}

.vt-copy-stack p:last-child{
    margin-bottom: 0;
}

.vt-growth-section,
.vt-detail-section,
.vt-explainer-section,
.vt-services-section,
.vt-process-section,
.vt-benefits-section,
.vt-industries-section,
.vt-cta-section,
.vt-longform-section{
    padding: 44px 0;
}

/* ── Growth card ─────────────────────────────────────────────────────────── */
.vt-growth-card{
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 20px;
    background: var(--secondary-color);
}

.vt-growth-media figure,
.vt-row-media figure{
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.vt-growth-media img,
.vt-row-media img{
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.vt-growth-media img{
    aspect-ratio: 1.16 / 1;
}

.vt-growth-content p,
.vt-row-content p,
.vt-centered-content p,
.vt-longform-content p,
.vt-why-panel p{
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.72em;
}

.vt-subheading{
    margin: 22px 0 12px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.35em;
}

.vt-centered-content{
    max-width: 940px;
    margin: 0 auto;
}

.vt-section-head{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 32px;
}

.vt-section-head .section-title,
.vt-section-head .section-title h2{
    margin-bottom: 0;
}

/* ── Service cards ───────────────────────────────────────────────────────────
   Five cards on a six-column grid, each spanning two: three across the first
   row, then the last two nudged inward so the second row reads as centred
   rather than left-aligned. If a card is ever added or removed, revisit the
   nth-child rules below — they are tied to there being exactly five. */
.vt-service-grid{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.vt-service-card{
    grid-column: span 2;
    min-height: 100%;
    padding: 30px 26px 28px;
    border-radius: 15px 0 15px 15px;
    background: var(--secondary-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-service-card:nth-child(4){
    grid-column: 2 / span 2;
}

.vt-service-card:nth-child(5){
    grid-column: 4 / span 2;
}

.vt-service-card.box-bg-shape::after{
    background-color: var(--white-color);
}

.vt-service-card > *{
    position: relative;
    z-index: 2;
}

.vt-service-card img{
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 22px;
}

.vt-service-card h3{
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.25em;
}

.vt-service-card p{
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.65em;
}

.vt-service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(3, 29, 54, 0.08);
}

/* ── "Why your business needs a virtual team" band ───────────────────────────
   The PDF puts the heading and the WhatsApp pill on one row with a hairline
   above and below, rather than boxing them in a card. */
.vt-why-panel-section{
    padding: 30px 0;
}

.vt-why-band{
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(3, 29, 54, 0.10);
    border-bottom: 1px solid rgba(3, 29, 54, 0.10);
}

.vt-why-band-head{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 14px;
}

.vt-why-band-head .section-title,
.vt-why-band-head .section-title h2{
    margin-bottom: 0;
}

.vt-why-band > p{
    max-width: 760px;
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.72em;
}

.vt-why-choose-section{
    padding: 44px 0;
}

.vt-services-head{
    margin-bottom: 34px;
}

/* ── Process ─────────────────────────────────────────────────────────────── */
.vt-process-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.vt-process-card{
    min-height: 100%;
    padding: 30px 24px;
    border-radius: 14px;
}

.vt-process-card span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 800;
}

.vt-process-card h3{
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.25em;
}

.vt-process-card p{
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6em;
}

.vt-process-card:hover span{
    background: rgba(10, 73, 166, 0.1);
    color: var(--accent-color);
}

/* ── Image + copy rows ───────────────────────────────────────────────────── */
.vt-image-copy-row{
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.vt-image-copy-row--reverse{
    grid-template-columns: minmax(0, 1fr) 380px;
}

.vt-row-media img{
    aspect-ratio: 1.24 / 1;
}

/* ── Industries ──────────────────────────────────────────────────────────────
   Rows rather than cards: each industry paragraph is long enough that a
   four-across card grid would leave very tall, thin columns. */
.vt-industries-section .section-title{
    max-width: 720px;
    margin-bottom: 30px;
}

.vt-industries-section{
    background: var(--secondary-color);
}

.vt-industries-list{
    max-width: 1040px;
    margin: 0 auto;
}

.vt-industry-line{
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.75em;
}

.vt-industry-line:last-child{
    margin-bottom: 0;
}

.vt-industry-line strong{
    color: var(--accent-color);
    font-weight: 700;
}

/* ── Longform ────────────────────────────────────────────────────────────── */
.vt-longform-content{
    max-width: 1000px;
    margin: 0 auto;
}

.vt-longform-content article{
    margin-bottom: 34px;
}

.vt-longform-content article:last-child{
    margin-bottom: 0;
}

.vt-longform-content h2{
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.25em;
}

/* ── Closing CTA ─────────────────────────────────────────────────────────── */
.vt-cta-panel{
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 46px;
    border-radius: 20px;
    background: var(--secondary-color);
    text-align: center;
}

.vt-cta-head{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    text-align: left;
}

.vt-cta-head .section-title,
.vt-cta-head .section-title h2{
    margin-bottom: 0;
}

.vt-cta-panel > p{
    margin: 0 auto;
    max-width: 820px;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.72em;
    text-align: left;
}

.vt-cta-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.vt-cta-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.vt-cta-button:hover,
.vt-cta-button:focus-visible{
    background: #08387f;
    color: var(--white-color);
    transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media only screen and (max-width: 991px){
    .virtual-team-page .page-header-box h1{
        font-size: 38px;
    }

    .vt-growth-card,
    .vt-image-copy-row,
    .vt-image-copy-row--reverse{
        grid-template-columns: 1fr;
    }

    .vt-growth-card{
        padding: 32px;
    }

    .vt-section-head,
    .vt-why-band-head,
    .vt-cta-head{
        grid-template-columns: 1fr;
        align-items: start;
    }

    .vt-service-grid,
    .vt-process-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vt-service-card,
    .vt-service-card:nth-child(4),
    .vt-service-card:nth-child(5){
        grid-column: auto;
    }

    /* The media block is source-ordered second in the reversed row, so on a
       single column it would drop below the copy — pull it back above. */
    .vt-image-copy-row--reverse .vt-row-media{
        order: -1;
    }
}

@media only screen and (max-width: 767px){
    .virtual-team-page .page-header-box h1{
        font-size: 30px;
    }

    .vt-intro-section{
        padding: 42px 0 30px;
    }

    .vt-growth-section,
    .vt-detail-section,
    .vt-explainer-section,
    .vt-services-section,
    .vt-process-section,
    .vt-benefits-section,
    .vt-industries-section,
    .vt-cta-section,
    .vt-longform-section{
        padding: 34px 0;
    }

    .vt-growth-card,
    .vt-cta-panel{
        padding: 24px;
        border-radius: 18px;
    }

    .vt-service-grid,
    .vt-process-grid{
        grid-template-columns: 1fr;
    }

    .vt-service-card,
    .vt-process-card{
        padding: 24px 22px;
    }

    .vt-longform-content h2{
        font-size: 24px;
    }

    .vt-cta-actions{
        gap: 10px;
    }
}
