:root {
    --black: #050505;
    --black-2: #0b0b0d;
    --black-3: #151518;
    --graphite: #232327;
    --yellow: #ffd000;
    --yellow-2: #ffb800;
    --yellow-3: #ffe872;
    --steel: #b8bcc2;
    --white: #fffdf4;
    --muted: #a7a7ad;
    --ink: #111114;
    --line: rgba(255, 208, 0, 0.24);
    --line-soft: rgba(255, 255, 255, 0.1);
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --wrap: min(1180px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "Instrument Sans", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 208, 0, 0.18), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(255, 184, 0, 0.12), transparent 26%),
        linear-gradient(135deg, #050505 0%, #101013 48%, #050505 100%);
}

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

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

p,
ul,
ol {
    margin-top: 0;
}

.wrap,
.ct-section > .ct-inner,
.wp-block-group__inner-container {
    width: var(--wrap);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 90;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 14px;
    border-radius: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 208, 0, 0.18);
}

.nav-shell {
    display: grid;
    grid-template-columns: minmax(235px, auto) minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 82px;
}

.brand,
.site-nav,
.nav-actions,
.hero-actions,
.contact-actions {
    display: flex;
    align-items: center;
}

.brand {
    gap: 14px;
    min-width: 0;
}

.brand-logo,
.footer-logo {
    width: 112px;
    height: 58px;
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 10px 20px rgba(255, 208, 0, 0.18));
}

.footer-logo {
    width: 132px;
    height: 76px;
    margin-bottom: 18px;
}

.factory-logo {
    height: 74px;
    width: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    text-align: center;
}

.brand-kicker {
    font-family: "Syne", sans-serif;
    font-size: 1.18rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-sub {
    color: var(--yellow);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav {
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-nav li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li::marker {
    content: "";
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 7px;
    border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--yellow);
    background: rgba(255, 208, 0, 0.08);
}

.nav-actions {
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    appearance: none;
    border: 1px solid var(--line);
    min-width: 50px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 208, 0, 0.08);
    color: var(--yellow);
    font-weight: 900;
}

.button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 0.92rem;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.wp-block-button__link:hover {
    transform: translateY(-1px);
}

.button-primary,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #070707;
    box-shadow: 0 18px 38px rgba(255, 208, 0, 0.24);
}

.button-secondary,
.button-ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 208, 0, 0.34);
    color: var(--white);
}

.ct-light .button-secondary,
.ct-light .wp-block-button.is-style-outline .wp-block-button__link {
    background: #111114;
    border-color: #111114;
    color: var(--white);
}

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

.button-arrow::after {
    content: "\2192";
    margin-left: 10px;
}

.ct-section {
    padding: 104px 0;
}

.ct-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 45%, rgba(5, 5, 5, 0.72) 100%),
        url("../images/turntech-hero.jpg") center/cover no-repeat;
}

.ct-hero::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -180px;
    top: 60px;
    border: 2px solid rgba(255, 208, 0, 0.34);
    border-radius: 50%;
    box-shadow: inset 0 0 90px rgba(255, 208, 0, 0.14), 0 0 80px rgba(255, 208, 0, 0.12);
}

.ct-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -22% auto;
    width: 58vw;
    height: 30vw;
    background: linear-gradient(135deg, transparent 20%, rgba(255, 208, 0, 0.22), transparent 72%);
    transform: skewY(-11deg);
    pointer-events: none;
}

.ct-grid,
.ct-split,
.ct-contact,
.ct-gallery,
.ct-proof {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 58px;
    align-items: center;
}

.ct-copy {
    max-width: 700px;
}

.eyebrow,
.ct-kicker,
.feature-index,
.metric-label,
.contact-method span {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ct-hero h1,
.ct-heading,
.ct-page-title,
.content-card h2,
.notice-card h2 {
    margin: 0 0 20px;
    font-family: "Syne", sans-serif;
    font-size: clamp(4.2rem, 6.3vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.058em;
}

.ct-heading,
.ct-page-title,
.content-card h2,
.notice-card h2 {
    font-size: clamp(2.45rem, 4.2vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.ct-lede,
.ct-copy p,
.section-head p,
.content-card p,
.content-card li,
.feature-card p,
.hero-card p,
.notice-card p,
.contact-panel p,
.footer-grid p,
.footer-grid a,
.footer-meta {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.02rem;
}

.ct-lede {
    font-size: clamp(1.08rem, 1.32vw, 1.2rem);
    max-width: 640px;
    line-height: 1.72;
}

.hero-actions,
.contact-actions {
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-points,
.detail-list {
    padding-left: 20px;
}

.hero-points li,
.detail-list li {
    margin-bottom: 10px;
}

.proof-strip {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    max-width: 700px;
}

.proof-pill {
    flex: 1 1 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 208, 0, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
}

.ct-panel,
.hero-card,
.feature-card,
.media-card,
.factory-card,
.factory-panel,
.contact-panel,
.content-card,
.notice-card,
.notice-panel,
.data-table,
.spec-sheet,
.faq-item {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.ct-panel,
.hero-card,
.factory-panel,
.contact-panel,
.notice-panel {
    background: linear-gradient(145deg, rgba(255, 208, 0, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.ct-panel,
.hero-card,
.feature-card,
.factory-card,
.factory-panel,
.contact-panel,
.content-card,
.notice-card,
.notice-panel {
    padding: 30px;
}

.hero-card-strong {
    background: linear-gradient(145deg, rgba(255, 208, 0, 0.95), rgba(255, 184, 0, 0.74));
    color: #080808;
}

.hero-card-strong p,
.hero-card-strong .metric-label {
    color: rgba(0, 0, 0, 0.74);
}

.hero-card strong {
    display: block;
    margin: 10px 0 12px;
    font-size: 1.9rem;
    line-height: 1.05;
}

.hero-card-grid,
.ct-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.metric {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow-3);
    font-size: 1.28rem;
    font-weight: 900;
}

.section-head,
.page-hero-shell {
    max-width: 880px;
    margin: 0 auto 44px;
    text-align: center;
}

.ct-light {
    background: var(--white);
    color: var(--ink);
}

.ct-light .ct-heading,
.ct-light h2,
.ct-light h3,
.ct-light .feature-card h3,
.ct-light .content-card h2 {
    color: var(--ink);
}

.ct-light p,
.ct-light li,
.ct-light .feature-card p,
.ct-light .content-card p,
.ct-light .content-card li {
    color: #55545a;
}

.ct-light .feature-index,
.ct-light .feature-card .eyebrow {
    color: #6f5700;
}

.ct-yellow {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 208, 0, 0.34), transparent 24%),
        linear-gradient(135deg, #070707 0%, #101010 52%, #1b1600 100%);
    color: var(--white);
}

.ct-yellow::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 55%, rgba(255, 208, 0, 0.94) 55% 72%, transparent 72%),
        repeating-linear-gradient(135deg, rgba(255, 208, 0, 0.08) 0 1px, transparent 1px 18px);
    opacity: 0.55;
    pointer-events: none;
}

.ct-yellow > * {
    position: relative;
    z-index: 1;
}

.ct-yellow .eyebrow,
.ct-yellow .ct-kicker {
    color: var(--yellow);
}

.ct-yellow p,
.ct-yellow li {
    color: rgba(255, 255, 255, 0.76);
}

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

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

.resource-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: #111114;
    border: 1px solid var(--line);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25);
}

.resource-card h3 {
    margin: 0;
    color: var(--white);
}

.resource-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

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

.blog-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 16px 16px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
    color: var(--ink);
}

.blog-card-media {
    display: block;
    overflow: hidden;
    margin: 0 0 8px;
    border-radius: 22px;
    background: #111114;
    aspect-ratio: 16 / 10;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.035);
}

.blog-card h2 {
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.blog-card p {
    margin: 0;
    color: #55545a;
}

.article-body {
    max-width: 860px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.article-body p,
.article-body li {
    color: #3d3d42;
    font-size: 1.08rem;
    line-height: 1.78;
}

.article-body h2,
.article-body h3 {
    font-family: "Syne", sans-serif;
    letter-spacing: -0.04em;
}

.feature-card,
.content-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.feature-card-highlight {
    background: linear-gradient(145deg, #ffe15c, #fff6be);
}

.feature-card h3,
.content-card h2 {
    margin-top: 0;
}

.feature-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
}

.feature-card p,
.content-card p,
.content-card li {
    line-height: 1.68;
}

.gallery-stack {
    display: grid;
    gap: 18px;
}

.media-card {
    overflow: hidden;
    background: #111;
    border: 1px solid var(--line);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card-large {
    min-height: 390px;
}

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

.spec-sheet,
.data-table {
    background: linear-gradient(145deg, #0a0a0b, #161619);
    border: 1px solid var(--line);
    overflow: hidden;
}

.spec-item,
.data-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 208, 0, 0.18);
}

.spec-item:last-child,
.data-row:last-child {
    border-bottom: 0;
}

.spec-item span,
.data-row span {
    color: rgba(255, 255, 255, 0.74);
}

.spec-item strong,
.data-row strong {
    color: var(--yellow-3);
    text-align: right;
}

.ct-light .data-table {
    background: #121214;
}

.ct-yellow .data-table {
    border-color: rgba(255, 208, 0, 0.42);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 208, 0, 0.16);
}

.ct-yellow .data-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.035);
}

.factory-card {
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.factory-card p,
.factory-card li {
    color: #57575d;
}

.factory-card .ct-heading {
    font-size: clamp(2.45rem, 3.4vw, 3.9rem);
}

.factory-panel {
    display: grid;
    gap: 20px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #111114;
    border: 1px solid var(--line);
    padding: 0 22px;
}

.faq-item summary {
    cursor: pointer;
    padding: 22px 0;
    font-weight: 900;
    list-style: none;
}

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

.faq-item p {
    padding-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
    display: grid;
    gap: 18px;
}

.enquiry-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: #101012;
    border: 1px solid rgba(255, 208, 0, 0.34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.enquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font: inherit;
}

.enquiry-form select option {
    background: #fffdf4;
    color: #111114;
}

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

.enquiry-form ::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.form-notice {
    display: grid;
    gap: 5px;
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 208, 0, 0.38);
    background: rgba(255, 208, 0, 0.12);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.form-notice strong {
    color: var(--yellow);
    line-height: 1.2;
}

.form-notice span {
    color: rgba(255, 253, 244, 0.78);
}

.form-notice-error {
    border-color: rgba(255, 114, 94, 0.48);
    background: rgba(255, 114, 94, 0.13);
}

.form-notice-error strong {
    color: #ffb1a4;
}

.contact-method {
    display: grid;
    gap: 6px;
}

.contact-method a {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 900;
}

.page-hero {
    padding: 90px 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.9)),
        url("../images/turntech-driveway.jpg") center/cover no-repeat;
}

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

.ordered {
    padding-left: 22px;
}

.table-shell {
    display: grid;
    gap: 28px;
}

.notice-card {
    background: #fff;
    color: var(--ink);
}

.notice-card p {
    color: #55545a;
}

.notice-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
}

.site-footer {
    background: #050505;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 64px 0 28px;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
}

.footer-grid a:hover,
.footer-meta a:hover {
    color: var(--yellow);
}

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

.social-links a {
    margin: 0;
    padding: 8px 11px;
    border: 1px solid rgba(255, 208, 0, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
}

.social-links a:hover {
    background: rgba(255, 208, 0, 0.1);
    color: var(--yellow);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0 36px;
    border-top: 1px solid var(--line-soft);
}

.hide-mobile {
    display: inline-flex;
}

@media (max-width: 1100px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 1280px) {
    .site-nav {
        font-size: 0.78rem;
    }

    .site-nav a {
        padding-inline: 5px;
    }

    .nav-actions .hide-mobile {
        display: none;
    }
}

@media (max-width: 920px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-shell.is-open {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 18px 0 24px;
    }

    .nav-shell.is-open .site-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 18px;
        border-top: 1px solid var(--line-soft);
    }

    .nav-shell.is-open .nav-actions {
        justify-content: flex-start;
        padding-top: 8px;
    }

    .ct-grid,
    .ct-split,
    .ct-contact,
    .ct-gallery,
    .ct-proof,
    .content-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .ct-hero {
        min-height: auto;
    }

    .hero-card-grid,
    .ct-card-grid,
    .media-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --wrap: min(100vw - 28px, 100vw - 28px);
    }

    .feature-grid,
    .resource-grid,
    .blog-grid,
    .hero-card-grid,
    .ct-card-grid,
    .media-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ct-section,
    .page-hero {
        padding: 58px 0;
    }

    .brand-logo {
        width: 58px;
        height: 42px;
        border-radius: 12px;
        padding: 5px 6px;
    }

    .brand-kicker {
        font-size: 0.88rem;
        max-width: 86px;
    }

    .brand-sub {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

    .nav-shell {
        min-height: 74px;
        gap: 10px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions .button-primary {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.86rem;
    }

    .menu-toggle {
        min-width: 46px;
        height: 44px;
        font-size: 0.82rem;
    }

    .ct-hero {
        padding-top: 44px;
    }

    .ct-hero h1 {
        font-size: clamp(3rem, 15vw, 4.2rem);
        line-height: 1.02;
        letter-spacing: -0.052em;
    }

    .ct-page-title,
    .ct-heading,
    .content-card h2,
    .notice-card h2 {
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 1.04;
        letter-spacing: -0.045em;
    }

    .ct-lede,
    .ct-copy p,
    .section-head p,
    .content-card p,
    .content-card li,
    .feature-card p,
    .hero-card p,
    .notice-card p,
    .contact-panel p {
        font-size: 1rem;
        line-height: 1.66;
    }

    .ct-panel,
    .hero-card,
    .feature-card,
    .factory-card,
    .factory-panel,
    .contact-panel,
    .content-card,
    .notice-card,
    .notice-panel,
    .enquiry-form {
        padding: 22px;
    }

    .proof-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 20px;
    }

    .proof-pill {
        padding: 10px 14px;
        text-align: left;
    }

    .hide-mobile {
        display: none;
    }

    .footer-meta {
        flex-direction: column;
    }

    .spec-item,
    .data-row {
        flex-direction: column;
    }

    .spec-item strong,
    .data-row strong {
        text-align: left;
    }
}
