/* =========================================================
   MICHAEL WOOD — SERVICE DETAIL PAGES
   Shared by every /services/*.php landing page
========================================================= */

:root {
    --sd-dark: #050b1a;
    --sd-dark-2: #081126;
    --sd-ink: #081225;
    --sd-copy: #53617a;
    --sd-border: #e4e8ef;
    --sd-soft: #f8faff;
    --sd-white: #ffffff;
    --sd-blue: #315fc4;
    --sd-cyan: #4fa9cf;
    --sd-purple: #795fc9;
}


/* =========================================================
   PAGE SECTIONS
========================================================= */

.section {
    position: relative;
    padding: 112px 30px;
    color: var(--sd-ink);
    background: var(--sd-white);
    border-top: 1px solid rgba(15, 23, 42, .045);
}

.section:nth-of-type(odd):not(:first-of-type) {
    background: var(--sd-soft);
}

.section>.container {
    width: min(1500px, 100%);
    margin: 0 auto;
}


/* =========================================================
   FIRST SECTION / HERO
========================================================= */

.section:first-of-type {
    overflow: hidden;
    padding-top: 92px;
    padding-bottom: 105px;
    color: #fff;
    background:
        radial-gradient(720px 420px at 85% 10%, rgba(121, 95, 201, .13), transparent 66%),
        radial-gradient(680px 420px at 0% 40%, rgba(49, 95, 196, .13), transparent 68%),
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        var(--sd-dark);
    background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.section:first-of-type::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -210px;
    bottom: -260px;
    border-radius: 50%;
    background: rgba(102, 227, 255, .055);
    filter: blur(55px);
    pointer-events: none;
}

.section:first-of-type .sectionHead {
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.section:first-of-type .h1,
.section:first-of-type h1 {
    max-width: 1150px;
    color: #fff;
    font-size: clamp(52px, 6vw, 94px);
    line-height: .94;
    letter-spacing: -.068em;
}

.section:first-of-type .sub {
    max-width: 900px !important;
    color: rgba(239, 243, 255, .64);
    font-size: 16px;
    line-height: 1.76;
}

.section:first-of-type .sub b,
.section:first-of-type .sub strong {
    color: #fff;
}

.section:first-of-type .kicker {
    color: #66e3ff;
}

.section:first-of-type .pill {
    color: rgba(255, 255, 255, .65);
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
}


/* =========================================================
   HEADINGS
========================================================= */

.sectionHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 34px;
}

.sectionHead>div:first-child {
    min-width: 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #315f93;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.kicker::before {
    content: "";
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, #3d7fa9, #7a6bc4);
}

.h1,
.section h1,
.section h2 {
    margin: 14px 0 0;
    color: var(--sd-ink);
    line-height: 1;
    letter-spacing: -.055em;
}

.section h2 {
    font-size: clamp(38px, 4.4vw, 66px);
}

.section h3 {
    color: var(--sd-ink);
}

.sub {
    margin: 18px 0 0;
    color: var(--sd-copy);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 17px;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    color: #26324c;
    background: #fff;
    box-shadow: 0 9px 22px rgba(15, 23, 42, .04);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .055em;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: #bcc8d9;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .075);
}

.btn.primary {
    color: #fff;
    border-color: rgba(102, 227, 255, .25);
    background: linear-gradient(110deg, #3d65ef, #8049ed);
    box-shadow: 0 16px 38px rgba(61, 71, 220, .16);
}

.section:first-of-type .btn:not(.primary) {
    color: rgba(255, 255, 255, .77);
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    box-shadow: none;
}


/* =========================================================
   PILLS
========================================================= */

.pill {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid #dfe4ec;
    border-radius: 999px;
    color: #637087;
    background: rgba(255, 255, 255, .65);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4fa9cf;
    box-shadow: 0 0 10px rgba(79, 169, 207, .25);
}


/* =========================================================
   CARDS / SERVICE TILES
========================================================= */

.grid2,
.grid3,
.twoCol {
    display: grid;
    gap: 14px;
}

.grid2,
.twoCol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service,
.card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 11px 30px rgba(15, 23, 42, .04);
}

.service {
    display: flex;
    flex-direction: column;
    padding: 26px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.service:hover {
    transform: translateY(-4px);
    border-color: #ccd5e3;
    box-shadow: 0 20px 44px rgba(15, 23, 42, .075);
}

.service .pill {
    margin-bottom: 28px;
}

.service h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.service p {
    margin: 0;
    color: var(--sd-copy);
    font-size: 12px;
    line-height: 1.68;
}

.service .btn {
    margin-top: auto;
}

.card.pad,
.pad {
    padding: 34px;
}

.card .kicker+h3,
.card .kicker+h2 {
    margin-top: 9px;
}

.card p {
    color: var(--sd-copy);
    line-height: 1.72;
}


/* Hero service cards stay dark */
.section:first-of-type .service,
.section:first-of-type .card {
    border-color: rgba(255, 255, 255, .095);
    background: rgba(255, 255, 255, .025);
    box-shadow: none;
}

.section:first-of-type .service h3,
.section:first-of-type .card h3,
.section:first-of-type .card h2 {
    color: #fff;
}

.section:first-of-type .service p,
.section:first-of-type .card p {
    color: rgba(239, 243, 255, .5);
}

.section:first-of-type .service .pill {
    color: rgba(255, 255, 255, .58);
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
}


/* =========================================================
   MINI LISTS
========================================================= */

.miniList {
    display: grid;
    gap: 9px;
}

.miniList>div {
    padding: 11px 13px;
    border: 1px solid #e5e9f0;
    border-radius: 9px;
    color: #556076;
    background: #fff;
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   FAQ / DETAILS
========================================================= */

details {
    border-bottom: 1px solid #dde3eb;
}

details:first-of-type {
    border-top: 1px solid #dde3eb;
}

details summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #182038;
    cursor: pointer;
    list-style: none;
    font-weight: 760;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    border: 1px solid #dbe1ea;
    border-radius: 50%;
    color: #315fc4;
    transition: transform .2s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details>p,
details>div {
    color: var(--sd-copy);
    line-height: 1.72;
}


/* =========================================================
   BREADCRUMBS
========================================================= */

.breadcrumbs,
.breadcrumb,
nav[aria-label="Breadcrumb"] {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
}

.section:first-of-type .breadcrumbs a,
.section:first-of-type .breadcrumb a,
.section:first-of-type nav[aria-label="Breadcrumb"] a {
    color: rgba(255, 255, 255, .58);
}


/* =========================================================
   SKIP-HIRE SPECIAL CLASSES
========================================================= */

.skipDarkBand {
    padding: 100px 30px;
    color: #fff;
    background:
        radial-gradient(700px 360px at 85% 0%, rgba(121, 95, 201, .11), transparent 66%),
        #050b1a;
}

.skipDarkBand .container {
    width: min(1500px, 100%);
    margin: 0 auto;
}

.skipHeroGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.skipHeroVisual,
.skipScreenshotGrid>*,
.skipMiniScreens>* {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025);
}

.skipStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.skipStat {
    padding: 22px;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    background: #fff;
}

.skipFeatureList {
    display: grid;
    gap: 12px;
}

.skipFeatureItem {
    padding: 18px;
    border: 1px solid #e3e8ef;
    border-radius: 13px;
    background: #fff;
}

.skipProcess,
.skipScreenshotGrid,
.skipMiniScreens {
    display: grid;
    gap: 12px;
}

.skipScreenshotGrid {
    grid-template-columns: repeat(2, 1fr);
}

.skipMiniScreens {
    grid-template-columns: repeat(3, 1fr);
}

.skipFaq details {
    background: transparent;
}


/* =========================================================
   REVEALS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .72s ease,
        transform .72s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {
    .sectionHead {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .skipHeroGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 76px 14px;
    }

    .section:first-of-type {
        padding-top: 62px;
        padding-bottom: 76px;
    }

    .section:first-of-type .h1,
    .section:first-of-type h1 {
        font-size: clamp(47px, 14vw, 70px);
    }

    .section:first-of-type .sub {
        font-size: 15px;
    }

    .grid2,
    .grid3,
    .twoCol {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 0;
    }

    .card.pad,
    .pad {
        padding: 25px 21px;
    }

    .sectionHead h2,
    .section h2 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .skipDarkBand {
        padding: 76px 14px;
    }

    .skipStats,
    .skipScreenshotGrid,
    .skipMiniScreens {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   V5 — LIGHT SECTION COLOUR REFINEMENT
========================================================= */
:root {
    --sd-ink: #081225;
    --sd-copy: #53617a;
    --sd-soft: #f8faff;
    --sd-border: #dde5f0;
}