:root {
    --ink: #11171b;
    --ink-soft: #223038;
    --night: #071012;
    --night-2: #0f1b20;
    --paper: #ffffff;
    --soft: #f3f6f6;
    --steel: #dce5e6;
    --line: #d1dbdd;
    --muted: #617079;
    --green: #87c946;
    --green-dark: #4f8d28;
    --teal: #0c6c70;
    --amber: #f2a51f;
    --red: #b84135;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(11, 20, 24, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
}

.wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.topbar {
    color: #c5d3d7;
    background: var(--night);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 700;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: var(--white);
    background: rgba(7, 16, 18, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.brand-row {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    text-decoration: none;
}

.brand-logo {
    display: grid;
    gap: 0;
    line-height: 1;
}

.brand-dpf {
    color: var(--green);
    font-size: 48px;
    font-weight: 950;
    line-height: .86;
    text-transform: uppercase;
}

.brand-services {
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-copy {
    display: block;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    font-size: 18px;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-copy small {
    margin-top: 6px;
    color: #aebfc4;
    font-size: 13px;
    font-weight: 700;
}

.nav-shell {
    background: var(--night-2);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
    min-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
}

.main-nav {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.main-nav a,
.nav-contact {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px 10px;
    color: #e7eff1;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav .is-active {
    color: var(--white);
    border-bottom-color: var(--green);
    background: rgba(255, 255, 255, .04);
}

.nav-contact {
    color: var(--night);
    background: var(--green);
    border-bottom-color: var(--green);
}

.header-call,
.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    color: var(--night);
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 4px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

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

.button:hover,
.header-call:hover {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
}

.button.secondary {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

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

.hero .button.secondary,
.service-hero .button.secondary,
.page-hero .button.secondary,
.band.dark .button.secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .34);
}

.hero .button.secondary:hover,
.service-hero .button.secondary:hover,
.page-hero .button.secondary:hover,
.band.dark .button.secondary:hover {
    color: var(--night);
    background: var(--white);
    border-color: var(--white);
}

.button.secondary-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .34);
}

.button.secondary-light:hover {
    color: var(--night);
    background: var(--white);
    border-color: var(--white);
}

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

.service-alert {
    color: #2a210f;
    background: #f5d486;
    border-bottom: 1px solid #d7af51;
}

.service-alert .wrap {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero,
.service-hero,
.page-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 16, 18, .98), rgba(9, 18, 22, .93) 44%, rgba(9, 18, 22, .78)),
        var(--night);
}

.hero {
    padding: 66px 0 72px;
}

.hero-grid,
.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    align-items: center;
    gap: 44px;
}

.hero-copy {
    max-width: 660px;
}

.hero h1,
.page-hero h1,
.service-hero h1 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 62px;
    line-height: 1;
    letter-spacing: 0;
}

.lead,
.service-hero-copy p,
.page-hero p {
    margin: 0;
    max-width: 680px;
    color: #d5e2e5;
    font-size: 20px;
    line-height: 1.5;
}

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

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-facts span {
    padding: 8px 12px;
    color: #d9e7e9;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 750;
}

.hero-media,
.service-hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.hero-media img,
.service-hero-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero-media::after,
.service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    pointer-events: none;
}

.diagnostic-card,
.media-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(7, 16, 18, .88);
    border-left: 4px solid var(--green);
    border-radius: 4px;
}

.diagnostic-card h2,
.media-caption strong {
    display: block;
    margin: 0 0 5px;
    color: var(--white);
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
}

.diagnostic-card p,
.media-caption span {
    margin: 0;
    color: #d7e4e7;
    font-size: 14px;
}

.service-hero {
    padding: 58px 0 64px;
}

.page-hero {
    padding: 60px 0 64px;
}

.page-hero .wrap {
    max-width: 980px;
}

.intake-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.intake-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.2fr 1.3fr auto;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 1px 0 var(--line);
}

.intake-title,
.intake-field {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 18px;
    border-left: 1px solid var(--line);
}

.intake-title {
    background: var(--soft);
    border-left: 0;
}

.intake-title strong,
.intake-field strong {
    display: block;
}

.intake-title strong {
    color: var(--ink);
    font-size: 19px;
    text-transform: uppercase;
}

.intake-title span,
.intake-field span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.intake-field strong {
    font-size: 15px;
}

.intake-grid .button {
    align-self: stretch;
    min-height: 82px;
    border-radius: 0;
}

.band {
    padding: 76px 0;
    background: var(--paper);
}

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

.band.dark {
    color: var(--white);
    background: var(--night);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 30px;
}

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

h1,
h2,
h3 {
    letter-spacing: 0;
}

h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 39px;
    line-height: 1.08;
}

h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.18;
}

p {
    margin: 0 0 16px;
}

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

.content-block {
    max-width: 860px;
}

.content-block > p {
    color: #39474f;
    font-size: 18px;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 54px;
    align-items: stretch;
    min-height: 106px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
    text-decoration: none;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-code {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: var(--night-2);
    font-size: 22px;
    font-weight: 900;
}

.service-row > span:nth-child(2) {
    padding: 22px 24px;
}

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

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    border-left: 1px solid var(--line);
    font-size: 26px;
    font-weight: 900;
}

.service-row:hover {
    border-color: rgba(79, 141, 40, .45);
    box-shadow: 0 14px 34px rgba(17, 23, 27, .09);
    transform: translateY(-2px);
}

.service-row:hover .service-arrow {
    color: var(--night);
    background: var(--green);
}

.warning-bar {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr auto;
    align-items: center;
    gap: 0;
    margin-top: 28px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
}

.warning-bar strong,
.warning-bar span,
.warning-bar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-right: 1px solid var(--line);
    font-weight: 800;
    text-decoration: none;
}

.warning-bar strong {
    color: var(--white);
    background: var(--red);
}

.warning-bar a {
    color: var(--night);
    background: var(--green);
    border-right: 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
    gap: 48px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}

.image-panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.check-list,
.detail-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.detail-list li {
    position: relative;
    padding-left: 30px;
    color: #33424a;
}

.check-list li::before,
.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--green);
    box-shadow: inset 0 0 0 2px rgba(7, 16, 18, .14);
}

.metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.metric {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
}

.metric strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    color: var(--night);
    background: var(--green);
    font-size: 31px;
    line-height: 1;
}

.metric span {
    padding: 18px;
    color: var(--ink);
    font-weight: 800;
}

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

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

.area-list span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 11px 14px;
    color: #203039;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    font-weight: 850;
}

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

.symptom,
.info-card {
    min-height: 210px;
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
}

.symptom h3,
.info-card h3 {
    padding-bottom: 12px;
    border-bottom: 3px solid var(--green);
}

.symptom p,
.info-card p {
    color: var(--muted);
}

.cta-panel,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(430px, 1.22fr);
    gap: 0;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-card {
    padding: 34px;
    color: #d7e3e6;
    background:
        linear-gradient(145deg, rgba(135, 201, 70, .14), rgba(135, 201, 70, 0) 42%),
        var(--night-2);
}

.contact-card h2 {
    color: var(--white);
}

.contact-card a {
    color: var(--white);
    font-weight: 900;
}

.enquiry-form {
    width: 100%;
    padding: 30px;
    background: var(--paper);
}

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

.enquiry-form label,
.enquiry-form span {
    display: block;
}

.enquiry-form span {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fbfcfc;
    border: 1px solid #c8d2d5;
    border-radius: 4px;
    font: inherit;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: 3px solid rgba(135, 201, 70, .22);
    border-color: var(--green-dark);
}

.enquiry-form textarea {
    min-height: 136px;
    resize: vertical;
}

.enquiry-form .wide {
    grid-column: 1 / -1;
}

.enquiry-form button {
    margin-top: 18px;
}

.form-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    color: #4b3000;
    background: #ffe8aa;
    border: 1px solid #d2a141;
    border-radius: 4px;
    font-weight: 800;
}

.form-message.success {
    color: #063c26;
    background: #d9efe4;
    border-color: #4a9b70;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    padding: 22px 24px;
    color: #263039;
    background: #fff2c6;
    border: 1px solid #e2c16b;
    border-left: 5px solid var(--amber);
    border-radius: 6px;
}

.dyno-panel {
    padding: 28px;
    color: #d7e3e6;
    background:
        linear-gradient(145deg, rgba(135, 201, 70, .17), rgba(135, 201, 70, 0) 46%),
        var(--night-2);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.dyno-panel h3 {
    color: var(--white);
    font-size: 28px;
}

.dyno-panel p {
    color: #d7e3e6;
}

.dyno-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.dyno-specs span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    font-weight: 800;
}

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

.price-card {
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
}

.price-card.featured {
    border-color: rgba(79, 141, 40, .5);
    box-shadow: 0 18px 48px rgba(79, 141, 40, .14);
}

.price-label {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 31px;
}

.price {
    margin: 0 0 12px;
    color: var(--night);
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.price-card ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 24px;
    color: #33424a;
    font-weight: 700;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 2px;
}

.dyno-price-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 20px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.dyno-price-strip span {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-weight: 900;
}

.dyno-price-strip span:last-child {
    border-right: 0;
}

.dyno-price-strip strong {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

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

.process-grid article {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--night);
    background: var(--green);
    border-radius: 4px;
    font-weight: 950;
}

.process-grid p {
    color: var(--muted);
}

.legal-disclaimer {
    padding: 18px 0 34px;
    color: var(--muted);
    background: var(--paper);
    border-top: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.45;
}

.legal-disclaimer p {
    max-width: 980px;
    margin: 0;
}

.legal-disclaimer strong {
    color: var(--ink);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(17, 23, 27, .05);
}

.fault-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--paper);
}

.fault-table th,
.fault-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.fault-table th {
    color: var(--white);
    background: var(--night-2);
}

.fault-table td:first-child {
    font-weight: 900;
    color: var(--teal);
    white-space: nowrap;
}

.site-footer {
    color: #c5d3d7;
    background: var(--night);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr 1fr;
    gap: 30px;
    padding-top: 54px;
    padding-bottom: 40px;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.site-footer h2 {
    font-size: 29px;
}

.site-footer h3 {
    font-size: 17px;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0 0 9px;
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
}

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

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #91a6ac;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
}

@media (max-width: 1040px) {
    .brand-row {
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-inner {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
    }

    .nav-contact {
        justify-content: center;
        white-space: nowrap;
    }

    .hero-grid,
    .service-hero-grid,
    .split,
    .split.reverse,
    .cta-panel,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .page-hero h1,
    .service-hero h1 {
        font-size: 50px;
    }

    .intake-grid,
    .warning-bar {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid,
    .dyno-price-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intake-grid .button,
    .warning-bar a {
        grid-column: 1 / -1;
    }

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

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

    .wrap {
        padding: 0 18px;
    }

    .topbar-inner,
    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        overflow: visible;
        white-space: normal;
        padding-top: 7px;
        padding-bottom: 7px;
        gap: 8px 16px;
    }

    .topbar-inner span:first-child {
        display: none;
    }

    .service-alert {
        display: none;
    }

    .brand {
        gap: 12px;
    }

    .brand-dpf {
        font-size: 36px;
    }

    .brand-services {
        font-size: 13px;
    }

    .brand-copy {
        padding-left: 12px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy small {
        max-width: 230px;
        font-size: 12px;
    }

    .brand-row {
        min-height: 68px;
    }

    .header-inner {
        flex-direction: column;
        overflow: visible;
        gap: 0;
    }

    .main-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        flex: 1 1 auto;
        width: 100%;
    }

    .main-nav a {
        justify-content: center;
        min-height: 38px;
        padding: 8px 6px;
        white-space: normal;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        font-size: 12px;
        text-align: center;
    }

    .header-call,
    .nav-contact {
        display: none;
    }

    .hero,
    .service-hero,
    .page-hero {
        padding: 44px 0 50px;
    }

    .hero h1,
    .page-hero h1,
    .service-hero h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 31px;
    }

    .lead,
    .service-hero-copy p,
    .page-hero p {
        font-size: 18px;
    }

    .diagnostic-card,
    .media-caption {
        position: static;
        border-radius: 0;
    }

    .intake-grid,
    .warning-bar,
    .symptom-grid,
    .card-grid,
    .price-grid,
    .process-grid,
    .dyno-price-strip,
    .area-list,
    .area-list.large,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .dyno-specs {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .service-arrow {
        display: none;
    }

    .service-row > span:nth-child(2) {
        padding: 18px;
    }

    .metric {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .metric strong {
        min-height: 74px;
        font-size: 25px;
    }

    .band {
        padding: 54px 0;
    }

    .contact-card,
    .enquiry-form {
        padding: 22px;
    }
}
