:root {
    --ink: #18212b;
    --muted: #5f6b78;
    --line: #d8dee4;
    --paper: #ffffff;
    --soft: #f3f7f6;
    --teal: #0f766e;
    --teal-dark: #0b4f4a;
    --teal-rgb: 15, 118, 110;
    --teal-dark-rgb: 11, 79, 74;
    --gold: #c99538;
    --graphite: #27313d;
    --shadow: 0 18px 45px rgba(24, 33, 43, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 12px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(216, 222, 228, 0.7);
    transition: box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-elevated {
    min-height: 66px;
    box-shadow: 0 12px 35px rgba(24, 33, 43, 0.1);
}

.brand {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    color: white;
    background: var(--teal-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
    min-width: 0;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    max-width: 260px;
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--graphite);
    font-weight: 650;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
    color: var(--teal-dark);
    background: var(--soft);
}

.site-nav .nav-cta {
    color: white;
    background: var(--teal);
}

.site-nav .nav-cta:hover {
    color: white;
    background: var(--teal-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding: 118px clamp(18px, 5vw, 72px) 72px;
    color: white;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 41, 45, 0.88), rgba(15, 41, 45, 0.52) 45%, rgba(15, 41, 45, 0.14)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.35rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero p {
    max-width: 660px;
    font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.hero-actions,
.section-head,
.panel-head {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

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

.button.ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
}

.section {
    padding: clamp(64px, 9vw, 112px) 0;
}

.container {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.split h2,
.section-head h2,
.cta-band h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.intro-band {
    background: var(--soft);
}

.rich-text {
    color: var(--muted);
    font-size: 1.05rem;
}

.rich-text p:first-child {
    margin-top: 0;
}

.section-head {
    justify-content: space-between;
    margin-bottom: 28px;
}

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

.service-grid.wide {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    min-height: 270px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 8px 24px rgba(24, 33, 43, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--teal-rgb), 0.38);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 150px;
    margin-bottom: 18px;
    border-radius: 6px;
    object-fit: cover;
}

.icon-pill {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: white;
    background: var(--teal-dark);
}

.service-icon-centered {
    margin: 4px auto 18px;
    width: 58px;
    height: 58px;
}

.service-card h3 {
    margin: 16px 0 8px;
    font-size: 1.18rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.cta-band {
    padding: 56px 0;
    color: white;
    background: var(--graphite);
}

.cta-band .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.metrics-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: white;
    background: var(--teal-dark);
}

.metric {
    min-height: 170px;
    display: grid;
    place-items: center;
    padding: 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.metric strong {
    display: block;
    font-size: 2.6rem;
    color: var(--gold);
}

.contact-section {
    padding: clamp(72px, 10vw, 120px) 0;
    background:
        linear-gradient(90deg, var(--teal-dark) 0 34%, transparent 34%),
        var(--soft);
    scroll-margin-top: 88px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    min-height: 680px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}

.contact-info-panel {
    display: grid;
    align-content: start;
    gap: 22px;
    padding: clamp(28px, 5vw, 48px);
    color: white;
    background:
        linear-gradient(180deg, rgba(var(--teal-dark-rgb), 0.95), rgba(24, 33, 43, 0.96)),
        var(--teal-dark);
}

.contact-info-panel .eyebrow {
    color: var(--gold);
}

.contact-info-panel h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
}

.contact-info-panel .rich-text {
    color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-method {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.contact-method span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    grid-row: span 2;
    border-radius: 8px;
    color: var(--teal-dark);
    background: white;
}

.contact-method strong,
.contact-method small {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-method small {
    color: rgba(255, 255, 255, 0.75);
}

.contact-method:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.13);
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--teal);
}

.contact-form {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: clamp(28px, 5vw, 48px);
    border: 0;
    border-radius: 0;
    background: white;
    box-shadow: none;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-grid .span-2 {
    grid-column: 1 / -1;
}

.form-status {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    color: #0f5132;
    background: #dff3e8;
    border: 1px solid #a9dbc0;
}

.form-status.error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    font: inherit;
    background: white;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-captcha {
    display: grid;
    justify-content: center;
    gap: 8px;
    margin: 2px 0 4px;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(var(--teal-rgb), 0.18);
    border-color: var(--teal);
}

input.is-invalid,
textarea.is-invalid {
    border-color: #b42318;
    background: #fff8f7;
}

input.is-invalid:focus,
textarea.is-invalid:focus {
    outline-color: rgba(180, 35, 24, 0.16);
}

.field-error {
    min-height: 18px;
    color: #b42318;
    font-size: 0.84rem;
    font-weight: 700;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

.contact-form .iti__arrow {
    display: none;
}

.contact-form .iti__selected-country {
    cursor: default;
}

.contact-form button[disabled] {
    opacity: 0.72;
    cursor: wait;
}

.site-footer {
    display: grid;
    gap: 0;
    padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 72px) 24px;
    color: white;
    background:
        linear-gradient(135deg, rgba(var(--teal-dark-rgb), 0.96), rgba(21, 28, 36, 0.98) 46%, #151c24),
        #151c24;
}

.site-footer p {
    margin: 4px 0;
    color: #cbd5df;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta .eyebrow {
    margin-bottom: 8px;
    color: var(--gold);
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.12;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    padding: 32px 0;
}

.footer-brand-block {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    max-width: 440px;
    text-decoration: none;
}

.footer-brand img,
.footer-brand .brand-mark {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 8px;
}

.footer-brand img {
    object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-brand strong {
    font-size: 1.15rem;
}

.footer-brand small {
    color: #cbd5df;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    align-content: start;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 0;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-contact-item span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--teal-dark);
    background: white;
}

.footer-contact-item small {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.66rem;
}

.footer-contact-item p {
    margin: 0;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    color: white;
    font-weight: 700;
    line-height: 1.18;
    font-size: clamp(0.72rem, 0.48vw + 0.52rem, 0.9rem);
}

.footer-contact-email p,
.footer-contact-phone p {
    overflow-wrap: break-word;
    font-size: clamp(0.58rem, 0.42vw + 0.44rem, 0.82rem);
}

.footer-contact-location p {
    text-wrap: balance;
}

.footer-contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.11);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #aeb8c3;
    font-size: 0.92rem;
}

.footer-bottom a {
    color: white;
    font-weight: 800;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover {
    color: white;
    background: var(--teal);
    transform: translateY(-2px);
}

.footer-social {
    margin-top: 0;
}

.contact-social a {
    color: var(--teal-dark);
    background: var(--soft);
    border-color: var(--line);
}

.contact-social a:hover {
    color: white;
    background: var(--teal);
}

.flash-stack {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 40;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 36px));
}

.flash {
    padding: 12px 14px;
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--teal);
    animation: flash-in 180ms ease-out;
    transition: opacity 240ms ease, transform 240ms ease;
}

.flash.error {
    border-color: #b42318;
}

.flash.warning {
    border-color: var(--gold);
}

.flash.is-hiding {
    opacity: 0;
    transform: translateY(10px);
}

@keyframes flash-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 110ms;
}

.delay-2 {
    transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 880px) {
    .site-header {
        gap: 10px;
        padding: 8px 14px;
    }

    .brand {
        flex: 1 1 auto;
        gap: 10px;
        max-width: calc(100% - 54px);
    }

    .brand img,
    .brand-mark {
        width: 58px;
        height: 58px;
    }

    .brand strong,
    .brand small {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand strong {
        font-size: 0.92rem;
        line-height: 1.18;
        white-space: nowrap;
    }

    .brand small {
        max-width: none;
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 44px;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: white;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .split,
    .contact-shell,
    .contact-form-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        background: var(--soft);
        padding: 56px 0;
    }

    .contact-shell {
        min-height: auto;
    }

    .hero {
        min-height: 88vh;
        padding-top: 108px;
    }

    .cta-band .container {
        display: grid;
    }

    .footer-cta,
    .footer-main,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        align-items: start;
    }

    .footer-contact-item {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 12px 14px;
    }

    .footer-contact-item span {
        width: 40px;
        height: 40px;
    }

    .footer-contact-item small {
        font-size: 0.72rem;
    }

    .footer-contact-item p,
    .footer-contact-email p,
    .footer-contact-phone p {
        font-size: 0.92rem;
        line-height: 1.25;
    }

    .footer-cta .button {
        justify-self: start;
    }

    .footer-bottom {
        display: grid;
    }

    .metrics-band {
        grid-template-columns: 1fr;
    }
}

/* service showcase rewritten below */


.service-showcase-section {
    position: relative;
    padding: clamp(72px, 10vw, 122px) 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f8f7 48%, #ffffff 100%);
    overflow: hidden;
}

.service-showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(var(--teal-dark-rgb), 0.07) 0 28%, transparent 28% 100%),
        repeating-linear-gradient(90deg, rgba(24, 33, 43, 0.035) 0 1px, transparent 1px 92px);
    pointer-events: none;
}

.service-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.58fr);
    gap: clamp(26px, 4vw, 48px);
    align-items: start;
}

.service-showcase-panel {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 22px;
    padding: clamp(26px, 4vw, 38px);
    border-radius: 8px;
    color: white;
    background: linear-gradient(150deg, rgba(var(--teal-dark-rgb), 0.98), rgba(24, 33, 43, 0.98));
    box-shadow: 0 24px 62px rgba(24, 33, 43, 0.22);
}

.service-showcase-panel .eyebrow {
    color: var(--gold);
}

.service-showcase-panel h2 {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.service-showcase-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.service-proof-grid {
    display: grid;
    gap: 10px;
    margin: 6px 0;
}

.service-proof-grid span {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 750;
}

.service-proof-grid strong {
    color: var(--gold);
    font-size: 1.05rem;
}

.service-experience-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-experience-card {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid rgba(216, 222, 228, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(24, 33, 43, 0.07);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-experience-card:first-child {
    grid-column: 1 / -1;
    min-height: 320px;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
    grid-template-rows: 1fr;
}

.service-experience-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 6px;
    background: linear-gradient(180deg, var(--gold), var(--teal));
}

.service-experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--teal-rgb), 0.38);
    background: white;
    box-shadow: 0 24px 58px rgba(24, 33, 43, 0.14);
}

.service-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 176px;
    padding: 18px 18px 0 24px;
    background: linear-gradient(180deg, rgba(var(--teal-rgb), 0.09), rgba(var(--teal-rgb), 0.02));
}

.service-visual img {
    width: 100%;
    height: 176px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(24, 33, 43, 0.13);
}

.service-visual .icon-pill {
    width: 72px;
    height: 72px;
    color: white;
    background: var(--teal-dark);
    box-shadow: 0 12px 28px rgba(var(--teal-dark-rgb), 0.22);
}

.service-copy {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 26px 26px 28px;
}



.service-experience-card h3 {
    max-width: 94%;
    margin: 0;
    font-size: clamp(1.32rem, 2.3vw, 1.86rem);
    line-height: 1.14;
    letter-spacing: 0;
}

.service-experience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.service-experience-card:first-child .service-visual {
    min-height: 100%;
    padding: 26px 0 26px 32px;
    background: linear-gradient(90deg, rgba(var(--teal-rgb), 0.1), rgba(var(--teal-rgb), 0.02));
}

.service-experience-card:first-child .service-visual img {
    width: calc(100% - 26px);
    height: 100%;
    min-height: 220px;
    max-height: 300px;
}

.service-experience-card:first-child .service-visual .icon-pill {
    width: 88px;
    height: 88px;
}

.service-experience-card:first-child .service-copy {
    align-content: center;
    padding: 34px 34px 34px 30px;
}


.service-cta-strip {
    padding: 42px 0;
    color: white;
    background: #151c24;
}

.service-cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.service-cta-strip span {
    font-size: clamp(1.35rem, 3vw, 2.15rem);
    font-weight: 850;
    line-height: 1.1;
}

@media (max-width: 980px) {
    .service-showcase,
    .service-experience-list,
    .service-experience-card:first-child {
        grid-template-columns: 1fr;
    }

    .service-showcase-panel {
        position: relative;
        top: auto;
    }

    .service-experience-card:first-child {
        grid-template-rows: auto 1fr;
    }

    .service-experience-card:first-child .service-visual {
        padding: 18px 18px 0 24px;
        min-height: 176px;
    }

    .service-experience-card:first-child .service-visual img {
        width: 100%;
        height: 176px;
        min-height: 0;
        max-height: none;
    }

    .service-experience-card:first-child .service-copy {
        align-content: start;
        padding: 26px 26px 28px;
    }
}

@media (max-width: 640px) {
    .service-showcase-section {
        padding: 54px 0;
    }

    .service-showcase-panel {
        padding: 22px;
    }

    .service-experience-list {
        gap: 16px;
    }

    .service-experience-card,
    .service-experience-card:first-child {
        min-height: auto;
    }

    .service-visual,
    .service-experience-card:first-child .service-visual {
        padding: 14px 14px 0 20px;
    }

    .service-visual img,
    .service-experience-card:first-child .service-visual img {
        height: 154px;
    }

    .service-copy,
    .service-experience-card:first-child .service-copy {
        padding: 22px 20px 24px;
    }



    .service-cta-strip .container {
        display: grid;
    }
}

/* Compact services layout override */
.service-showcase {
    grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.74fr);
    gap: clamp(22px, 3vw, 36px);
}

.service-showcase-panel {
    top: 92px;
    gap: 18px;
    padding: clamp(22px, 3vw, 30px);
}

.service-showcase-panel h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.service-proof-grid {
    grid-template-columns: 1fr;
}

.service-proof-grid span {
    min-height: 48px;
}

.service-experience-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.service-experience-card,
.service-experience-card:first-child {
    grid-column: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.service-visual,
.service-experience-card:first-child .service-visual {
    min-height: 0;
    padding: 14px 14px 0 20px;
    background: linear-gradient(180deg, rgba(var(--teal-rgb), 0.08), rgba(var(--teal-rgb), 0.02));
}

.service-visual img,
.service-experience-card:first-child .service-visual img {
    width: 100%;
    height: 134px;
    min-height: 0;
    max-height: none;
    border-radius: 7px;
}

.service-visual .icon-pill,
.service-experience-card:first-child .service-visual .icon-pill {
    width: 62px;
    height: 62px;
}

.service-copy,
.service-experience-card:first-child .service-copy {
    align-content: start;
    gap: 11px;
    padding: 20px 20px 22px;
}



.service-experience-card h3 {
    max-width: 100%;
    font-size: clamp(1.15rem, 1.6vw, 1.42rem);
}

.service-experience-card p {
    font-size: 0.96rem;
    line-height: 1.55;
}

@media (max-width: 700px) {
    .service-experience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .service-showcase {
        grid-template-columns: 1fr;
    }

    .service-showcase-panel {
        position: relative;
        top: auto;
    }

    .service-proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 700px) {
    .service-experience-list,
    .service-proof-grid {
        grid-template-columns: 1fr;
    }

    .service-visual img,
    .service-experience-card:first-child .service-visual img {
        height: 158px;
    }
}

.service-experience-card {
    color: inherit;
    text-decoration: none;
}

.service-experience-card:hover {
    text-decoration: none;
}

.service-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 34px;
    margin-top: 2px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(var(--teal-rgb), 0.09);
    font-size: 0.78rem;
    font-weight: 850;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-experience-card:hover .service-card-action {
    color: white;
    background: var(--teal);
    transform: translateX(2px);
}

select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 40px 12px 13px;
    color: var(--ink);
    font: inherit;
    font-weight: 650;
    background:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
        linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 15px) 50% / 7px 7px no-repeat,
        white;
    appearance: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

select:focus {
    outline: 3px solid rgba(var(--teal-rgb), 0.18);
    border-color: var(--teal);
}

select.is-invalid {
    border-color: #b42318;
    background-color: #fff8f7;
}

select.is-invalid:focus {
    outline-color: rgba(180, 35, 24, 0.16);
}

/* Horizontal services header override */
.service-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 36px);
}

.service-showcase-panel {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    padding: clamp(22px, 3vw, 34px);
}

.service-showcase-copy {
    display: grid;
    gap: 10px;
}

.service-showcase-panel h2 {
    max-width: 760px;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.service-showcase-panel p {
    max-width: 720px;
}

.service-proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin: 0;
}

.service-proof-grid span {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 58px;
}

.service-showcase-panel .button {
    white-space: nowrap;
}

.service-experience-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

@media (max-width: 1120px) {
    .service-showcase-panel {
        grid-template-columns: 1fr;
    }

    .service-showcase-panel .button {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .service-proof-grid {
        grid-template-columns: 1fr;
    }

    .service-experience-list {
        grid-template-columns: 1fr;
    }
}

/* Fix horizontal services header spacing */
.service-showcase-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.service-showcase-copy {
    max-width: 760px;
}

.service-proof-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 12px;
    max-width: 760px;
}

.service-proof-grid span {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    white-space: nowrap;
}

.service-showcase-panel .button {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
}

@media (max-width: 980px) {
    .service-showcase-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .service-showcase-panel .button,
    .service-proof-grid {
        grid-column: auto;
        grid-row: auto;
    }

    .service-proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: none;
    }
}

@media (max-width: 700px) {
    .service-proof-grid {
        grid-template-columns: 1fr;
    }

    .service-proof-grid span {
        white-space: normal;
    }
}

/* Align service card CTAs */
.service-experience-card {
    height: 100%;
}

.service-copy,
.service-experience-card:first-child .service-copy {
    grid-template-rows: auto 1fr auto;
    min-height: 0;
    height: 100%;
}

.service-copy p {
    align-self: start;
}

.service-card-action {
    align-self: end;
    margin-top: 8px;
}

.service-experience-list {
    align-items: stretch;
}
