/*
Theme Name: One Off Cleaning
Theme URI: https://oneoffcleaning.co.uk/
Author: Ibrahim Ismail SEO
Description: SEO-first custom WordPress theme for One Off Cleaning.
Version: 1.0.0
Text Domain: oneoff-cleaning
*/

:root {
    --navy: #0b1f3a;
    --navy-2: #102b4e;
    --blue: #1769e0;
    --blue-2: #0f55bd;
    --green: #18a866;
    --white: #ffffff;
    --text: #172238;
    --muted: #667085;
    --light: #f5f8fc;
    --light-blue: #edf5ff;
    --border: #e4e9f0;
    --success-bg: #eaf9f1;
    --shadow-sm: 0 8px 24px rgba(11, 31, 58, .06);
    --shadow-md: 0 18px 50px rgba(11, 31, 58, .09);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-blue {
    background: var(--light-blue);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 10px 0 16px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--white);
    background: var(--blue);
}

.button-primary:hover {
    color: var(--white);
    background: var(--blue-2);
}

.button-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: var(--border);
}

.button-secondary:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.button-green {
    color: var(--white);
    background: var(--green);
}

.button-green:hover {
    color: var(--white);
    background: #128a53;
}

.button-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .28);
}

.button-outline:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 3px solid rgba(23, 105, 224, .35);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 56px 0;
    }

    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    color: var(--navy);
}

.site-logo-text strong {
    font-size: 17px;
    font-weight: 900;
}

.site-logo-text span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.primary-navigation {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--blue);
    background: var(--light-blue);
}

.header-actions {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    margin-left: auto;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 9px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px;
    background:
        radial-gradient(circle at 85% 15%, rgba(23, 105, 224, .10), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 70px;
    align-items: center;
}

.hero-content h1 {
    max-width: 760px;
    margin: 14px 0 22px;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -2.2px;
}

.hero-content > p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.hero-trust-list li {
    position: relative;
    padding-left: 19px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.hero-trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.hero-card {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-card-badge {
    display: inline-flex;
    padding: 7px 11px;
    color: var(--blue);
    background: var(--light-blue);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 20px 0 10px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.2;
}

.hero-card > p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.hero-card-links {
    display: grid;
    gap: 8px;
}

.hero-card-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 16px;
    color: var(--navy);
    background: var(--light);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.hero-card-links a:hover {
    color: var(--blue);
    background: var(--light-blue);
    border-color: #d6e7ff;
    transform: translateX(2px);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    background: var(--navy);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 16px 22px;
    border-right: 1px solid rgba(255,255,255,.10);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    color: #77b0ff;
    font-size: 13px;
    letter-spacing: 1px;
}

.trust-item span {
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}


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

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

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #cddcf1;
    box-shadow: var(--shadow-md);
}

.service-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: 20px;
    color: var(--blue);
    background: var(--light-blue);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 900;
}

.service-card h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-card .text-link {
    margin-top: auto;
    padding-top: 24px;
}

.service-card-featured {
    background: var(--navy);
    border-color: var(--navy);
}

.service-card-featured h3,
.service-card-featured p {
    color: var(--white);
}

.service-card-featured p {
    color: rgba(255,255,255,.72);
}

.service-card-featured .service-card-number {
    color: var(--white);
    background: rgba(255,255,255,.12);
}


/* =========================================================
   TEXT LINKS
   ========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.text-link:hover {
    color: var(--blue-2);
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* =========================================================
   CONTENT / CHECKLIST
   ========================================================= */

.content-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.content-column h2 {
    margin: 12px 0 20px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.content-column p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
}

.content-column .button {
    margin-top: 12px;
}

.content-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.check-item {
    padding: 22px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.check-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 15px;
}

.check-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.process-card {
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.process-card > span {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.process-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.3;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   NARROW CONTENT / ANSWERS
   ========================================================= */

.narrow-content {
    max-width: 900px;
}

.narrow-content > h2 {
    margin: 12px 0 20px;
    color: var(--navy);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.narrow-content > p {
    color: var(--muted);
    font-size: 17px;
}

.answer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.answer-grid > div {
    padding: 24px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 13px;
}

.answer-grid h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 17px;
}

.answer-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   AREAS
   ========================================================= */

.area-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 40px;
    background: var(--navy);
    border-radius: var(--radius-lg);
}

.area-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #80b8ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.area-feature h3 {
    max-width: 650px;
    margin: 0 0 10px;
    color: var(--white);
    font-size: 28px;
    line-height: 1.2;
}

.area-feature p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}


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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item summary {
    position: relative;
    padding: 22px 42px 22px 0;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 19px;
    right: 5px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item div {
    padding: 0 42px 22px 0;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 72px 0;
    background: var(--navy);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-inner .eyebrow {
    color: #80b8ff;
}

.cta-inner h2 {
    max-width: 650px;
    margin: 10px 0 13px;
    color: var(--white);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.cta-inner p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.72);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    color: rgba(255,255,255,.72);
    background: #07172b;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 50px;
    padding: 65px 0 55px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 340px;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-column h2 {
    margin: 0 0 17px;
    color: var(--white);
    font-size: 14px;
}

.footer-column ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}


/* =========================================================
   GENERIC PAGE / CONTENT
   ========================================================= */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--blue);
    font-weight: 700;
}

.page-header,
.single-header {
    max-width: 850px;
    margin-bottom: 35px;
}

.page-header h1,
.single-header h1 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.page-body,
.single-body {
    max-width: 850px;
}

.page-body h2,
.single-body h2 {
    margin: 42px 0 14px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.2;
}

.page-body h3,
.single-body h3 {
    margin: 30px 0 10px;
    color: var(--navy);
    font-size: 21px;
}

.page-body p,
.single-body p {
    color: var(--muted);
}

.page-body ul,
.page-body ol,
.single-body ul,
.single-body ol {
    color: var(--muted);
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 12px;
}

.single-featured-image {
    margin: 0 0 35px;
}

.single-featured-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.single-featured-image figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.content-list {
    display: grid;
    gap: 18px;
}

.content-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.content-card-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.content-card-body {
    padding: 28px;
}

.content-card-meta {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
}

.content-card-body h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 24px;
}

.content-card-excerpt p {
    color: var(--muted);
}

.archive-description {
    color: var(--muted);
}

.pagination {
    margin-top: 35px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
}

.pagination .current {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.empty-state,
.error-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.empty-state h2,
.error-content h1 {
    margin: 12px 0 16px;
    color: var(--navy);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
}

.empty-state p,
.error-content p {
    color: var(--muted);
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
    .site-header-inner {
        gap: 16px;
    }

    .primary-menu {
        gap: 0;
    }

    .primary-menu a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 800px;
    }

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

    .trust-item:nth-child(2) {
        border-right: 0;
    }

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

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 760px) {
    .site-header-inner {
        min-height: 68px;
    }

    .header-actions,
    .primary-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .primary-navigation.is-open {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: block;
        padding: 10px 20px 20px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .primary-navigation.is-open .primary-menu {
        display: grid;
        gap: 3px;
    }

    .primary-navigation.is-open .primary-menu a {
        padding: 12px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -1.5px;
    }

    .hero-card {
        padding: 25px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-trust-list {
        display: grid;
    }

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

    .trust-item,
    .trust-item:first-child {
        min-height: auto;
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .service-grid,
    .process-grid,
    .answer-grid,
    .content-checklist {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .area-feature,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .area-feature .button,
    .cta-actions {
        width: 100%;
    }

    .cta-actions .button {
        flex: 1;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 40px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-card {
        grid-template-columns: 1fr;
    }

    .content-card-image img {
        min-height: 190px;
        max-height: 260px;
    }
}

/* =========================================================
   SERVICE PAGE VISUAL + TRUST SYSTEM
   ========================================================= */

.service-hero {
    padding-top: 70px;
    padding-bottom: 70px;
    background: linear-gradient(135deg, #f5f8fc 0%, #ffffff 60%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 60px;
    align-items: center;
}

.service-hero-content h1 {
    max-width: 720px;
    margin: 14px 0 20px;
    color: var(--navy);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.service-hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-actions .button {
    width: auto;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.trust-inline span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-inline span::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--green);
    background: var(--success-bg);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.service-hero-visual {
    min-height: 430px;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 40px;
    color: var(--navy);
    background:
        linear-gradient(135deg, rgba(23, 105, 224, .08), rgba(24, 168, 102, .08)),
        var(--light-blue);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.image-placeholder span {
    font-size: 24px;
    font-weight: 800;
}

.image-placeholder small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

/* Trust cards */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.trust-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--blue);
    background: var(--light-blue);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 900;
}

.trust-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.3;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Checklist */

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

.checklist-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.checklist-card h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 20px;
}

.checklist-card ul,
.comparison-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist-card li,
.comparison-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: var(--muted);
    font-size: 14px;
}

.checklist-card li::before,
.comparison-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

/* Comparison */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comparison-card {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comparison-card h3 {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 22px;
}

.comparison-card .text-link {
    display: inline-flex;
    margin-top: 18px;
}

/* Scope note */

.scope-note {
    margin-top: 35px;
    padding: 28px;
    background: var(--light);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.scope-note h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.scope-note p {
    margin: 0;
}

/* CTA */

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-panel h2 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.cta-panel p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
}

.cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cta-panel-actions .button {
    width: auto;
}

/* Responsive */

@media (max-width: 1000px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-hero-visual,
    .image-placeholder {
        min-height: 360px;
    }

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

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

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .service-hero {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .service-hero-content h1 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .service-hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-panel-actions .button {
        width: 100%;
    }

    .trust-grid,
    .checklist-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 280px;
    }

    .cta-panel {
        padding: 28px;
    }
}
