:root {
    --bg: #f5f8fb;
    --surface: #ffffff;
    --surface-soft: #eaf4f6;
    --ink: #15222d;
    --muted: #657482;
    --line: #dce6ec;
    --teal: #0b8f8a;
    --teal-dark: #056965;
    --blue: #246baf;
    --warm: #d79846;
    --shadow: 0 24px 70px rgba(21, 34, 45, 0.12);
    --font-sans: "Noto Sans SC", "Source Han Sans SC", "MiSans", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    --font-display: "Noto Sans SC", "Source Han Sans SC", "MiSans", "Microsoft YaHei UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.6;
}

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

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

.site-header,
.site-footer,
.hero,
.metrics,
.section,
.contact-cta {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 0;
    background: rgba(245, 248, 251, 0.92);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 260px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-size: 13px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.nav a {
    padding: 8px 11px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
}

.nav a.active,
.nav a:hover {
    background: #fff;
    color: var(--teal-dark);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 44px;
    align-items: center;
    min-height: 660px;
    padding: 44px 0 64px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.06;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.split-section p,
.research-band p,
.about-section p,
.contact-cta p,
article p {
    color: var(--muted);
}

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

.button,
.quick-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

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

.button.primary:hover,
.quick-form button:hover {
    background: var(--teal-dark);
}

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

.hero-visual {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.22;
    object-fit: cover;
}

.hero-visual .home-hero-image {
    aspect-ratio: 1.55;
    object-position: center;
}

.hero-visual figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 4px;
    max-width: 430px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.hero-visual figcaption span {
    color: var(--muted);
    font-size: 14px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 38px;
}

.metrics div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.metrics strong {
    display: block;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}

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

.section {
    padding: 76px 0;
}

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

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

.solution-grid article,
.case-grid article,
.list-panel,
.timeline,
.quick-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.solution-grid article,
.case-grid article {
    padding: 26px;
}

.solution-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--warm);
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--teal-dark);
    font-weight: 800;
}

.light-link {
    color: white;
}

.split-section,
.research-band,
.about-section,
.contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 34px;
    align-items: center;
}

.list-panel {
    display: grid;
    overflow: hidden;
}

.list-panel a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
}

.list-panel a:last-child {
    border-bottom: 0;
}

.list-panel span {
    color: var(--muted);
    font-weight: 400;
}

.case-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.hub-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.hub-grid span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--warm);
    font-weight: 800;
}

.case-thumb {
    display: grid;
    place-items: center;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-size: 24px;
    font-weight: 800;
}

.research-band {
    width: min(1180px, calc(100% - 36px));
    padding: 54px;
    border-radius: 8px;
    background: #12313d;
    color: white;
}

.research-band p,
.research-band .eyebrow {
    color: #bde7e5;
}

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

.cert-grid span {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.timeline {
    display: grid;
    gap: 0;
    padding: 8px;
}

.timeline div {
    display: grid;
    gap: 4px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.timeline div:last-child {
    border-bottom: 0;
}

.timeline strong {
    color: var(--blue);
}

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

.contact-cta {
    margin-bottom: 64px;
    padding: 54px;
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.quick-form {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: white;
}

.quick-form textarea {
    resize: vertical;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    padding: 30px 0;
    color: var(--muted);
}

.site-footer strong {
    display: block;
    color: var(--ink);
    margin-bottom: 4px;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--teal-dark);
    font-weight: 800;
}

.footer-contact {
    display: grid;
    gap: 6px;
    justify-items: end;
    max-width: 430px;
    text-align: right;
}

.footer-contact span {
    line-height: 1.7;
}

.sub-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
    align-items: center;
    min-height: 560px;
    padding: 56px 0 76px;
}

.sub-hero h1 {
    font-size: clamp(40px, 5vw, 66px);
}

.patient-hero {
    position: relative;
}

.smile-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(11, 143, 138, 0.12), rgba(36, 107, 175, 0.12)),
        #fff;
    box-shadow: var(--shadow);
}

.smile-panel span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 800;
}

.smile-panel strong {
    display: block;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.15;
}

.smile-panel p {
    color: var(--muted);
}

.hero-form {
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-title {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
}

.hero-form small {
    color: var(--muted);
}

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

.patient-focus {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
    gap: 34px;
    align-items: start;
}

.solution-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
    gap: 34px;
    align-items: start;
}

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

.patient-cards article,
.faq-grid article,
.service-table,
.flow-list div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.patient-cards article,
.faq-grid article {
    padding: 26px;
}

.patient-cards span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 800;
}

.flow-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.flow-list div {
    padding: 22px;
}

.flow-list strong {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--teal);
    color: white;
}

.flow-list span {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.compare-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: 34px;
    align-items: center;
}

.service-table {
    overflow: hidden;
}

.service-table div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.service-table div:last-child {
    border-bottom: 0;
}

.service-table span,
.faq-grid p {
    color: var(--muted);
}

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

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

.proof-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.proof-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 22px;
}

.simple-hero {
    min-height: 460px;
}

.product-layout,
.news-layout,
.about-profile {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.filter-panel,
.side-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.filter-panel strong,
.side-panel strong {
    font-size: 22px;
}

.filter-panel span,
.side-panel span,
.case-filter span,
.case-filter a {
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-weight: 800;
}

.case-filter a:hover {
    background: rgba(7, 150, 143, 0.14);
}

.catalog-grid,
.case-gallery,
.job-list,
.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.catalog-grid article,
.case-gallery article,
.news-list article,
.job-list article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.product-thumb,
.case-gallery article div {
    display: grid;
    place-items: center;
    height: 150px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 143, 138, 0.15), rgba(36, 107, 175, 0.16));
    color: var(--teal-dark);
    font-weight: 800;
}

.case-board {
    display: grid;
    gap: 22px;
}

.case-center-gallery article {
    display: grid;
    align-content: start;
}

.case-center-gallery article > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--warm);
    font-weight: 800;
}

.case-center-gallery ul {
    display: grid;
    gap: 6px;
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.case-visual {
    display: grid;
    place-items: center;
    height: 180px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
    background:
        linear-gradient(135deg, rgba(8, 31, 53, 0.82), rgba(7, 150, 143, 0.52)),
        url("assets/images/home-product-main.png");
    background-size: cover;
    background-position: center;
}

.case-visual-kids {
    background:
        linear-gradient(135deg, rgba(7, 150, 143, 0.82), rgba(31, 111, 174, 0.45)),
        url("../images/aligner-product-2.png");
    background-size: cover;
    background-position: center;
}

.case-visual-adult {
    background:
        linear-gradient(135deg, rgba(8, 31, 53, 0.84), rgba(7, 150, 143, 0.38)),
        url("../images/home-product-main.png");
    background-size: cover;
    background-position: center;
}

.case-visual-crowding,
.case-visual-spacing,
.case-visual-bite,
.case-visual-clinic {
    background-size: cover;
    background-position: center;
}

.case-visual-crowding {
    background-image:
        linear-gradient(135deg, rgba(8, 31, 53, 0.82), rgba(31, 111, 174, 0.42)),
        url("../images/aligner-product-1.png");
}

.case-visual-spacing {
    background-image:
        linear-gradient(135deg, rgba(7, 150, 143, 0.82), rgba(203, 143, 46, 0.38)),
        url("../images/aligner-product-3.png");
}

.case-visual-bite {
    background-image:
        linear-gradient(135deg, rgba(8, 31, 53, 0.78), rgba(7, 150, 143, 0.44)),
        url("../images/hero-aligners.png");
}

.case-visual-clinic {
    background-image:
        linear-gradient(135deg, rgba(8, 31, 53, 0.8), rgba(7, 150, 143, 0.42)),
        url("../images/factory/design-center-work.jpg");
}

.case-visual-video {
    background-image:
        linear-gradient(135deg, rgba(8, 31, 53, 0.82), rgba(31, 111, 174, 0.45)),
        url("../images/home-hero-main.png");
    background-size: cover;
    background-position: center;
}

.case-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
    gap: 34px;
    align-items: start;
}

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

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

.case-detail-grid article,
.video-case-grid article {
    padding: 24px;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.case-detail-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--teal-dark);
    font-size: 22px;
}

.case-detail-grid span,
.video-case-grid span {
    color: var(--muted);
    line-height: 1.75;
}

.kids-case-slider {
    overflow: hidden;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.kids-case-track {
    display: flex;
    width: max-content;
    gap: 18px;
    padding: 18px;
    animation: kids-case-scroll 42s linear infinite;
}

.kids-case-slider:hover .kids-case-track {
    animation-play-state: paused;
}

.kids-case-track figure {
    position: relative;
    overflow: hidden;
    width: min(820px, 78vw);
    margin: 0;
    border: 1px solid rgba(213, 228, 233, 0.9);
    border-radius: 8px;
    background: #ffffff;
}

.kids-case-track img {
    display: block;
    width: 100%;
    aspect-ratio: 1.78;
    object-fit: contain;
    background: #f6fbfc;
}

.kids-case-track figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    backdrop-filter: blur(10px);
}

@keyframes kids-case-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kids-case-track {
        animation: none;
    }
}

.case-standard-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: 34px;
    align-items: start;
    border-top: 1px solid rgba(213, 228, 233, 0.8);
    border-bottom: 1px solid rgba(213, 228, 233, 0.8);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(7, 150, 143, 0.06), rgba(255, 255, 255, 0.3));
}

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

.case-standard-list div {
    min-height: 120px;
    padding: 22px;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.case-standard-list strong {
    display: block;
    margin-bottom: 16px;
    color: var(--teal-dark);
    font-size: 24px;
}

.case-standard-list span {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.65;
}

.case-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.news-list span,
.job-list span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--warm);
    font-weight: 800;
}

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

.job-list strong {
    color: var(--teal-dark);
}

.message-form {
    align-self: stretch;
}

.about-metrics {
    margin-bottom: 0;
}

.brand-grid span {
    display: grid;
    place-items: center;
    min-height: 110px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--teal-dark);
    font-weight: 800;
    text-align: center;
}

.product-showcase .section-heading,
.factory-media .section-heading {
    max-width: 820px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.product-highlight-card,
.detail-list article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.product-photo,
.feature-photo {
    display: block;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: var(--surface-soft);
}

.product-photo {
    aspect-ratio: 1.12;
    margin-bottom: 20px;
}

.feature-photo {
    aspect-ratio: 1.32;
    margin-bottom: 18px;
}

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

.detail-list span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--warm);
    font-weight: 800;
}

.detail-list p {
    color: var(--muted);
}

.aligner-table {
    margin-top: 22px;
}

.product-series {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factory-media {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.media-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.media-card {
    min-height: 330px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.photo-card {
    overflow: hidden;
    padding: 0;
}

.photo-card h3,
.photo-card p {
    padding-right: 24px;
    padding-left: 24px;
}

.photo-card h3 {
    margin-top: 20px;
}

.photo-card p {
    padding-bottom: 24px;
}

.media-photo {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-media .media-photo {
    height: 300px;
}

.video-card {
    display: grid;
    align-content: end;
    min-height: 410px;
    background:
        linear-gradient(135deg, rgba(18, 49, 61, 0.86), rgba(11, 143, 138, 0.62)),
        url("../images/hero-aligners.png") center / cover;
    color: white;
}

.video-card p {
    color: rgba(255, 255, 255, 0.82);
}

.play-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--teal-dark);
    font-size: 26px;
    box-shadow: var(--shadow);
}

.media-thumb {
    display: grid;
    place-items: center;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 143, 138, 0.16), rgba(36, 107, 175, 0.14));
    color: var(--teal-dark);
    font-weight: 800;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.factory-gallery article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.factory-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.factory-gallery strong,
.factory-gallery p {
    display: block;
    padding-right: 16px;
    padding-left: 16px;
}

.factory-gallery strong {
    margin-top: 14px;
    color: var(--ink);
    font-size: 15px;
}

.factory-gallery p {
    margin-top: 6px;
    padding-bottom: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.research-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(620px, 1.35fr);
    gap: 34px;
    align-items: start;
}

.research-slider {
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.research-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: research-scroll 34s linear infinite;
}

.research-slider:hover .research-track {
    animation-play-state: paused;
}

.research-track figure {
    position: relative;
    overflow: hidden;
    width: 360px;
    margin: 0;
    border-radius: 8px;
    background: var(--surface-soft);
}

.research-track img {
    display: block;
    width: 100%;
    aspect-ratio: 1.62;
    object-fit: cover;
}

.research-track figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(10, 27, 38, 0.72);
    color: white;
    font-size: 13px;
    font-weight: 800;
}

@keyframes research-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 56px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .research-track {
        animation: none;
    }
}

.process-list {
    display: grid;
    gap: 12px;
}

.process-list div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.process-list strong {
    color: var(--blue);
    font-size: 22px;
}

.process-list span {
    font-weight: 800;
}

.final-cta {
    align-items: center;
}

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

.contact-methods div {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
}

.contact-methods span {
    color: var(--muted);
}

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

.contact-choice-grid a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
}

.contact-choice-grid span {
    color: var(--warm);
    font-weight: 800;
}

.contact-choice-grid strong {
    color: var(--ink);
    font-size: 20px;
}

.contact-choice-grid p {
    margin: 0;
    color: var(--muted);
}

.message-hero {
    min-height: 500px;
}

.message-type-section {
    padding-top: 34px;
}

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

.message-type-grid a {
    display: grid;
    gap: 10px;
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.message-type-grid span {
    color: var(--warm);
    font-weight: 800;
}

.message-type-grid strong {
    color: var(--ink);
    font-size: 24px;
}

.message-type-grid p {
    margin: 0;
    color: var(--muted);
}

.message-submit {
    margin-top: 0;
}

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

.qualification-grid article,
.document-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.certificate-thumb {
    height: 180px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 143, 138, 0.16), rgba(36, 107, 175, 0.14));
    overflow: hidden;
}

.certificate-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.qualification-grid article span,
.document-grid article span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--warm);
    font-weight: 800;
}

.qualification-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: 34px;
    align-items: start;
}

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

.document-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 21px;
}

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

.document-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.82fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.document-card.featured-document {
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
}

.document-card a {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(213, 228, 233, 0.9);
    border-radius: 8px;
    background: #f8fbfb;
}

.document-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #ffffff;
}

.document-card.featured-document img {
    height: 420px;
}

.document-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--warm);
    font-weight: 800;
}

.document-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 24px;
}

.document-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.insight-category-grid article,
.article-list article,
.decision-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.insight-category-grid span,
.article-list span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--warm);
    font-weight: 800;
}

.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.decision-panel {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 10px;
}

.decision-panel strong {
    font-size: 22px;
}

.decision-panel a {
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-weight: 800;
}

.search-friendly {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: 34px;
    align-items: start;
}

.content-hub {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.content-feed,
.content-sidebar {
    display: grid;
    gap: 16px;
}

.featured-article,
.feed-item,
.sidebar-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.featured-article,
.feed-item {
    color: inherit;
    text-decoration: none;
}

a.featured-article,
a.feed-item {
    cursor: pointer;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

a.featured-article:hover,
a.feed-item:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 110, 212, 0.28);
    box-shadow: 0 24px 58px rgba(24, 72, 126, 0.12);
}

.featured-article {
    min-height: 300px;
    display: grid;
    align-content: end;
    background:
        linear-gradient(135deg, rgba(18, 49, 61, 0.86), rgba(11, 143, 138, 0.62)),
        url("../images/hero-aligners.png") center / cover;
    color: white;
}

.featured-article p,
.featured-article span {
    color: rgba(255, 255, 255, 0.84);
}

.featured-article span,
.feed-meta span {
    font-weight: 800;
}

.feed-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feed-toolbar span {
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-weight: 800;
}

.feed-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--warm);
}

.feed-meta time {
    color: var(--muted);
}

.feed-read-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    color: #0b6fd6;
    font-size: 14px;
    font-weight: 820;
}

.content-sidebar {
    position: sticky;
    top: 92px;
}

.page-insights .content-hub {
    grid-template-columns: 1fr;
}

.page-insights .content-feed {
    width: 100%;
}

.page-insights .featured-article {
    min-height: 260px;
}

/* Website 1 micro UI: icon badges for page labels and cards */
body {
    --eyebrow-icon: "◇";
}

.page-index {
    --eyebrow-icon: "✓";
}

.page-cases,
.page-case-adult,
.page-case-kids,
.page-case-video,
.page-case-crowding-deepbite,
.page-case-h00558-crowding-underbite {
    --eyebrow-icon: "⌁";
}

.page-products,
.page-services,
.page-clinic-service,
.page-patient-service,
.page-partner-service {
    --eyebrow-icon: "⌬";
}

.page-qualifications {
    --eyebrow-icon: "□";
}

.page-insights {
    --eyebrow-icon: "▥";
}

.page-news {
    --eyebrow-icon: "▣";
}

.page-about-us,
.page-about {
    --eyebrow-icon: "⌂";
}

.page-jobs {
    --eyebrow-icon: "＋";
}

.page-message-board,
.page-contact {
    --eyebrow-icon: "↔";
}

.eyebrow,
.news-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 900;
}

.eyebrow::before,
.news-hero .eyebrow::before {
    content: var(--eyebrow-icon);
    display: inline-grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 3px solid #f05a3c;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.72);
    color: var(--teal);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.message-hero .eyebrow::before,
.research-band .eyebrow::before,
.mission-band .eyebrow::before {
    background: rgba(255, 255, 255, 0.92);
}

.section-heading .eyebrow,
.section-header .eyebrow {
    margin-bottom: 12px;
}

.catalog-grid article h3,
.product-series article h3,
.detail-list article h3,
.handoff-case-card h2,
.job-list article h3,
.qualification-grid article h3,
.proof-grid article strong,
.content-list article h3,
.news-list article h3,
.value-grid article h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-grid article h3::before,
.product-series article h3::before,
.detail-list article h3::before,
.handoff-case-card h2::before,
.job-list article h3::before,
.qualification-grid article h3::before,
.proof-grid article strong::before,
.content-list article h3::before,
.news-list article h3::before,
.value-grid article h3::before {
    content: var(--eyebrow-icon);
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(7, 150, 143, 0.24);
    border-radius: 6px;
    color: var(--teal);
    background: rgba(7, 150, 143, 0.08);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.job-list article h3::before {
    content: "＋";
}

.handoff-case-card h2::before {
    content: "⌁";
}

.catalog-grid article:nth-child(2) h3::before,
.product-series article:nth-child(2) h3::before {
    content: "✓";
}

.catalog-grid article:nth-child(3) h3::before,
.product-series article:nth-child(3) h3::before {
    content: "▣";
}

.detail-list {
    counter-reset: detail-card;
}

.detail-list article {
    counter-increment: detail-card;
}

.detail-list article h3::before {
    content: counter(detail-card, decimal-leading-zero);
    font-size: 11px;
}

/* Dark reference footer */
.site-footer.footer-dark {
    display: block;
    width: 100%;
    max-width: none;
    margin: 56px 0 0;
    padding: 0;
    border: 0;
    background: #20282c;
    color: rgba(255, 255, 255, 0.9);
}

.footer-dark .footer-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 58px 0 36px;
}

.footer-dark .footer-main {
    display: grid;
    grid-template-columns: minmax(230px, 0.78fr) minmax(170px, 0.48fr) minmax(420px, 1.18fr);
    gap: 86px;
    align-items: start;
}

.footer-dark .footer-block h2 {
    position: relative;
    margin: 0 0 28px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 900;
}

.footer-dark .footer-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: #22aee6;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 800;
}

.footer-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    min-height: 25px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.footer-dark a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-dark a:hover {
    color: #5ed5f2;
}

.footer-links nav {
    display: grid;
    gap: 13px;
}

.footer-links a {
    width: max-content;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.footer-about p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 54px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 900;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .footer-dark .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 44px 56px;
    }

    .footer-dark .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer.footer-dark {
        align-items: stretch;
        flex-direction: initial;
        margin-top: 42px;
    }

    .footer-dark .footer-inner {
        width: min(1180px, calc(100% - 28px));
        padding: 42px 0 30px;
    }

    .footer-dark .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-dark .footer-block h2 {
        margin-bottom: 24px;
        font-size: 17px;
    }

    .footer-contact-list li,
    .footer-links a,
    .footer-about p,
    .footer-bottom {
        font-size: 14px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 36px;
        padding-top: 22px;
    }
}

/* Message page copied from website 2 reference */
.page-message-board .message-hero {
    min-height: auto;
    padding: 116px 0 96px;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(16, 80, 93, 0.9), rgba(11, 143, 145, 0.82) 52%, rgba(47, 128, 201, 0.76)),
        url("../images/factory/design-center-main.jpg") center / cover;
}

.page-message-board .message-hero-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.page-message-board .message-hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.page-message-board .message-hero h1 {
    max-width: none;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(46px, 5vw, 78px);
    line-height: 1.08;
}

.page-message-board .message-hero p {
    max-width: 860px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.9;
}

.page-message-board .message-hero strong {
    color: #fff;
}

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

.page-message-board .message-section {
    padding: 72px 0 96px;
    background: var(--bg);
}

.page-message-board .message-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.page-message-board .message-form,
.page-message-board .contact-info,
.page-message-board .contact-tips {
    border: 1px solid rgba(213, 228, 233, 0.9);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(18, 48, 58, 0.05);
}

.page-message-board .message-form {
    padding: 34px;
}

.page-message-board .message-form h2,
.page-message-board .contact-info h2,
.page-message-board .contact-tips h2 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.35;
}

.form-group {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.form-label {
    color: var(--ink);
    font-weight: 800;
}

.form-label b {
    color: #dc3545;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 6px;
    outline: none;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(11, 143, 138, 0.12);
}

.page-message-board .message-form em {
    justify-self: end;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
}

.upload-box {
    position: relative;
    min-height: 162px;
    padding: 22px;
    place-items: center;
    border: 2px dashed #cfded7;
    border-radius: 8px;
    background: #f9fbfa;
    text-align: center;
    cursor: pointer;
}

.upload-box .form-label {
    justify-self: start;
    width: 100%;
    text-align: left;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-box strong {
    color: var(--teal-dark);
    font-size: 17px;
}

.upload-box small {
    display: block;
    color: var(--muted);
    line-height: 1.45;
}

.btn-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--teal);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(11, 143, 138, 0.16);
}

.btn-submit:hover {
    background: var(--teal-dark);
}

.message-side {
    display: grid;
    gap: 18px;
}

.page-message-board .contact-info,
.page-message-board .contact-tips {
    padding: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    color: inherit;
}

a.contact-item:hover {
    color: var(--teal-dark);
}

.contact-icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--teal-dark);
    background: rgba(11, 143, 138, 0.12);
    font-weight: 900;
}

.contact-item-text {
    display: grid;
    gap: 4px;
    color: var(--muted);
    line-height: 1.55;
}

.contact-item-text b {
    color: var(--ink);
}

.contact-item-text em {
    font-style: normal;
}

.contact-tips p {
    position: relative;
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-tips p::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

@media (max-width: 940px) {
    .page-message-board .message-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-message-board .message-hero {
        padding: 72px 0 66px;
        text-align: left;
    }

    .page-message-board .message-hero h1 {
        font-size: 42px;
    }

    .message-hero-actions {
        justify-content: flex-start;
    }

    .page-message-board .message-section {
        padding: 48px 0 82px;
    }

    .page-message-board .message-layout,
    .page-message-board .message-hero-inner {
        width: min(1180px, calc(100% - 28px));
    }

    .page-message-board .message-form,
    .page-message-board .contact-info,
    .page-message-board .contact-tips {
        padding: 24px;
    }

    .upload-box {
        min-height: 180px;
    }
}

.sidebar-card {
    display: grid;
    gap: 10px;
}

.sidebar-card strong {
    font-size: 22px;
}

.sidebar-card a,
.sidebar-card span {
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-weight: 800;
}

.about-story .section-heading {
    max-width: 820px;
}

.story-content {
    display: grid;
    gap: 18px;
    max-width: 960px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.story-content p {
    color: var(--muted);
    margin: 0;
}

.culture-section,
.mission-band {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    gap: 34px;
    align-items: start;
}

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

.value-grid article {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.value-grid strong {
    color: var(--blue);
    font-size: 22px;
}

.value-grid span {
    color: var(--muted);
}

.mission-band {
    padding: 54px;
    border-radius: 8px;
    background: #12313d;
    color: white;
}

.mission-band p,
.mission-band .eyebrow {
    color: #bde7e5;
}

/* Visual template refresh */
:root {
    --bg: #eef5f7;
    --surface: #ffffff;
    --surface-soft: #edf8f7;
    --ink: #102638;
    --muted: #60727f;
    --line: #d5e4e9;
    --teal: #07968f;
    --teal-dark: #056d69;
    --blue: #1f6fae;
    --warm: #d99a45;
    --coral: #e66f55;
    --shadow: 0 24px 64px rgba(16, 38, 56, 0.13);
    --shadow-soft: 0 16px 38px rgba(16, 38, 56, 0.08);
}

body {
    position: relative;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(235, 248, 247, 0.9) 0, rgba(245, 249, 250, 0.96) 320px, rgba(238, 245, 247, 1) 100%),
        repeating-linear-gradient(90deg, rgba(7, 150, 143, 0.04) 0 1px, transparent 1px 96px);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(7, 150, 143, 0.14), transparent 34%),
        linear-gradient(315deg, rgba(217, 154, 69, 0.11), transparent 28%),
        linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.5) 44%, transparent 100%);
}

.site-header {
    top: 14px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(213, 228, 233, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(16, 38, 56, 0.08);
}

.brand {
    color: var(--ink);
    letter-spacing: 0;
}

.brand-mark {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 12px 26px rgba(7, 150, 143, 0.28);
}

.nav {
    gap: 4px;
}

.nav a {
    border: 1px solid transparent;
    color: #526777;
}

.nav a.active,
.nav a:hover {
    border-color: rgba(7, 150, 143, 0.18);
    background: rgba(7, 150, 143, 0.1);
    color: var(--teal-dark);
}

.hero,
.sub-hero {
    position: relative;
    padding-top: 74px;
}

.hero h1,
.sub-hero h1 {
    letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.sub-hero > div > p:not(.eyebrow),
.section-heading p {
    max-width: 760px;
    font-size: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 900;
}

.eyebrow::before {
    content: var(--eyebrow-icon);
    display: inline-grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 3px solid #f05a3c;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.72);
    color: var(--teal);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.button,
.quick-form button {
    box-shadow: 0 14px 30px rgba(7, 150, 143, 0.15);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.quick-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(7, 150, 143, 0.2);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(7, 150, 143, 0.18);
    color: var(--teal-dark);
}

.hero-visual,
.smile-panel,
.contact-cta,
.message-submit,
.research-band,
.mission-band {
    border-radius: 8px;
}

.hero-visual {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: #081826;
    box-shadow: 0 30px 80px rgba(16, 38, 56, 0.2);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(8, 24, 38, 0.36));
}

.hero-visual figcaption {
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
}

.metrics {
    margin-top: -12px;
}

.metrics div,
.solution-grid article,
.case-grid article,
.hub-grid article,
.patient-cards article,
.faq-grid article,
.proof-grid article,
.catalog-grid article,
.case-gallery article,
.news-list article,
.job-list article,
.value-grid article,
.media-card,
.factory-gallery article,
.product-highlight-card,
.detail-list article,
.quick-form,
.service-table,
.timeline,
.list-panel,
.document-grid article,
.qualification-grid article,
.insight-category-grid article,
.content-list article,
.brand-grid article {
    border-color: rgba(213, 228, 233, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.94));
    box-shadow: var(--shadow-soft);
}

.metrics div,
.solution-grid article,
.case-grid article,
.hub-grid article,
.catalog-grid article,
.case-gallery article,
.job-list article,
.proof-grid article,
.value-grid article,
.media-card,
.factory-gallery article,
.detail-list article,
.product-highlight-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.metrics div:hover,
.solution-grid article:hover,
.case-grid article:hover,
.hub-grid article:hover,
.catalog-grid article:hover,
.case-gallery article:hover,
.job-list article:hover,
.proof-grid article:hover,
.value-grid article:hover,
.media-card:hover,
.factory-gallery article:hover,
.detail-list article:hover,
.product-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 150, 143, 0.28);
    box-shadow: 0 22px 52px rgba(16, 38, 56, 0.13);
}

.metrics strong,
.proof-grid strong,
.value-grid strong,
.timeline strong,
.process-list strong {
    color: var(--teal-dark);
}

.section {
    position: relative;
}

.section + .section {
    border-top: 1px solid rgba(213, 228, 233, 0.7);
}

.section-heading {
    position: relative;
}

.section-heading h2 {
    color: var(--ink);
}

.case-section,
.factory-media {
    border-top: 1px solid rgba(213, 228, 233, 0.8);
    border-bottom: 1px solid rgba(213, 228, 233, 0.8);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(7, 150, 143, 0.05), rgba(255, 255, 255, 0.28));
}

.smile-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 150, 143, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 246, 0.9) 58%, rgba(255, 246, 235, 0.82));
    box-shadow: 0 24px 70px rgba(16, 38, 56, 0.14);
}

.smile-panel::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(7, 150, 143, 0.18);
    border-radius: 50%;
}

.smile-panel span,
.solution-grid span,
.hub-grid span {
    color: var(--warm);
}

.smile-panel strong {
    position: relative;
    z-index: 1;
    color: var(--ink);
}

.research-band,
.mission-band {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, #12313d 0%, #0d4d55 54%, #175d75 100%);
    box-shadow: 0 26px 70px rgba(16, 38, 56, 0.18);
}

.contact-cta {
    overflow: hidden;
    border: 1px solid rgba(213, 228, 233, 0.88);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 248, 247, 0.92));
    box-shadow: 0 30px 76px rgba(16, 38, 56, 0.14);
}

.contact-methods div {
    border-color: rgba(213, 228, 233, 0.88);
    background: rgba(255, 255, 255, 0.72);
}

.quick-form {
    border-color: rgba(213, 228, 233, 0.9);
    background: rgba(255, 255, 255, 0.82);
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    border-color: #cfe1e7;
    background: rgba(255, 255, 255, 0.94);
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: 2px solid rgba(7, 150, 143, 0.18);
    border-color: rgba(7, 150, 143, 0.48);
}

.feature-photo,
.product-photo,
.media-photo,
.factory-gallery img,
.research-track img {
    filter: saturate(1.06) contrast(1.02);
}

.case-thumb,
.media-thumb {
    background:
        linear-gradient(135deg, rgba(7, 150, 143, 0.16), rgba(31, 111, 174, 0.1)),
        #f5fbfb;
}

.site-footer {
    margin-top: 20px;
    padding: 34px 0 38px;
    border-top-color: rgba(213, 228, 233, 0.9);
}

.footer-contact {
    padding: 14px 16px;
    border: 1px solid rgba(213, 228, 233, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.52);
}

.news-page {
    min-height: calc(100vh - 110px);
    padding-bottom: 86px;
    border-top: 1px solid rgba(213, 228, 233, 0.85);
    background:
        linear-gradient(90deg, rgba(219, 242, 243, 0.88) 0%, rgba(237, 247, 250, 0.72) 44%, rgba(255, 255, 255, 0.92) 100%);
}

.news-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 86px 0 72px;
}

.news-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 16px;
}

.news-hero .eyebrow::before {
    content: "▣";
    color: var(--teal);
    font-size: 14px;
    line-height: 1;
}

.news-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(46px, 6vw, 70px);
    letter-spacing: 0;
}

.news-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: #536778;
    font-size: 18px;
}

.news-cards {
    display: grid;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.news-row {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr) 28px;
    gap: 24px;
    align-items: center;
    min-height: 134px;
    padding: 26px 26px 26px 24px;
    border: 1px solid #cfe2eb;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 58px rgba(16, 38, 56, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-row:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 150, 143, 0.38);
    box-shadow: 0 24px 66px rgba(16, 38, 56, 0.1);
}

.news-row time {
    color: var(--teal);
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.news-row span {
    display: grid;
    gap: 8px;
}

.news-row strong {
    color: var(--ink);
    font-size: 25px;
    line-height: 1.25;
}

.news-row em {
    color: #536778;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
}

.news-row b {
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    text-align: right;
}

.handoff-case-hero {
    min-height: 500px;
}

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

.handoff-case-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(205, 224, 232, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 64px rgba(16, 38, 56, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.handoff-case-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 150, 143, 0.36);
    box-shadow: 0 30px 76px rgba(16, 38, 56, 0.14);
}

.handoff-case-card img {
    width: 100%;
    aspect-ratio: 576 / 426;
    object-fit: cover;
    object-position: center center;
    background: #f3f8fa;
}

.handoff-case-card > div {
    display: grid;
    gap: 12px;
    padding: 28px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.tag-row span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(7, 150, 143, 0.12);
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 800;
}

.handoff-case-card h2,
.case-detail-main-new h2,
.case-detail-side-new h2,
.case-video-panel-new h2 {
    margin: 0;
}

.handoff-case-card p,
.handoff-case-card li,
.case-detail-main-new p,
.case-detail-side-new li,
.case-video-panel-new p,
.case-process-grid-new p,
.case-boundary-section p {
    color: var(--muted);
}

.handoff-case-card ul,
.case-detail-side-new ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.handoff-case-card strong {
    color: var(--teal-dark);
}

.case-detail-layout-new {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.case-detail-main-new,
.case-detail-side-new,
.case-video-panel-new,
.case-gallery-grid-new figure,
.case-process-grid-new article,
.case-boundary-section {
    border: 1px solid rgba(205, 224, 232, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 58px rgba(16, 38, 56, 0.08);
}

.case-detail-main-new {
    overflow: hidden;
}

.case-detail-main-new > img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    background: #f3f8fa;
}

.case-detail-main-new > div,
.case-detail-side-new {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.case-fact-grid-new {
    display: grid;
    gap: 10px;
}

.case-fact-grid-new span {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(230, 243, 246, 0.8);
    color: var(--ink);
    font-weight: 700;
}

.case-media-section-new {
    display: grid;
    gap: 24px;
}

.case-video-panel-new {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    padding: 24px;
}

.case-video-panel-new video {
    width: 100%;
    max-height: 560px;
    border-radius: 8px;
    background: #101820;
}

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

.case-gallery-grid-new figure {
    overflow: hidden;
    margin: 0;
}

.case-gallery-grid-new img {
    display: block;
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: contain;
    background: #f3f8fa;
}

.case-gallery-grid-new figcaption {
    padding: 14px 18px;
    color: var(--ink);
    font-weight: 800;
}

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

.case-process-grid-new article {
    padding: 22px;
}

.case-process-grid-new span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-weight: 800;
}

.case-boundary-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        justify-content: flex-start;
    }

    .hero,
    .sub-hero,
    .split-section,
    .compare-section,
    .patient-focus,
    .solution-detail,
    .research-showcase,
    .case-standard-section,
    .case-detail-layout,
    .qualification-detail,
    .insight-layout,
    .search-friendly,
    .content-hub,
    .culture-section,
    .mission-band,
    .product-detail-layout,
    .research-band,
    .about-section,
    .contact-cta {
        grid-template-columns: 1fr;
    }

    .research-track figure {
        width: 280px;
    }

    .hero {
        min-height: auto;
    }

    .metrics,
    .solution-grid,
    .patient-cards,
    .patient-cards.compact,
    .case-grid,
    .hub-grid,
    .case-detail-grid,
    .video-case-grid,
    .catalog-grid,
    .product-series,
    .case-gallery,
    .job-list,
    .brand-grid,
    .media-grid,
    .factory-gallery,
    .message-type-grid,
    .qualification-grid,
    .document-grid,
    .insight-category-grid,
    .value-grid,
    .flow-list,
    .faq-grid,
    .proof-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .product-layout,
    .news-layout,
    .about-profile {
        grid-template-columns: 1fr;
    }

    .document-gallery,
    .document-card,
    .document-card.featured-document {
        grid-template-columns: 1fr;
    }

    .document-card.featured-document {
        grid-column: auto;
    }

    .document-card img,
    .document-card.featured-document img {
        height: auto;
        max-height: 520px;
    }

    .research-band,
    .contact-cta {
        padding: 28px;
    }

    .news-hero {
        padding: 64px 0 42px;
    }

    .news-row {
        grid-template-columns: 1fr 28px;
        gap: 12px 18px;
    }

    .news-row time {
        grid-column: 1 / -1;
    }

    .handoff-case-list,
    .case-detail-layout-new,
    .case-video-panel-new,
    .case-gallery-grid-new,
    .case-process-grid-new,
    .case-boundary-section {
        grid-template-columns: 1fr;
    }

    .case-boundary-section {
        align-items: stretch;
    }
}

/* Homepage motion system */
.page-index.motion-ready {
    --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --motion-ease-slow: cubic-bezier(0.22, 1, 0.24, 1);
    --motion-blue: #0b59c8;
    --parallax-y: 0px;
}

.opening-stage {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    background:
        radial-gradient(circle at 73% 23%, rgba(92, 171, 255, 0.23), transparent 34%),
        linear-gradient(135deg, #07377f 0%, #0c5ec7 46%, #eff9ff 100%);
}

.opening-stage::before,
.opening-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.opening-stage::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 88px),
        radial-gradient(circle at 74% 28%, rgba(62, 151, 255, 0.18), transparent 35%);
    opacity: 0.42;
    mix-blend-mode: soft-light;
}

.opening-stage::after {
    width: min(22vw, 360px);
    min-width: 168px;
    height: 145vh;
    left: 50%;
    top: -22vh;
    background: linear-gradient(90deg, transparent 0 14%, rgba(76, 154, 255, 0.03) 31%, rgba(225, 244, 255, 0.24) 50%, rgba(32, 109, 214, 0.1) 66%, transparent 86%);
    transform: translateX(-145%) rotate(10deg);
    filter: blur(18px);
    opacity: 0;
    animation: opening-sweep 2.8s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)) 0.12s forwards;
}

html.opening-played .opening-stage {
    display: none;
}

.opening-stage.is-done {
    visibility: hidden;
}

.opening-panel {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(145deg, #07387f 0%, #0e5fc4 56%, #0b6fe0 100%);
    transform-origin: left center;
    clip-path: polygon(0 0, 58% 0, 45% 100%, 0 100%);
    box-shadow: 0 0 120px rgba(4, 44, 105, 0.26);
}

.opening-panel.panel-right {
    background:
        radial-gradient(circle at 78% 20%, rgba(10, 97, 205, 0.13), transparent 32%),
        linear-gradient(135deg, rgba(248, 252, 255, 0.99), rgba(226, 243, 255, 0.96) 60%, rgba(195, 225, 250, 0.9)),
        #fff;
    transform-origin: right center;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 38% 100%);
}

.opening-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.14) 50%, rgba(53, 142, 255, 0.12) 56%, transparent 68%);
    opacity: 0.24;
}

.opening-panel.panel-right::after {
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, rgba(44, 128, 224, 0.1) 58%, transparent 72%);
    opacity: 0.16;
}

.opening-brand {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4px;
    color: #fff;
    transform: translateY(28px) scaleX(0.82);
    transform-origin: center;
    opacity: 0;
    filter: blur(10px);
    text-shadow: 0 18px 48px rgba(2, 44, 115, 0.34);
    overflow: hidden;
}

.opening-brand span {
    font-size: clamp(52px, 9vw, 132px);
    font-weight: 900;
    line-height: 0.9;
}

.opening-brand strong {
    color: #d9ecff;
    font-size: clamp(16px, 2vw, 28px);
    letter-spacing: 0;
    text-transform: uppercase;
}

.motion-ready .opening-brand {
    animation: opening-brand-in 1.58s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)) forwards;
}

.motion-ready .opening-stage.is-leaving .opening-brand {
    animation: opening-brand-out 1s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

.motion-ready .opening-stage.is-leaving .panel-left {
    animation: opening-left-out 1.34s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

.motion-ready .opening-stage.is-leaving .panel-right {
    animation: opening-right-out 1.34s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

@keyframes opening-sweep {
    0% {
        transform: translateX(-145%) rotate(10deg);
        opacity: 0;
    }

    20% {
        opacity: 0.55;
    }

    72% {
        opacity: 0.34;
    }

    100% {
        transform: translateX(168%) rotate(10deg);
        opacity: 0;
    }
}

@keyframes opening-brand-in {
    0% {
        opacity: 0;
        transform: translateY(54px) scaleX(0.48);
        filter: blur(18px);
        clip-path: inset(0 100% 0 0);
    }
    56% {
        opacity: 1;
        transform: translateY(0) scaleX(1.16);
        filter: blur(0);
        clip-path: inset(0 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes opening-brand-out {
    to {
        opacity: 0;
        transform: translateY(-28px) scaleX(1.18);
        filter: blur(8px);
    }
}

@keyframes opening-left-out {
    to {
        transform: translateX(-105%) skewX(-7deg);
    }
}

@keyframes opening-right-out {
    to {
        transform: translateX(105%) skewX(-7deg);
    }
}

.motion-ready .site-header {
    opacity: 0;
    transform: translateY(-26px);
}

.motion-ready.motion-opened .site-header {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .brand-logo {
    transform: translateY(-10px) scale(0.94);
    opacity: 0;
}

.motion-ready.motion-opened .brand-logo {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: opacity 0.92s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, transform 0.92s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.motion-ready .nav a {
    position: relative;
    overflow: hidden;
    transform: translateY(-12px);
    opacity: 0;
}

.motion-ready.motion-opened .nav a {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), transform 0.82s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a.active::after,
.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.home-motion-section {
    position: relative;
    overflow: hidden;
}

.home-motion-section::before {
    content: attr(data-motion-title);
    position: absolute;
    z-index: 0;
    top: clamp(12px, 4vw, 48px);
    left: max(20px, calc((100vw - 1180px) / 2));
    max-width: min(1180px, calc(100vw - 40px));
    color: rgba(10, 64, 127, 0.055);
    font-size: clamp(74px, 15vw, 230px);
    font-weight: 900;
    line-height: 0.76;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-9vw, 112px, 0) scaleX(0.66);
    transform-origin: left center;
    filter: blur(14px);
    transition:
        opacity 1.45s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        transform 1.65s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        filter 1.45s ease;
}

.home-motion-section.is-visible::before,
.motion-opened .hero-motion::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
    filter: blur(0);
}

.motion-ready.page-index .home-motion-section > * {
    position: relative;
    z-index: 1;
}

.motion-title-mask {
    display: block;
    overflow: hidden;
    padding-bottom: 0.04em;
}

.motion-title-line {
    display: block;
    transform-origin: left bottom;
}

.motion-ready.page-index .motion-title-line {
    opacity: 0;
    transform: translate3d(0, 118%, 0) scaleX(0.72);
    filter: blur(10px);
}

.motion-ready.page-index.motion-opened .hero .motion-title-line,
.motion-ready.page-index .home-motion-section.is-visible .motion-title-line {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
    filter: blur(0);
    transition:
        opacity 1.15s var(--motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
        transform 1.42s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        filter 1.2s ease;
}

.motion-ready.page-index .home-motion-section h2 .motion-title-line {
    transition-delay: 0.24s;
}

.motion-ready.page-index .hero-copy .eyebrow,
.motion-ready.page-index .hero-copy p:not(.eyebrow),
.motion-ready.page-index .actions,
.motion-ready.page-index .home-motion-section .eyebrow,
.motion-ready.page-index .home-motion-section > div > p:not(.eyebrow),
.motion-ready.page-index .section-heading > p:not(.eyebrow),
.motion-ready.page-index .text-link {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(7px);
}

.motion-ready.page-index.motion-opened .hero-copy .eyebrow,
.motion-ready.page-index.motion-opened .hero-copy p:not(.eyebrow),
.motion-ready.page-index.motion-opened .actions,
.motion-ready.page-index .home-motion-section.is-visible .eyebrow,
.motion-ready.page-index .home-motion-section.is-visible > div > p:not(.eyebrow),
.motion-ready.page-index .home-motion-section.is-visible .section-heading > p:not(.eyebrow),
.motion-ready.page-index .home-motion-section.is-visible .text-link {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    transition:
        opacity 1.08s var(--motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
        transform 1.18s var(--motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
        filter 1s ease;
}

.motion-ready.page-index.motion-opened .hero-copy .eyebrow {
    transition-delay: 0.1s;
}

.motion-ready.page-index.motion-opened .hero-copy p:not(.eyebrow) {
    transition-delay: 0.42s;
}

.motion-ready.page-index.motion-opened .actions {
    transition-delay: 0.58s;
}

.motion-ready.page-index .home-motion-section.is-visible .eyebrow {
    transition-delay: 0.16s;
}

.motion-ready.page-index .home-motion-section.is-visible > div > p:not(.eyebrow),
.motion-ready.page-index .home-motion-section.is-visible .section-heading > p:not(.eyebrow) {
    transition-delay: 0.32s;
}

.motion-ready.page-index .home-motion-section.is-visible .text-link {
    transition-delay: 0.44s;
}

.motion-ready.page-index .service-chain span,
.motion-ready.page-index .hub-grid article,
.motion-ready.page-index .case-grid article,
.motion-ready.page-index .home-case-projection-card,
.motion-ready.page-index .cert-grid span,
.motion-ready.page-index .list-panel a,
.motion-ready.page-index .timeline div,
.motion-ready.page-index .contact-methods > * {
    opacity: 0;
    transform: translate3d(0, 72px, 0) rotateX(7deg) scale(0.965);
    transform-origin: center top;
    filter: blur(10px);
}

.motion-ready.page-index .home-motion-section.is-visible .service-chain span,
.motion-ready.page-index .home-motion-section.is-visible .hub-grid article,
.motion-ready.page-index .home-motion-section.is-visible .case-grid article,
.motion-ready.page-index .home-motion-section.is-visible .home-case-projection-card,
.motion-ready.page-index .home-motion-section.is-visible .cert-grid span,
.motion-ready.page-index .home-motion-section.is-visible .list-panel a,
.motion-ready.page-index .home-motion-section.is-visible .timeline div,
.motion-ready.page-index .home-motion-section.is-visible .contact-methods > * {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
    filter: blur(0);
    transition:
        opacity 1.05s var(--motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
        transform 1.28s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        filter 1.05s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.motion-ready.page-index .motion-image-reveal {
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
    transform-origin: center;
    filter: blur(6px) saturate(0.92);
    will-change: transform, clip-path, filter;
}

.motion-ready.page-index.motion-opened .hero .motion-image-reveal,
.motion-ready.page-index .home-motion-section.is-visible .motion-image-reveal {
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
    filter: blur(0) saturate(1.06);
    transition:
        clip-path 1.55s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        transform 1.55s var(--motion-ease-slow, cubic-bezier(0.22, 1, 0.24, 1)),
        filter 1.25s ease;
}

@media (prefers-reduced-motion: reduce) {
    .opening-stage {
        display: none;
    }

    .motion-ready .site-header,
    .motion-ready .brand-logo,
    .motion-ready .nav a,
    .motion-ready.page-index .hero-copy .eyebrow,
    .motion-ready.page-index .hero-copy p:not(.eyebrow),
    .motion-ready.page-index .actions,
    .motion-ready.page-index .home-motion-section h2,
    .motion-ready.page-index .home-motion-section .section-heading p,
    .motion-ready.page-index .home-motion-section > div > p:not(.eyebrow),
    .motion-ready.page-index .text-link,
    .motion-ready.page-index .hub-grid article,
    .motion-ready.page-index .case-grid article,
    .motion-ready.page-index .service-chain span,
    .motion-ready.page-index .cert-grid span,
    .motion-ready.page-index .list-panel a,
    .motion-ready.page-index .timeline div,
    .motion-ready.page-index .contact-methods > *,
    .motion-ready.page-index .motion-image-reveal,
    .motion-ready.page-index .motion-title-line,
    .motion-ready.page-index .home-motion-section::before,
    .motion-ready.page-index .contact-methods > * {
        opacity: 1;
        transform: none;
        clip-path: none;
        filter: none;
        animation: none;
        transition: none;
    }
}

@media (max-width: 560px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-logo {
        height: 42px;
        max-width: min(310px, calc(100vw - 64px));
    }

    .footer-contact {
        justify-items: start;
        text-align: left;
    }

    h1 {
        font-size: 40px;
    }

    .list-panel a {
        flex-direction: column;
        gap: 4px;
    }

    .service-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .news-page {
        padding-bottom: 54px;
    }

    .news-row {
        min-height: 0;
        padding: 22px;
    }

    .news-row strong {
        font-size: 21px;
    }

    .news-row em {
        font-size: 15px;
    }
}

/* Home page content completion */
.home-model {
    align-items: stretch;
}

.service-chain {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid rgba(213, 228, 233, 0.9);
    border-radius: 8px;
    background: rgba(213, 228, 233, 0.9);
    box-shadow: 0 22px 52px rgba(16, 38, 56, 0.1);
}

.service-chain span {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-weight: 800;
    text-align: center;
}

.contact-methods div:nth-child(3) {
    grid-column: 1 / -1;
}

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

    .service-chain span {
        min-height: 72px;
    }

}

/* Website1 reference navigation */
.topbar.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 10px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(216, 233, 237, 0.92);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.topbar .brand {
    min-width: 0;
}

.topbar .brand-logo {
    display: block;
    width: 138px;
    height: 42px;
    max-width: none;
    object-fit: contain;
}

.topbar .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
    gap: 4px;
}

.topbar .nav-item {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.topbar .nav-links a {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.topbar .nav-links a:hover,
.topbar .nav-links a.active,
.topbar .nav-links a.is-active {
    background: var(--surface-soft);
    color: var(--teal-dark);
}

.topbar .nav-links a::after {
    content: none;
}

.topbar .nav-item-has-children {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.topbar .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    min-width: 132px;
    padding: 14px 0 12px;
    border: 1px solid rgba(192, 216, 236, 0.8);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(16, 54, 92, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.topbar .nav-item-has-children.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.topbar .nav-dropdown a {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 0;
    background: transparent;
    color: #667583;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    transform: none;
}

.topbar .nav-dropdown a:hover,
.topbar .nav-dropdown a:focus-visible {
    background: transparent;
    color: #0e66d0;
}

.topbar .nav-dropdown a.is-active {
    margin-bottom: 8px;
    color: #10233a;
    font-weight: 900;
}

.topbar .nav-dropdown a.is-active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #176fff;
    transform: translateX(-50%);
}

.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    gap: 9px;
    border-radius: 999px;
    color: #fff;
    background: #07968f;
    box-shadow: 0 14px 34px rgba(7, 150, 143, 0.24);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-action:hover {
    transform: translateY(-2px);
    background: #05766f;
    box-shadow: 0 18px 42px rgba(7, 150, 143, 0.3);
}

.nav-action-icon {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    line-height: 1;
}

.nav-action-icon svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1180px) {
    .topbar.site-header {
        grid-template-columns: 1fr auto;
        width: 100%;
        padding: 10px 22px;
    }

    .topbar .nav-links {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow: visible;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .topbar .nav-links::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 560px) {
    .topbar.site-header {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 9px 14px;
        gap: 9px 12px;
    }

    .topbar .brand-logo {
        width: 122px;
        height: 40px;
    }

    .topbar .nav-action {
        width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .topbar .nav-action span:last-child {
        display: none;
    }

    .topbar .nav-links a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }

    .topbar .nav-links {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .topbar .nav-dropdown {
        left: 0;
        min-width: 118px;
        transform: translateY(10px);
    }

    .topbar .nav-item-has-children.is-open .nav-dropdown {
        transform: translateY(0);
    }
}

/* Qualifications page: soften the hero-to-content transition */
.page-qualifications main {
    background:
        linear-gradient(180deg, rgba(232, 247, 249, 0.74) 0, rgba(245, 248, 251, 0.86) 390px, var(--bg) 720px);
}

.page-qualifications .sub-hero.simple-hero {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 58px max(18px, calc((100vw - 1180px) / 2)) 46px;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 400px);
    gap: 44px;
    border-bottom: 1px solid rgba(213, 228, 233, 0.72);
    background:
        linear-gradient(180deg, rgba(233, 249, 250, 0.78), rgba(246, 251, 251, 0.78) 68%, rgba(245, 248, 251, 0));
}

.page-qualifications .sub-hero.simple-hero h1 {
    margin-bottom: 16px;
}

.page-qualifications .sub-hero.simple-hero > div > p:not(.eyebrow) {
    max-width: 660px;
}

.page-qualifications .sub-hero.simple-hero .smile-panel {
    padding: 30px;
    border-color: rgba(213, 228, 233, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 252, 0.84));
    box-shadow: 0 18px 48px rgba(16, 38, 56, 0.09);
}

.page-qualifications .sub-hero.simple-hero .smile-panel::after {
    content: none;
}

.page-qualifications .sub-hero.simple-hero .smile-panel strong {
    font-size: clamp(26px, 2.5vw, 34px);
}

.page-qualifications .qualification-overview {
    padding-top: 54px;
}

.page-qualifications .qualification-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.page-qualifications .certificate-thumb {
    display: block;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-qualifications .certificate-thumb img {
    padding: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.72);
}

.page-qualifications .certificate-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 150, 143, 0.3);
    box-shadow: 0 14px 30px rgba(16, 38, 56, 0.1);
}

@media (max-width: 900px) {
    .page-qualifications .sub-hero.simple-hero {
        grid-template-columns: 1fr;
        padding-top: 38px;
        padding-bottom: 34px;
        gap: 24px;
    }

    .page-qualifications .qualification-overview {
        padding-top: 42px;
    }
}

/* Website 1 exact micro UI: lucide-style line icons, no selection boxes */
:root {
    --ui-icon-shield-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
    --ui-icon-stethoscope: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 2v2'/%3E%3Cpath d='M5 2v2'/%3E%3Cpath d='M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1'/%3E%3Cpath d='M8 15a6 6 0 0 0 12 0v-3'/%3E%3Ccircle cx='20' cy='10' r='2'/%3E%3C/svg%3E");
    --ui-icon-flask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v7.31'/%3E%3Cpath d='M14 9.3V2'/%3E%3Cpath d='M8.5 2h7'/%3E%3Cpath d='M14 9.3a6.5 6.5 0 1 1-4 0'/%3E%3Cpath d='M5.58 16.5h12.85'/%3E%3C/svg%3E");
    --ui-icon-file-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='m3 15 2 2 4-4'/%3E%3C/svg%3E");
    --ui-icon-book-open: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 7v14'/%3E%3Cpath d='M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
    --ui-icon-newspaper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Crect width='8' height='4' x='10' y='6' rx='1'/%3E%3C/svg%3E");
    --ui-icon-building: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v8h20v-8a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E");
    --ui-icon-briefcase: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3Crect width='20' height='14' x='2' y='6' rx='2'/%3E%3C/svg%3E");
    --ui-icon-handshake: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m11 17 2 2a1 1 0 1 0 3-3'/%3E%3Cpath d='m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4'/%3E%3Cpath d='m21 3 1 11h-2'/%3E%3Cpath d='M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3'/%3E%3Cpath d='M3 4h8'/%3E%3C/svg%3E");
    --ui-icon-layers: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z'/%3E%3Cpath d='m22 12.5-9.17 4.16a2 2 0 0 1-1.66 0L2 12.5'/%3E%3Cpath d='m22 17.5-9.17 4.16a2 2 0 0 1-1.66 0L2 17.5'/%3E%3C/svg%3E");
    --ui-icon-truck: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/svg%3E");
}

body {
    --eyebrow-icon-url: var(--ui-icon-shield-check);
    --card-icon-url: var(--ui-icon-layers);
}

.page-index {
    --eyebrow-icon-url: var(--ui-icon-shield-check);
}

.page-cases,
.page-case-adult,
.page-case-kids,
.page-case-video,
.page-case-crowding-deepbite,
.page-case-h00558-crowding-underbite {
    --eyebrow-icon-url: var(--ui-icon-stethoscope);
    --card-icon-url: var(--ui-icon-stethoscope);
}

.page-products,
.page-services,
.page-clinic-service,
.page-patient-service,
.page-partner-service {
    --eyebrow-icon-url: var(--ui-icon-flask);
    --card-icon-url: var(--ui-icon-layers);
}

.page-qualifications {
    --eyebrow-icon-url: var(--ui-icon-file-check);
    --card-icon-url: var(--ui-icon-file-check);
}

.page-insights {
    --eyebrow-icon-url: var(--ui-icon-book-open);
    --card-icon-url: var(--ui-icon-book-open);
}

.page-news {
    --eyebrow-icon-url: var(--ui-icon-newspaper);
    --card-icon-url: var(--ui-icon-newspaper);
}

.page-about-us,
.page-about {
    --eyebrow-icon-url: var(--ui-icon-building);
    --card-icon-url: var(--ui-icon-building);
}

.page-jobs {
    --eyebrow-icon-url: var(--ui-icon-briefcase);
    --card-icon-url: var(--ui-icon-briefcase);
}

.page-message-board,
.page-contact {
    --eyebrow-icon-url: var(--ui-icon-handshake);
    --card-icon-url: var(--ui-icon-handshake);
}

.cooperation-cta {
    --eyebrow-icon-url: var(--ui-icon-handshake);
}

#contact {
    --eyebrow-icon-url: var(--ui-icon-handshake);
}

.eyebrow,
.news-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    margin: 0 0 18px;
    color: var(--teal);
    font-weight: 800;
}

.eyebrow::before,
.news-hero .eyebrow::before,
.message-hero .eyebrow::before,
.research-band .eyebrow::before,
.mission-band .eyebrow::before {
    content: "" !important;
    display: inline-block !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: currentColor !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    -webkit-mask-image: var(--eyebrow-icon-url) !important;
    mask-image: var(--eyebrow-icon-url) !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
}

.catalog-grid article h3::before,
.product-series article h3::before,
.detail-list article h3::before,
.handoff-case-card h2::before,
.job-list article h3::before,
.qualification-grid article h3::before,
.proof-grid article strong::before,
.featured-article h2::before,
.feed-item h3::before,
.news-list article h3::before,
.value-grid article h3::before {
    content: "" !important;
    display: inline-block !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    margin-right: 8px;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--teal) !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    vertical-align: -4px;
    -webkit-mask-image: var(--card-icon-url, var(--eyebrow-icon-url)) !important;
    mask-image: var(--card-icon-url, var(--eyebrow-icon-url)) !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
}

.page-products .product-series article:nth-child(3n) h3::before,
.page-products .catalog-grid article:nth-child(3n) h3::before {
    -webkit-mask-image: var(--ui-icon-truck) !important;
    mask-image: var(--ui-icon-truck) !important;
}

.topbar .nav-action-icon svg.lucide-handshake {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Jobs page: pulled from Website 1 recruiting layout */
.page-jobs main {
    background: #f5f9fb;
}

.job-origin-hero {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18, 48, 58, 0.82), rgba(11, 143, 145, 0.76)),
        url("../images/yagu-clinic-banner-display.jpg") center / cover;
}

.job-origin-hero-overlay {
    display: flex;
    align-items: center;
    min-height: inherit;
    padding: 92px max(18px, calc((100vw - 1180px) / 2)) 72px;
    background: rgba(0, 0, 0, 0.18);
}

.job-origin-hero-inner {
    width: min(1180px, 100%);
}

.job-origin-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 850;
}

.job-origin-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.85;
}

.job-origin-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0 92px;
}

.job-origin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.job-main-content {
    min-width: 0;
}

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

.job-list-item,
.company-info-card,
.job-contact-card,
.job-filter-bar {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(18, 48, 58, 0.08);
}

.job-list-item {
    display: block;
    padding: 26px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.job-list-item:hover {
    border-color: rgba(11, 143, 145, 0.38);
    box-shadow: 0 20px 44px rgba(18, 48, 58, 0.12);
    transform: translateY(-3px);
}

.job-detail-panel {
    border: 1px solid rgba(25, 106, 190, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96)),
        #fff;
    box-shadow: 0 24px 58px rgba(21, 68, 108, 0.12);
    padding: 34px;
}

.job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    margin-bottom: 18px;
    color: var(--teal-dark);
    font-weight: 800;
}

.job-back-link::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, transparent 46%, currentColor 46% 54%, transparent 54%),
        linear-gradient(45deg, transparent 46%, currentColor 46% 54%, transparent 54%);
    transform: rotate(180deg);
    opacity: 0.72;
}

.job-detail-header {
    display: flex;
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(25, 106, 190, 0.14);
}

.job-detail-eyebrow {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

.job-detail-header h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.job-detail-header p:not(.job-detail-eyebrow) {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.9;
}

.job-detail-salary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0b8f91, #176ed5);
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(23, 110, 213, 0.22);
}

.job-detail-meta-grid,
.job-detail-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.job-detail-meta-grid div,
.job-detail-overview div {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(25, 106, 190, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

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

.job-detail-meta-grid span,
.job-detail-overview span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.job-detail-meta-grid strong,
.job-detail-overview strong {
    display: block;
    margin-top: 7px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.45;
}

.job-detail-block {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(25, 106, 190, 0.12);
}

.job-detail-block h3 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.3;
}

.job-detail-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding-left: 24px;
    color: var(--muted);
    line-height: 1.9;
}

.job-detail-list li::marker {
    color: var(--teal-dark);
    font-weight: 900;
}

.job-detail-apply {
    padding: 26px;
    border: 1px solid rgba(25, 106, 190, 0.14);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(230, 246, 255, 0.72), rgba(255, 255, 255, 0.94));
}

.job-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.job-detail-primary,
.job-detail-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
}

.job-detail-primary {
    color: #fff;
    background: linear-gradient(135deg, #0b8f91, #176ed5);
    box-shadow: 0 14px 28px rgba(23, 110, 213, 0.18);
}

.job-detail-secondary {
    border: 1px solid rgba(25, 106, 190, 0.24);
    color: var(--teal-dark);
    background: #fff;
}

.job-item-header {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.job-item-title {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.3;
}

.job-item-desc {
    margin: 8px 0 0;
    color: var(--muted);
}

.job-item-salary {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    font-weight: 800;
    white-space: nowrap;
}

.job-item-summary {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.82;
}

.job-item-meta {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
}

.job-item-info,
.company-stats span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
}

.job-meta-icon,
.company-stats svg {
    flex: 0 0 auto;
    color: var(--teal);
}

.job-item-tags {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.job-item-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(222, 244, 244, 0.9);
    font-weight: 700;
    white-space: nowrap;
}

.job-sidebar {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 18px;
}

.company-info-card,
.job-contact-card,
.job-filter-bar {
    padding: 22px;
}

.company-logo {
    margin-bottom: 16px;
}

.company-logo img {
    display: block;
    width: 154px;
    height: auto;
}

.company-details p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.company-stats {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.job-contact-card h4 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 18px;
}

.job-contact-list {
    display: grid;
    gap: 10px;
}

.job-contact-line {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    min-height: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.job-contact-line[href]:hover {
    color: var(--teal);
}

.job-contact-label {
    color: var(--teal-dark);
    font-weight: 800;
    white-space: nowrap;
}

.job-contact-value {
    min-width: 0;
    overflow-wrap: anywhere;
}

.job-contact-line strong {
    color: var(--ink);
}

.job-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.job-search-form input {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
}

.job-search-form input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(11, 143, 145, 0.12);
}

.job-search-form button {
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--teal);
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 980px) {
    .job-origin-layout {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: static;
    }

    .job-detail-meta-grid,
    .job-detail-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .job-origin-hero {
        min-height: 310px;
    }

    .job-origin-hero-overlay {
        padding-top: 66px;
        padding-bottom: 58px;
    }

    .job-origin-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .job-origin-section {
        padding: 46px 0 72px;
    }

    .job-list-item {
        padding: 22px;
    }

    .job-detail-panel {
        padding: 24px 20px;
    }

    .job-detail-header {
        display: grid;
        gap: 18px;
    }

    .job-detail-meta-grid,
    .job-detail-overview {
        grid-template-columns: 1fr;
    }

    .job-detail-apply {
        padding: 22px 18px;
    }

    .job-item-header,
    .job-item-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .job-item-tags {
        justify-content: flex-start;
    }

    .job-search-form {
        grid-template-columns: 1fr;
    }
}

/* Qualifications gallery: reference-style honor certificates */
.page-qualifications main {
    background: #f7f8fa;
}

.qualification-gallery-section {
    width: 100%;
    margin: 0;
    padding: 92px max(20px, calc((100vw - 1640px) / 2)) 112px;
    background: #f7f8fa;
}

.qualification-gallery-heading {
    margin: 0 0 42px;
    text-align: center;
}

.qualification-gallery-heading h1 {
    margin: 0;
    color: #2c2f33;
    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: 0;
}

.qualification-gallery-heading::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    margin: 14px auto 0;
    background: #168cdf;
}

.qualification-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.qualification-gallery-card {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4e8ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(22, 36, 48, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.qualification-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 140, 223, 0.28);
    box-shadow: 0 14px 30px rgba(22, 36, 48, 0.13);
}

.qualification-gallery-image {
    position: relative;
    display: block;
    flex: 1 1 auto;
    flex: 0 0 392px;
    height: 392px;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.qualification-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
    transition: transform 220ms ease, filter 220ms ease;
}

.qualification-gallery-card:hover .qualification-gallery-image img {
    transform: scale(1.018);
    filter: brightness(0.58);
}

.qualification-gallery-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    transition: opacity 180ms ease;
}

.qualification-gallery-card:hover .qualification-gallery-zoom {
    opacity: 1;
}

.qualification-gallery-card strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 12px;
    border-top: 1px solid #edf0f2;
    color: #5b5149;
    background: #fff;
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 1180px) {
    .qualification-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .qualification-gallery-section {
        padding: 58px 18px 76px;
    }

    .qualification-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .qualification-gallery-card {
        min-height: 0;
    }

    .qualification-gallery-image {
        flex-basis: 338px;
        height: 338px;
    }
}

/* Qualifications page: Website 1 structure with retained certificate images */
.qualification-site1-hero {
    position: relative;
    overflow: hidden;
    padding: 82px max(18px, calc((100vw - 1180px) / 2)) 66px;
    background:
        linear-gradient(100deg, rgba(11, 143, 145, 0.08), rgba(47, 128, 201, 0.06) 54%, transparent),
        #f4f9fb;
}

.qualification-site1-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
}

.qualification-site1-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 4.4vw, 70px);
    line-height: 1.08;
    font-weight: 850;
}

.qualification-site1-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.qualification-site1-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 76px 0 42px;
}

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

.qualification-site1-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(18, 48, 58, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.qualification-site1-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 150, 143, 0.28);
    box-shadow: 0 18px 42px rgba(18, 48, 58, 0.1);
}

.qualification-site1-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eef6f7;
}

.qualification-site1-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    background: #fff;
    transform: translateZ(0);
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.qualification-site1-card:hover .qualification-site1-image img {
    transform: scale(1.02);
}

.qualification-site1-card figcaption {
    padding: 18px;
}

.qualification-site1-card h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.32;
}

.qualification-site1-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.82;
}

.page-qualifications .qualification-detail {
    margin-top: 34px;
}

@media (max-width: 1180px) {
    .qualification-site1-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .qualification-site1-hero {
        padding-top: 62px;
        padding-bottom: 58px;
    }

    .qualification-site1-section {
        padding: 48px 0 28px;
    }

    .qualification-site1-grid {
        grid-template-columns: 1fr;
    }
}

/* Qualifications page: premium medical archive refresh */
.page-qualifications main {
    background:
        linear-gradient(180deg, #f6fbfc 0%, #ffffff 37%, #f4f8f9 100%);
}

.qualification-site1-hero {
    isolation: isolate;
    padding: 72px max(22px, calc((100vw - 1180px) / 2)) 58px;
    border-bottom: 1px solid rgba(185, 211, 219, 0.62);
    background:
        linear-gradient(115deg, rgba(222, 243, 246, 0.96) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(238, 245, 244, 0.98) 100%);
}

.qualification-site1-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(13, 69, 82, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(13, 69, 82, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 74%);
}

.qualification-site1-hero::after {
    content: "CERTIFIED";
    position: absolute;
    right: max(18px, calc((100vw - 1180px) / 2));
    bottom: 24px;
    z-index: -1;
    color: rgba(14, 69, 82, 0.045);
    font-family: var(--font-display);
    font-size: 112px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.qualification-site1-inner {
    max-width: 820px;
}

.qualification-site1-hero h1 {
    max-width: 780px;
    color: #102634;
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: 0;
}

.qualification-site1-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 22px;
    color: #456170;
    font-size: 17px;
    line-height: 1.95;
}

.qualification-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.qualification-hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(14, 126, 128, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: #0b7774;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(15, 72, 82, 0.06);
}

.qualification-site1-section {
    width: min(1180px, calc(100% - 44px));
    padding: 56px 0 104px;
}

.qualification-site1-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.74fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 28px;
}

.qualification-site1-heading h2 {
    margin: 10px 0 0;
    color: #102634;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1.16;
    letter-spacing: 0;
}

.qualification-site1-heading > p {
    margin: 0;
    color: #516b78;
    font-size: 15px;
    line-height: 1.9;
}

.qualification-site1-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.qualification-site1-card {
    position: relative;
    display: flex;
    min-height: 470px;
    flex-direction: column;
    border: 1px solid rgba(185, 210, 218, 0.82);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 252, 0.94));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 22px 46px rgba(21, 55, 66, 0.072);
}

.qualification-site1-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, #0c9a96, #53b8d5 58%, #d9a24a);
    opacity: 0;
    transition: opacity 180ms ease;
}

.qualification-site1-card:hover {
    transform: translateY(-5px);
    border-color: rgba(12, 154, 150, 0.32);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.94) inset,
        0 28px 56px rgba(21, 55, 66, 0.12);
}

.qualification-site1-card:hover::before {
    opacity: 1;
}

.qualification-site1-image {
    display: grid;
    height: 286px;
    place-items: center;
    padding: 14px;
    border-bottom: 1px solid rgba(210, 226, 231, 0.74);
    background:
        linear-gradient(135deg, #f7fbfb, #eef6f7);
    cursor: zoom-in;
}

.qualification-site1-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    background: #fff;
}

.qualification-site1-card figcaption {
    display: flex;
    min-height: 184px;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.qualification-site1-index {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    color: #b9852f;
    font-size: 13px;
    font-weight: 900;
}

.qualification-site1-card h2 {
    margin: 0 0 12px;
    color: #102634;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.34;
    letter-spacing: 0;
}

.qualification-site1-card p {
    color: #5b7280;
    font-size: 14px;
    line-height: 1.82;
}

.qualification-lightbox[hidden] {
    display: none;
}

.qualification-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 32px;
    background: rgba(8, 24, 32, 0.78);
}

.qualification-lightbox-panel {
    position: relative;
    display: grid;
    max-width: min(1080px, calc(100vw - 48px));
    max-height: calc(100vh - 64px);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    justify-items: center;
}

.qualification-lightbox-image {
    display: block;
    max-width: min(1080px, calc(100vw - 48px));
    max-height: calc(100vh - 128px);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
    object-fit: contain;
}

.qualification-lightbox-caption {
    max-width: min(720px, calc(100vw - 56px));
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.qualification-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #102634;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.qualification-lightbox-close:focus-visible {
    outline: 3px solid rgba(83, 184, 213, 0.76);
    outline-offset: 2px;
}

body.qualification-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1180px) {
    .qualification-site1-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .qualification-site1-hero {
        padding-top: 72px;
        padding-bottom: 66px;
    }

    .qualification-site1-hero::after {
        display: none;
    }

    .qualification-site1-hero h1 {
        font-size: 44px;
    }

    .qualification-site1-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .qualification-site1-heading h2 {
        font-size: 34px;
    }

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

@media (max-width: 620px) {
    .qualification-site1-hero {
        padding: 58px 18px 54px;
    }

    .qualification-site1-hero h1 {
        font-size: 34px;
    }

    .qualification-site1-hero p:not(.eyebrow) {
        font-size: 15px;
    }

    .qualification-hero-meta span {
        min-height: 34px;
        padding: 0 13px;
        font-size: 13px;
    }

    .qualification-site1-section {
        width: min(100% - 32px, 1180px);
        padding: 46px 0 76px;
    }

    .qualification-site1-heading h2 {
        font-size: 30px;
    }

    .qualification-site1-grid {
        grid-template-columns: 1fr;
    }

    .qualification-site1-image {
        height: 330px;
    }

    .qualification-lightbox {
        padding: 18px;
    }

    .qualification-lightbox-panel,
    .qualification-lightbox-image {
        max-width: calc(100vw - 32px);
    }

    .qualification-lightbox-image {
        max-height: calc(100vh - 120px);
    }

    .qualification-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

body.site-dialog-open {
    overflow: hidden;
}

.site-dialog-backdrop {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(8, 36, 65, .56);
}

.site-dialog-backdrop[hidden] {
    display: none;
}

.site-dialog-panel {
    width: min(440px, 100%);
    border: 1px solid #d7e5f1;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(8, 36, 65, .24);
    color: #17283c;
}

.site-dialog-panel h2 {
    margin: 0;
    color: #0b3969;
    font-size: 20px;
    line-height: 1.4;
}

.site-dialog-panel p {
    margin: 10px 0 0;
    color: #526b86;
    font-size: 15px;
    line-height: 1.75;
}

.site-dialog-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.site-dialog-actions button {
    min-width: 88px;
    min-height: 42px;
    border: 1px solid #0f766e;
    border-radius: 6px;
    padding: 9px 18px;
    background: #0f766e;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.site-dialog-actions button:focus-visible {
    outline: 3px solid rgba(15, 118, 110, .24);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Qualifications page: seamless transition after removing archive copy */
.page-qualifications main {
    background:
        linear-gradient(180deg, #f6fbfc 0%, #f8fcfc 34%, #ffffff 58%, #f4f8f9 100%);
}

.page-qualifications .qualification-site1-hero {
    border-bottom: 0;
    background:
        linear-gradient(115deg, rgba(222, 243, 246, 0.96) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(238, 245, 244, 0.98) 100%);
}

.page-qualifications .qualification-site1-hero::before {
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 78%);
}

.page-qualifications .qualification-site1-section {
    padding-top: 44px;
}

@media (max-width: 620px) {
    .page-qualifications .qualification-site1-section {
        padding-top: 32px;
    }
}

/* Products page: dimensional aligner showcase */
.page-products main {
    background:
        linear-gradient(180deg, #f5fbfc 0%, #ffffff 38%, #f5f8f9 100%);
}

.product-depth-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
    gap: 52px;
    align-items: center;
    width: min(1180px, calc(100% - 44px));
    padding-top: 72px;
    padding-bottom: 86px;
}

.product-depth-copy {
    min-width: 0;
}

.product-depth-copy h2 {
    max-width: 620px;
    margin: 0;
    color: #102634;
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 0;
}

.product-depth-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin: 20px 0 0;
    color: #506b78;
    font-size: 16px;
    line-height: 1.95;
}

.product-depth-points {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.product-depth-points article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 16px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid rgba(188, 214, 222, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(20, 54, 64, 0.055);
}

.product-depth-points span {
    grid-row: 1 / span 2;
    color: #0b8d8a;
    font-size: 20px;
    font-weight: 900;
}

.product-depth-points strong {
    color: #102634;
    font-size: 17px;
    line-height: 1.35;
}

.product-depth-points p {
    margin: 0;
    color: #5b7280;
    font-size: 14px;
    line-height: 1.75;
}

.product-depth-stage {
    --rx: -7deg;
    --ry: 10deg;
    --mx: 50%;
    --my: 50%;
    position: relative;
    min-height: 620px;
    perspective: 1300px;
}

.product-depth-scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform 420ms ease;
}

.product-depth-scene::before {
    content: "";
    position: absolute;
    inset: 58px 18px 72px 18px;
    border: 1px solid rgba(154, 200, 211, 0.36);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(9, 31, 45, 0.98), rgba(11, 56, 68, 0.94) 58%, rgba(5, 18, 31, 0.98)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 42px 42px;
    box-shadow:
        0 32px 80px rgba(7, 26, 38, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
    transform: translateZ(-90px) rotateX(3deg);
}

.product-depth-scene::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 8%;
    bottom: 48px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11, 48, 62, 0.3);
    filter: blur(22px);
    transform: translateZ(-130px) rotateX(74deg);
}

.depth-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(209, 229, 234, 0.54);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 70px rgba(5, 22, 34, 0.18);
    transform-style: preserve-3d;
    transition: transform 420ms ease, box-shadow 420ms ease;
}

.depth-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depth-card-main {
    z-index: 3;
    top: 58px;
    right: 12px;
    width: min(520px, 88%);
    height: min(520px, 88vw);
    background: #071625;
    transform: translateZ(112px) rotateZ(-1.4deg);
}

.depth-card-holo {
    z-index: 4;
    left: 6px;
    top: 110px;
    width: min(286px, 48%);
    height: min(286px, 48vw);
    transform: translateZ(190px) rotateZ(-7deg) translateY(8px);
}

.depth-card-clear {
    z-index: 5;
    right: 2px;
    bottom: 18px;
    width: min(330px, 54%);
    height: min(330px, 54vw);
    background: #ffffff;
    transform: translateZ(238px) rotateZ(5deg);
}

.depth-card-clear img {
    object-fit: contain;
    padding: 8px;
    background: #fff;
}

.depth-orbit {
    position: absolute;
    inset: 82px 44px 96px 44px;
    border: 1px solid rgba(137, 219, 229, 0.22);
    border-radius: 50%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.depth-orbit-one {
    transform: translateZ(62px) rotateX(70deg) rotateZ(-18deg);
}

.depth-orbit-two {
    inset: 118px 78px 132px 78px;
    border-color: rgba(217, 162, 74, 0.24);
    transform: translateZ(142px) rotateX(64deg) rotateZ(24deg);
}

.depth-glow {
    position: absolute;
    inset: 60px 18px 72px 18px;
    border-radius: 8px;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 66%);
    opacity: 0.54;
    mix-blend-mode: screen;
    transform: translateZ(280px);
    pointer-events: none;
}

.product-depth-stage:hover .depth-card-main {
    transform: translateZ(128px) rotateZ(-1.4deg) translateY(-4px);
}

.product-depth-stage:hover .depth-card-holo {
    transform: translateZ(216px) rotateZ(-7deg) translateY(-3px);
}

.product-depth-stage:hover .depth-card-clear {
    transform: translateZ(266px) rotateZ(5deg) translateY(-8px);
}

@media (prefers-reduced-motion: no-preference) {
    .depth-card-main {
        animation: productDepthFloat 5.6s ease-in-out infinite;
    }

    .depth-card-holo {
        animation: productDepthFloat 6.2s ease-in-out infinite reverse;
    }

    .depth-card-clear {
        animation: productDepthFloat 5.1s ease-in-out infinite;
    }
}

@keyframes productDepthFloat {
    0%, 100% {
        margin-top: 0;
    }
    50% {
        margin-top: -8px;
    }
}

@media (max-width: 1080px) {
    .product-depth-showcase {
        grid-template-columns: 1fr;
    }

    .product-depth-stage {
        min-height: 600px;
    }
}

@media (max-width: 620px) {
    .product-depth-showcase {
        width: min(100% - 32px, 1180px);
        padding-top: 52px;
        padding-bottom: 68px;
    }

    .product-depth-copy h2 {
        font-size: 32px;
    }

    .product-depth-stage {
        min-height: 520px;
    }

    .depth-card-main {
        top: 62px;
        right: 0;
        width: 86%;
        height: 360px;
    }

    .depth-card-holo {
        left: 0;
        top: 128px;
        width: 48%;
        height: 190px;
    }

    .depth-card-clear {
        right: 0;
        bottom: 34px;
        width: 58%;
        height: 226px;
    }
}

/* Products page: single lightweight aligner visual */
.product-depth-stage {
    min-height: 540px;
    perspective: none;
}

.product-depth-scene {
    display: grid;
    place-items: center;
    transform: none;
    transform-style: flat;
    transition: none;
}

.product-depth-scene::before {
    inset: 76px 26px 62px;
    border-color: rgba(154, 200, 211, 0.42);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 246, 249, 0.72)),
        radial-gradient(circle at 72% 28%, rgba(7, 150, 143, 0.16), transparent 34%);
    box-shadow: 0 30px 84px rgba(16, 38, 56, 0.12);
}

.product-depth-scene::after {
    left: 22%;
    right: 18%;
    bottom: 72px;
    height: 34px;
    opacity: 0.52;
    filter: blur(20px);
}

.depth-card-single {
    position: relative;
    z-index: 3;
    inset: auto;
    width: min(440px, 78%);
    height: auto;
    aspect-ratio: 1;
    border-color: rgba(195, 220, 226, 0.88);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 70px rgba(16, 38, 56, 0.14);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.depth-card-single img {
    object-fit: contain;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
}

.product-depth-stage:hover .depth-card-single {
    transform: translate3d(0, -6px, 0);
}

@media (prefers-reduced-motion: no-preference) {
    .depth-card-single {
        animation: productSingleFloat 6.4s ease-in-out infinite !important;
    }
}

@keyframes productSingleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media (max-width: 980px) {
    .product-depth-stage {
        min-height: 500px;
    }

    .depth-card-single {
        width: min(400px, 82%);
    }
}

@media (max-width: 620px) {
    .product-depth-stage {
        min-height: 420px;
    }

    .product-depth-scene::before {
        inset: 44px 10px 42px;
    }

    .depth-card-single {
        width: min(340px, 88%);
    }
}

/* About page: clean medical corporate layout based on Website 1 content */
.page-about-us main {
    background:
        linear-gradient(180deg, #f6fafb 0%, #ffffff 42%, #f4f8fa 100%);
}

.about-modern-hero {
    width: 100%;
    padding: 86px max(18px, calc((100vw - 1180px) / 2)) 52px;
    border-bottom: 1px solid rgba(185, 209, 219, 0.72);
    background:
        linear-gradient(90deg, rgba(223, 242, 246, 0.92), rgba(255, 255, 255, 0.92) 54%, rgba(237, 246, 249, 0.84)),
        #f6fafb;
}

.about-modern-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 72px;
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-modern-hero-copy {
    min-width: 0;
}

.about-modern-hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--ink);
    font-size: 66px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: 0;
}

.about-modern-hero-copy > p:not(.eyebrow) {
    max-width: 720px;
    margin: 24px 0 0;
    color: #526a78;
    font-size: 18px;
    line-height: 1.9;
}

.about-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.about-modern-hero-media {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(198, 219, 227, 0.9);
    border-radius: 8px;
    background: #eaf4f6;
    box-shadow: 0 26px 70px rgba(20, 48, 58, 0.14);
}

.about-modern-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
    filter: saturate(0.95);
}

.about-modern-hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 34, 45, 0.02), rgba(11, 143, 138, 0.28));
    content: "";
    pointer-events: none;
}

.about-modern-hero-media figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    color: #fff;
    background: rgba(18, 48, 58, 0.62);
    backdrop-filter: blur(14px);
}

.about-modern-hero-media figcaption span {
    color: #b9f0ef;
    font-size: 13px;
    font-weight: 800;
}

.about-modern-hero-media figcaption strong {
    font-size: 18px;
    line-height: 1.45;
}

.about-modern-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1180px, 100%);
    margin: 54px auto 0;
    overflow: hidden;
    border: 1px solid rgba(198, 219, 227, 0.86);
    border-radius: 8px;
    background: rgba(198, 219, 227, 0.86);
    box-shadow: 0 18px 42px rgba(20, 48, 58, 0.07);
}

.about-modern-metrics div {
    display: grid;
    gap: 4px;
    min-height: 118px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.86);
}

.about-modern-metrics strong {
    color: var(--teal-dark);
    font-size: 34px;
    line-height: 1;
    font-weight: 850;
}

.about-modern-metrics span {
    color: #526a78;
    font-weight: 700;
}

.about-modern-section,
.about-modern-cooperation {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.about-modern-section {
    padding: 86px 0;
}

.about-modern-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.about-modern-section-heading h2,
.about-modern-capability-copy h2,
.about-modern-cooperation h2 {
    margin: 0;
    color: var(--ink);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: 0;
}

.about-modern-section-heading > p:not(.eyebrow),
.about-modern-capability-copy > p,
.about-modern-cooperation p {
    color: #526a78;
    line-height: 1.88;
}

.about-modern-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.about-modern-copy-panel {
    min-height: 100%;
    padding: 34px;
    border: 1px solid rgba(198, 219, 227, 0.84);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 48, 58, 0.07);
}

.about-modern-copy-panel p {
    margin: 0;
    color: #526a78;
    line-height: 1.92;
}

.about-modern-copy-panel p + p {
    margin-top: 18px;
}

.about-modern-process {
    display: grid;
    gap: 14px;
}

.about-modern-process article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 18px;
    align-items: start;
    min-height: 104px;
    padding: 22px 24px;
    border: 1px solid rgba(198, 219, 227, 0.84);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 48, 58, 0.055);
}

.about-modern-process article span {
    grid-row: span 2;
    color: var(--teal-dark);
    font-size: 28px;
    line-height: 1;
    font-weight: 850;
}

.about-modern-process article strong {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.35;
}

.about-modern-process article p {
    margin: 0;
    color: #5c7180;
    line-height: 1.75;
}

.about-modern-capability {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.about-modern-image-block {
    overflow: hidden;
    border: 1px solid rgba(198, 219, 227, 0.84);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(20, 48, 58, 0.1);
}

.about-modern-image-block img {
    display: block;
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
}

.about-modern-feature-grid,
.about-modern-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.about-modern-feature-grid article,
.about-modern-value-grid article {
    min-height: 134px;
    padding: 24px;
    border: 1px solid rgba(198, 219, 227, 0.84);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 48, 58, 0.055);
}

.about-modern-feature-grid strong,
.about-modern-value-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--teal-dark);
    font-size: 19px;
    line-height: 1.35;
}

.about-modern-feature-grid span,
.about-modern-value-grid span {
    color: #5c7180;
    line-height: 1.72;
}

.about-modern-culture {
    padding-top: 78px;
    border-top: 1px solid rgba(198, 219, 227, 0.72);
}

.about-modern-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-modern-timeline-section {
    padding-top: 72px;
}

.about-modern-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-modern-timeline article {
    min-height: 230px;
    padding: 26px;
    border: 1px solid rgba(198, 219, 227, 0.86);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(234, 246, 248, 0.86), rgba(255, 255, 255, 0.96));
}

.about-modern-timeline time {
    display: block;
    margin-bottom: 20px;
    color: var(--teal-dark);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 850;
}

.about-modern-timeline p {
    margin: 0;
    color: #526a78;
    line-height: 1.82;
}

.about-modern-cooperation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: center;
    margin-bottom: 76px;
    padding: 42px;
    border: 1px solid rgba(198, 219, 227, 0.86);
    border-radius: 8px;
    background:
        linear-gradient(100deg, rgba(223, 242, 246, 0.88), rgba(255, 255, 255, 0.96) 62%, rgba(255, 248, 237, 0.82));
    box-shadow: 0 24px 64px rgba(20, 48, 58, 0.09);
}

.about-modern-cooperation h2 {
    max-width: 640px;
}

.about-modern-cooperation p {
    max-width: 760px;
    margin: 16px 0 0;
}

.about-modern-contact-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(198, 219, 227, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
}

.about-modern-contact-card span {
    color: var(--warm);
    font-weight: 850;
}

.about-modern-contact-card strong {
    color: var(--teal-dark);
    font-size: 26px;
    line-height: 1.2;
}

.about-modern-contact-card p {
    margin: 0 0 12px;
    color: #526a78;
}

@media (max-width: 980px) {
    .about-modern-hero {
        padding-top: 64px;
    }

    .about-modern-hero-inner,
    .about-modern-intro-grid,
    .about-modern-capability,
    .about-modern-cooperation {
        grid-template-columns: 1fr;
    }

    .about-modern-hero h1 {
        font-size: 52px;
    }

    .about-modern-metrics,
    .about-modern-timeline,
    .about-modern-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-modern-contact-card {
        max-width: 440px;
    }
}

@media (max-width: 640px) {
    .about-modern-hero {
        padding: 52px 18px 42px;
    }

    .about-modern-hero h1 {
        font-size: 40px;
    }

    .about-modern-hero-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

    .about-modern-section {
        padding: 58px 0;
    }

    .about-modern-section-heading h2,
    .about-modern-capability-copy h2,
    .about-modern-cooperation h2 {
        font-size: 32px;
    }

    .about-modern-metrics,
    .about-modern-feature-grid,
    .about-modern-value-grid,
    .about-modern-timeline {
        grid-template-columns: 1fr;
    }

    .about-modern-process article {
        grid-template-columns: 1fr;
    }

    .about-modern-process article span {
        grid-row: auto;
    }

    .about-modern-copy-panel,
    .about-modern-cooperation {
        padding: 26px;
    }
}

@media (max-width: 640px) {
    .about-modern-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-modern-metrics div {
        min-height: 94px;
        padding: 18px;
    }

    .about-modern-metrics strong {
        font-size: 28px;
    }
}

/* About page copied from Website 3 */
body.page-about-us .about-story {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 70px;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(246, 250, 252, 0.98) 0%, rgba(246, 250, 252, 0.94) 34%, rgba(246, 250, 252, 0.46) 58%, rgba(246, 250, 252, 0.08) 100%),
        var(--about-story-bg-image, url("../images/about-who-lab.png")) center / cover no-repeat;
    box-shadow: 0 22px 54px rgba(16, 38, 56, 0.09);
}

body.page-about-us .about-story-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 20px;
    max-width: 610px;
}

body.page-about-us .about-story .section-heading {
    max-width: 560px;
    margin-bottom: 0;
}

body.page-about-us .about-story .section-heading h2 {
    margin-bottom: 0;
}

body.page-about-us .story-content {
    display: grid;
    gap: 18px;
    max-width: 600px;
}

body.page-about-us .story-content p {
    margin: 0;
    color: var(--muted);
}

body.page-about-us .story-content .story-lead {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.75;
}

body.page-about-us .story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 4px 0;
}

body.page-about-us .story-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(7, 150, 143, 0.18);
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

body.page-about-us .history-section {
    position: relative;
    grid-template-columns: minmax(320px, 430px) minmax(520px, 1fr);
    align-items: center;
    gap: 40px;
    overflow: hidden;
    min-height: 560px;
    padding: 72px;
    border: 1px solid rgba(213, 228, 233, 0.88);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(246, 250, 252, 0.08) 0%, rgba(246, 250, 252, 0.34) 36%, rgba(246, 250, 252, 0.92) 66%, rgba(246, 250, 252, 0.98) 100%);
    box-shadow: 0 22px 54px rgba(16, 38, 56, 0.09);
}

body.page-about-us .history-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--about-history-bg-image, url("../images/about-history-bg-v2.png")) left center / cover no-repeat;
    opacity: 0.98;
}

body.page-about-us .history-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(246, 250, 252, 0.62) 0%, rgba(246, 250, 252, 0.56) 34%, rgba(246, 250, 252, 0.28) 58%, rgba(246, 250, 252, 0.78) 100%);
    pointer-events: none;
}

body.page-about-us .history-copy {
    position: relative;
    z-index: 2;
    grid-column: 1;
    min-width: 0;
}

body.page-about-us .history-copy h2 {
    max-width: 420px;
}

body.page-about-us .history-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 24px;
}

body.page-about-us .history-year-nav {
    display: grid;
    gap: 10px;
    max-width: 340px;
}

body.page-about-us .history-year-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 20px;
    border: 1px solid rgba(213, 228, 233, 0.92);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.9);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.page-about-us .history-year-button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

body.page-about-us .history-year-button:hover,
body.page-about-us .history-year-button.is-active {
    border-color: rgba(7, 150, 143, 0.32);
    color: var(--teal-dark);
    background: #fff;
    transform: translateX(4px);
}

body.page-about-us .history-panel {
    position: relative;
    z-index: 2;
    grid-column: 2;
    min-width: 0;
    padding: 40px 42px 34px;
    border: 1px solid rgba(213, 228, 233, 0.92);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 150, 143, 0.08), rgba(36, 107, 175, 0.06) 48%, rgba(255, 255, 255, 0) 78%),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 34px rgba(16, 38, 56, 0.065);
    backdrop-filter: blur(10px);
}

body.page-about-us .history-panel::before {
    content: "";
    position: absolute;
    top: 34px;
    right: 34px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(7, 150, 143, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

body.page-about-us .history-timeline {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 280px;
    padding: 0;
    border: 0;
    background: transparent;
    scroll-behavior: smooth;
}

body.page-about-us .history-item {
    grid-area: 1 / 1;
    display: grid;
    align-content: start;
    gap: 18px;
    max-width: 560px;
    padding-right: 30px;
    opacity: 0;
    transform: translate3d(22px, 0, 0);
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms ease;
}

body.page-about-us .history-item.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

body.page-about-us .history-item::before {
    content: "";
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: var(--teal);
}

body.page-about-us .history-item strong {
    color: var(--teal-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
}

body.page-about-us .history-item span {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.9;
}

body.page-about-us .history-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

body.page-about-us .history-nav {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(213, 228, 233, 0.95);
    border-radius: 50%;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.88);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

body.page-about-us .history-nav:hover {
    border-color: rgba(7, 150, 143, 0.38);
    color: var(--teal);
    background: #fff;
}

body.page-about-us .history-nav:disabled {
    cursor: default;
    opacity: 0.42;
}

body.page-about-us .history-dots {
    display: flex;
    align-items: center;
    gap: 0;
    height: 1px;
    background: rgba(101, 116, 130, 0.22);
}

body.page-about-us .history-dot {
    position: relative;
    flex: 1 1 0;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

body.page-about-us .history-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(101, 116, 130, 0.5);
    box-shadow: 0 0 0 1px rgba(101, 116, 130, 0.2);
    transform: translate(-50%, -50%);
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.page-about-us .history-dot.is-active::before {
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(7, 150, 143, 0.12);
    transform: translate(-50%, -50%) scale(1.18);
}

body.page-about-us .history-timeline.is-dragging {
    cursor: default;
}

@media (max-width: 900px) {
    body.page-about-us .about-story {
        min-height: 0;
        padding: 52px;
        background:
            linear-gradient(90deg, rgba(246, 250, 252, 0.98) 0%, rgba(246, 250, 252, 0.94) 54%, rgba(246, 250, 252, 0.42) 100%),
            var(--about-story-bg-image, url("../images/about-who-lab.png")) 64% center / cover no-repeat;
    }

    body.page-about-us .history-section {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 52px;
        background:
            linear-gradient(180deg, rgba(246, 250, 252, 0.98) 0%, rgba(246, 250, 252, 0.94) 54%, rgba(246, 250, 252, 0.38) 100%),
            var(--about-history-mobile-bg-image, var(--about-history-bg-image, url("../images/about-history-bg.png"))) 62% bottom / cover no-repeat;
    }

    body.page-about-us .history-copy,
    body.page-about-us .history-panel {
        grid-column: 1;
    }

    body.page-about-us .history-year-nav {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-about-us .history-panel {
        padding: 28px;
    }

    body.page-about-us .history-item {
        min-height: 210px;
        padding-right: 0;
    }
}

@media (max-width: 560px) {
    body.page-about-us .about-story {
        padding: 34px 24px 250px;
        background:
            linear-gradient(180deg, rgba(246, 250, 252, 0.98) 0%, rgba(246, 250, 252, 0.95) 58%, rgba(246, 250, 252, 0.2) 100%),
            var(--about-story-bg-image, url("../images/about-who-lab.png")) 72% bottom / auto 270px no-repeat;
    }

    body.page-about-us .story-content .story-lead {
        font-size: 18px;
    }

    body.page-about-us .story-highlights {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.page-about-us .history-section {
        padding: 34px 24px 260px;
        background:
            linear-gradient(180deg, rgba(246, 250, 252, 0.98) 0%, rgba(246, 250, 252, 0.96) 58%, rgba(246, 250, 252, 0.28) 100%),
            var(--about-history-mobile-bg-image, var(--about-history-bg-image, url("../images/about-history-bg.png"))) 72% bottom / auto 280px no-repeat;
    }

    body.page-about-us .history-year-nav {
        grid-template-columns: 1fr 1fr;
    }

    body.page-about-us .history-item {
        gap: 14px;
    }

    body.page-about-us .history-item strong {
        font-size: 30px;
    }

    body.page-about-us .history-item span {
        font-size: 15px;
    }

    body.page-about-us .history-controls {
        gap: 12px;
    }

    body.page-about-us .history-nav {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
}

/* Case video controls: draggable custom progress bar */
.case-custom-video {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.case-custom-video video {
    display: block;
    width: 100%;
    cursor: pointer;
}

.case-video-controls {
    display: grid;
    grid-template-columns: auto auto minmax(120px, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(205, 224, 232, 0.95);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f4fafb);
    box-shadow: 0 14px 34px rgba(16, 38, 56, 0.08);
}

.case-video-play,
.case-video-mute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--teal);
    font-weight: 850;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.case-video-mute {
    min-width: 54px;
    color: var(--teal-dark);
    background: rgba(222, 244, 244, 0.92);
}

.case-video-play:hover,
.case-video-mute:hover {
    transform: translateY(-1px);
}

.case-video-play:hover {
    background: var(--teal-dark);
}

.case-video-mute:hover {
    background: rgba(198, 235, 235, 0.96);
}

.case-video-time {
    min-width: 44px;
    color: #526a78;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.case-video-progress-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.case-video-progress {
    --video-progress: 0%;
    width: 100%;
    height: 28px;
    min-width: 0;
    margin: 0;
    border-radius: 999px;
    background:
        linear-gradient(90deg, var(--teal) var(--video-progress), rgba(205, 224, 232, 0.88) var(--video-progress));
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.case-video-progress::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: transparent;
}

.case-video-progress::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -6px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 6px 16px rgba(11, 143, 138, 0.34);
    appearance: none;
    -webkit-appearance: none;
}

.case-video-progress::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: transparent;
}

.case-video-progress::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 6px 16px rgba(11, 143, 138, 0.34);
}

.case-video-progress:focus-visible {
    box-shadow: 0 0 0 4px rgba(11, 143, 138, 0.14);
}

@media (max-width: 680px) {
    .case-video-controls {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .case-video-current,
    .case-video-duration {
        display: none;
    }

    .case-video-progress {
        height: 34px;
    }
}

/* Insights page hero: single-column after removing the side card */
.page-insights .sub-hero.simple-hero {
    grid-template-columns: minmax(0, 820px);
    justify-content: start;
}

.page-insights .sub-hero.simple-hero > div:first-child {
    max-width: 820px;
}

/* Website 1 footer copy */
.site-footer.footer-dark {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 54px 0 28px;
    background: #12303a;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer.footer-dark .page-inner {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}

.site-footer.footer-dark .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 0.6fr 1fr;
    gap: 42px;
    align-items: start;
}

.site-footer.footer-dark .footer-contact {
    display: block;
    justify-items: start;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.site-footer.footer-dark .footer-contact > * {
    width: 100%;
}

.site-footer.footer-dark img {
    display: block;
    width: 148px;
    height: auto;
    margin: 0 0 18px;
}

.site-footer.footer-dark p,
.site-footer.footer-dark span,
.site-footer.footer-dark a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 800;
}

.site-footer.footer-dark p {
    max-width: 440px;
    margin: 0;
}

.site-footer.footer-dark h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
}

.site-footer.footer-dark h2::after {
    content: none;
}

.site-footer.footer-dark a,
.site-footer.footer-dark span {
    display: block;
    margin-top: 8px;
}

.site-footer.footer-dark a:hover {
    color: #fff;
}

.site-footer.footer-dark .legal-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.site-footer.footer-dark .legal-row span,
.site-footer.footer-dark .legal-row a {
    margin-top: 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-footer.footer-dark .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer.footer-dark {
        padding: 44px 0 32px;
    }

    .site-footer.footer-dark .page-inner {
        width: min(calc(100% - 28px), 1180px);
    }

    .site-footer.footer-dark .legal-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* News page: reference-style press release list */
.page-news main {
    background: #fff;
}

.news-reference-page {
    min-height: calc(100vh - 90px);
    padding: 64px 0 96px;
    background: #fff;
}

.news-reference-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.news-subscribe-strip h1 {
    margin: 0 0 28px;
    color: #111;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 850;
}

.news-subscribe-row {
    display: grid;
    grid-template-columns: 64px minmax(160px, 0.42fr) minmax(0, 1fr) 42px;
    gap: 24px;
    align-items: center;
    min-height: 108px;
    padding: 28px 0;
    border-top: 1px solid #c7cdd2;
    color: #111;
}

.news-subscribe-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-subscribe-logo img {
    display: block;
    width: 54px;
    height: auto;
}

.news-subscribe-row strong {
    color: #111;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.news-subscribe-row > span:not(.news-subscribe-logo) {
    color: #111;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
}

.news-subscribe-row b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: #ff3b36;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    transition: transform 160ms ease, background 160ms ease;
}

.news-subscribe-row:hover b {
    background: #e8302b;
    transform: translateX(4px);
}

.news-release-list {
    padding-top: 118px;
}

.news-release-list h2 {
    margin: 0 0 42px;
    color: #111;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.news-release-items {
    display: grid;
    gap: 38px;
}

.yagu-list-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 36px 0 0;
}

.yagu-list-pagination a,
.yagu-list-pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 106, 190, 0.22);
    border-radius: 6px;
    padding: 0 12px;
    background: #ffffff;
    color: #163b67;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.yagu-list-pagination a:hover,
.yagu-list-pagination a:focus-visible {
    border-color: #0b8f91;
    color: #067c7e;
    outline: none;
}

.yagu-list-pagination span[aria-current="page"] {
    border-color: #0b8f91;
    background: #0b8f91;
    color: #ffffff;
}

.news-release-item {
    display: grid;
    grid-template-columns: 246px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    color: #111;
}

.news-release-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1.78;
    object-fit: cover;
    background: #e8eef1;
}

.news-release-copy {
    display: grid;
    gap: 7px;
    padding-top: 0;
}

.news-release-copy h3 {
    margin: 0;
    color: #111;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: 0;
}

.news-release-copy p {
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

.news-release-copy .news-release-meta {
    color: #111;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.news-release-copy span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 2px;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.news-release-item:hover h3 {
    color: var(--teal-dark);
}

@media (max-width: 860px) {
    .news-subscribe-row {
        grid-template-columns: 52px 1fr 34px;
        gap: 16px;
    }

    .news-subscribe-row > span:not(.news-subscribe-logo) {
        grid-column: 2 / 3;
    }

    .news-subscribe-row b {
        grid-row: 1 / span 2;
        grid-column: 3;
    }

    .news-release-list {
        padding-top: 74px;
    }

    .news-release-item {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 22px;
    }
}

@media (max-width: 620px) {
    .news-reference-page {
        padding: 44px 0 72px;
    }

    .news-reference-inner {
        width: min(100% - 28px, 1120px);
    }

    .news-subscribe-strip h1 {
        font-size: 21px;
    }

    .news-subscribe-row {
        grid-template-columns: 46px 1fr 34px;
        min-height: 0;
        padding: 22px 0;
    }

    .news-subscribe-logo img {
        width: 44px;
    }

    .news-subscribe-row strong {
        font-size: 30px;
    }

    .news-release-list h2 {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .news-release-items {
        gap: 34px;
    }

    .news-release-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-release-copy h3 {
        font-size: 22px;
    }
}

/* News page visual refresh: richer medical palette and OFL font stack */
.page-news main {
    background:
        radial-gradient(circle at 10% 12%, rgba(181, 225, 232, 0.32), transparent 28%),
        radial-gradient(circle at 88% 22%, rgba(240, 180, 95, 0.14), transparent 24%),
        linear-gradient(180deg, #fbfdfe 0%, #f3f9fb 58%, #ffffff 100%);
}

.news-reference-page {
    background: transparent;
    font-family: var(--font-sans);
}

.news-reference-inner {
    width: min(1140px, calc(100% - 56px));
}

.news-subscribe-strip h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #12303a;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 780;
}

.news-subscribe-strip h1::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #0b9a96;
    box-shadow: 11px 0 0 #47b8d5, 0 11px 0 #f0a64d;
    transform: translateY(-3px);
}

.news-subscribe-row {
    padding: 30px 28px;
    border: 1px solid rgba(167, 197, 208, 0.72);
    border-left: 4px solid #0b9a96;
    border-radius: 8px;
    color: #14313d;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 250, 0.86)),
        #fff;
    box-shadow: 0 18px 44px rgba(18, 48, 58, 0.08);
}

.news-subscribe-logo {
    justify-content: flex-start;
}

.news-subscribe-row strong {
    color: #102634;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 850;
}

.news-subscribe-row > span:not(.news-subscribe-logo) {
    color: #31505f;
    font-size: 16px;
    font-weight: 650;
}

.news-subscribe-row b {
    width: 38px;
    height: 38px;
    background: #ee5d3f;
    box-shadow: 0 12px 26px rgba(238, 93, 63, 0.24);
}

.news-subscribe-row:hover b {
    background: #d94c32;
}

.news-release-list h2 {
    color: #102634;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 850;
}

.news-release-list h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b9a96, #47b8d5 58%, #f0a64d);
}

.news-reference-page .news-release-list {
    padding-top: 16px;
}

/* Footer copied from the provided reference */
.site-footer.footer-dark {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: #202529;
    color: #f7fbff;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.site-footer.footer-dark .footer-inner {
    width: min(1064px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 48px;
}

.site-footer.footer-dark .footer-main {
    display: grid;
    grid-template-columns: 270px 190px minmax(360px, 1fr);
    gap: 92px;
    align-items: start;
}

.site-footer.footer-dark .footer-block h2 {
    position: relative;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.site-footer.footer-dark .footer-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #22aee6;
}

.site-footer.footer-dark .footer-contact-list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer.footer-dark .footer-contact-list li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: #f4f8fb;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.site-footer.footer-dark .footer-contact-icon {
    display: inline-grid;
    width: 18px;
    min-height: 23px;
    place-items: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

.site-footer.footer-dark a,
.site-footer.footer-dark span {
    color: #f4f8fb;
    text-decoration: none;
}

.site-footer.footer-dark a:hover {
    color: #5ed5f2;
}

.site-footer.footer-dark .footer-links nav {
    display: grid;
    gap: 12px;
}

.site-footer.footer-dark .footer-links a {
    width: max-content;
    margin: 0;
    color: #f5f9fc;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 750;
}

.site-footer.footer-dark .footer-about p {
    max-width: 520px;
    margin: 0;
    color: #f4f8fb;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
}

.site-footer.footer-dark .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #f4f8fb;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 760;
}

.site-footer.footer-dark .footer-bottom p,
.site-footer.footer-dark .footer-bottom a {
    margin: 0;
    color: #f4f8fb;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 760;
}

@media (max-width: 1080px) {
    .site-footer.footer-dark .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px 64px;
    }

    .site-footer.footer-dark .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer.footer-dark .footer-inner {
        width: min(100% - 30px, 1064px);
        padding: 42px 0 34px;
    }

    .site-footer.footer-dark .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer.footer-dark .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        margin-top: 34px;
        padding-top: 22px;
    }
}

.news-release-items {
    gap: 30px;
}

.news-release-item {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(190, 215, 224, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(18, 48, 58, 0.065);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-release-item::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, #0b9a96, #47b8d5);
    opacity: 0;
    transition: opacity 180ms ease;
}

.news-release-item:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 154, 150, 0.34);
    box-shadow: 0 24px 54px rgba(18, 48, 58, 0.11);
}

.news-release-item:hover::before {
    opacity: 1;
}

.news-release-item img {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(18, 48, 58, 0.08);
}

.news-release-copy {
    gap: 8px;
    padding-top: 2px;
}

.news-release-copy h3 {
    color: #102634;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 820;
}

.news-release-copy .news-release-meta {
    color: #0b7f7b;
    font-size: 14px;
    font-weight: 760;
}

.news-release-copy p:not(.news-release-meta) {
    color: #415b68;
    font-size: 16px;
    font-weight: 450;
}

.news-release-copy span {
    margin-top: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #0b716e;
    background: rgba(226, 245, 246, 0.92);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0;
}

@media (max-width: 620px) {
    .news-reference-inner {
        width: min(100% - 28px, 1140px);
    }

    .news-subscribe-row {
        padding: 20px 18px;
    }

    .news-subscribe-row strong {
        font-size: 31px;
    }

    .news-release-list h2 {
        font-size: 34px;
    }

    .news-release-item {
        padding: 14px;
    }
}

/* Premium medical blue theme inspired by the certification reference */
:root {
    --bg: #f4f8fd;
    --surface: #ffffff;
    --surface-soft: #eaf3ff;
    --ink: #0d2f62;
    --muted: #5c7191;
    --line: #d5e4f4;
    --teal: #1f6ed4;
    --teal-dark: #083b86;
    --blue: #0f4ea8;
    --warm: #b99455;
    --shadow: 0 28px 80px rgba(13, 47, 98, 0.12);
}

body {
    background:
        linear-gradient(180deg, #f8fbff 0%, #edf5ff 42%, #f8fafc 100%);
    color: var(--ink);
}

.site-header {
    border-color: rgba(177, 204, 232, 0.64);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(25, 71, 122, 0.08);
}

.nav a {
    color: #57708f;
}

.nav a.active,
.nav a.is-active,
.nav a:hover {
    color: var(--teal-dark);
    background: linear-gradient(180deg, #f7fbff, #e7f2ff);
    box-shadow: inset 0 0 0 1px rgba(58, 123, 199, 0.16);
}

.nav-action,
.button.primary,
.quick-form button {
    color: #fff;
    background: linear-gradient(135deg, #0b4ea2 0%, #1b7ee7 100%);
    box-shadow: 0 16px 34px rgba(22, 104, 208, 0.24);
}

.nav-action:hover,
.button.primary:hover,
.quick-form button:hover {
    background: linear-gradient(135deg, #083b86 0%, #1669c7 100%);
    box-shadow: 0 18px 42px rgba(8, 59, 134, 0.28);
}

.button.secondary {
    border-color: rgba(181, 207, 234, 0.86);
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(36, 91, 150, 0.08);
}

.eyebrow,
.smile-panel span,
.text-link,
.hub-grid span,
.patient-cards span {
    color: var(--teal);
}

h1,
h2,
h3 {
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 680px;
}

.page-index .hero {
    width: 100%;
    max-width: none;
    margin-top: -76px;
    padding: 154px max(24px, calc((100vw - 1180px) / 2)) 82px;
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(239, 247, 255, 0.92) 42%, rgba(226, 240, 255, 0.62) 100%);
}

.page-index .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(56, 124, 204, 0.08) 0 1px, transparent 1px 42px),
        linear-gradient(180deg, rgba(56, 124, 204, 0.06) 0 1px, transparent 1px 42px);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 62%);
}

.page-index .hero-copy {
    position: relative;
    z-index: 1;
}

.page-index .hero-copy h1 {
    color: #093478;
    text-shadow: 0 10px 30px rgba(18, 78, 158, 0.08);
}

.page-index .hero-copy p:not(.eyebrow) {
    color: #4f6887;
}

.hero-visual {
    border: 1px solid rgba(181, 207, 234, 0.72);
    background: linear-gradient(180deg, #ffffff, #eef6ff);
    box-shadow: 0 34px 88px rgba(25, 71, 122, 0.16);
}

.page-index .hero-visual {
    z-index: 1;
    overflow: hidden;
    border-color: rgba(196, 214, 234, 0.82);
    background: linear-gradient(135deg, #f9fcff, #e8f3ff);
}

.page-index .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 38%),
        linear-gradient(180deg, transparent 58%, rgba(9, 52, 120, 0.12));
}

.section,
.contact-cta {
    border-color: rgba(213, 228, 244, 0.88);
}

.hub-grid article,
.case-grid article,
.patient-cards article,
.faq-grid article,
.product-highlight-card,
.detail-list article,
.service-table,
.list-panel a,
.timeline div,
.contact-methods div,
.cert-grid span,
.media-card,
.factory-gallery article,
.job-list article,
.qualification-card,
.news-release-item {
    border-color: rgba(199, 218, 239, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9));
    box-shadow: 0 18px 46px rgba(24, 72, 126, 0.07);
}

.hub-grid article:hover,
.case-grid article:hover,
.patient-cards article:hover,
.faq-grid article:hover,
.job-list article:hover,
.media-card:hover,
.factory-gallery article:hover,
.news-release-item:hover {
    border-color: rgba(31, 110, 212, 0.28);
    box-shadow: 0 24px 62px rgba(24, 72, 126, 0.12);
}

.news-detail-page {
    padding: 68px 0 96px;
}

.news-detail-article {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #0b67c7;
    font-weight: 850;
}

.news-back-link::before {
    content: "←";
    font-size: 18px;
}

.news-detail-header {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
}

.news-detail-header h1 {
    max-width: 880px;
    margin: 0;
    color: #0b2742;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.news-detail-header > p:not(.eyebrow) {
    max-width: 820px;
    margin: 0;
    color: #405a6c;
    font-size: 18px;
    line-height: 1.9;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.news-detail-meta time,
.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(35, 121, 218, 0.16);
    border-radius: 999px;
    background: rgba(232, 245, 255, 0.82);
    color: #0c5fae;
    font-size: 14px;
    font-weight: 850;
}

.news-detail-cover {
    margin: 0 0 38px;
    overflow: hidden;
    border: 1px solid rgba(190, 215, 224, 0.82);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 62px rgba(24, 72, 126, 0.1);
}

.news-detail-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.news-detail-body {
    display: grid;
    gap: 20px;
    max-width: 820px;
    color: #263f52;
    font-size: 18px;
    line-height: 2;
}

.news-detail-body p {
    margin: 0;
}

.insight-detail-body {
    gap: 28px;
}

.insight-answer,
.insight-detail-section {
    display: grid;
    gap: 12px;
}

.insight-answer {
    padding: 22px 24px;
    border: 1px solid rgba(199, 218, 239, 0.86);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(226, 244, 255, 0.78), rgba(255, 255, 255, 0.94));
}

.insight-detail-body h2 {
    margin: 0;
    color: #0b376c;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0;
}

.news-detail-related {
    margin-top: 56px;
    padding-top: 30px;
    border-top: 1px solid rgba(190, 215, 224, 0.82);
}

.news-detail-related h2 {
    margin: 0 0 18px;
    color: #0b2742;
    font-family: var(--font-display);
    font-size: 24px;
}

.news-detail-related > div {
    display: grid;
    gap: 12px;
}

.news-detail-related a {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(199, 218, 239, 0.86);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9));
    color: inherit;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.news-detail-related a:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 110, 212, 0.28);
    box-shadow: 0 18px 42px rgba(24, 72, 126, 0.1);
}

.news-detail-related time {
    color: #0b7f7b;
    font-size: 13px;
    font-weight: 820;
}

.news-detail-related strong {
    color: #0b2742;
    font-size: 18px;
}

@media (max-width: 620px) {
    .news-detail-page {
        padding: 44px 0 72px;
    }

    .news-detail-article {
        width: min(100% - 28px, 980px);
    }

    .news-detail-header h1 {
        font-size: 32px;
    }

    .news-detail-header > p:not(.eyebrow),
    .news-detail-body {
        font-size: 16px;
        line-height: 1.85;
    }

    .news-detail-cover img {
        aspect-ratio: 4 / 3;
    }
}

.research-band,
.mission-band {
    border: 1px solid rgba(196, 216, 239, 0.18);
    background:
        linear-gradient(135deg, #092b61 0%, #0c4e9f 52%, #1d75c8 100%);
    box-shadow: 0 28px 78px rgba(9, 43, 97, 0.22);
}

.research-band p,
.research-band .eyebrow,
.mission-band p,
.mission-band .eyebrow {
    color: #dcecff;
}

.research-band h2,
.mission-band h2 {
    color: #ffffff;
}

.cert-grid span {
    color: #0d2f62;
}

.contact-cta {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 244, 255, 0.92));
    box-shadow: 0 28px 78px rgba(25, 71, 122, 0.12);
}

.site-footer.footer-dark {
    background:
        linear-gradient(180deg, #102a42 0%, #0a2036 100%);
}

.site-footer.footer-dark .footer-block h2::after {
    background: #4da3ff;
}

.site-footer.footer-dark a:hover {
    color: #9fd0ff;
}

.research-band {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
    gap: 44px;
    padding: 48px;
    background:
        radial-gradient(circle at 78% 18%, rgba(124, 190, 255, 0.26), transparent 32%),
        linear-gradient(135deg, #082a5b 0%, #0d55a5 54%, #1f79ca 100%);
}

.research-band::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(220, 236, 255, 0.16);
    border-radius: 8px;
    pointer-events: none;
}

.research-band::after {
    content: "R&D";
    position: absolute;
    right: 40px;
    top: 24px;
    color: rgba(255, 255, 255, 0.07);
    font-size: clamp(86px, 13vw, 176px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
}

.research-copy,
.research-media-stack {
    position: relative;
    z-index: 1;
}

.research-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 24px;
    color: rgba(232, 244, 255, 0.88);
}

.research-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 26px;
}

.research-proof-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(220, 236, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.research-proof-list span {
    color: #92ceff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.research-proof-list strong {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
}

.research-proof-list p {
    grid-column: 2;
    margin: 0;
    color: rgba(224, 239, 255, 0.74);
    font-size: 14px;
    line-height: 1.72;
}

.research-media-stack {
    display: grid;
    gap: 12px;
}

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

.research-media-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    margin: 0;
    border: 1px solid rgba(220, 236, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 56px rgba(2, 23, 58, 0.24);
}

.research-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 29, 66, 0.04), rgba(6, 29, 66, 0.38)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 48%);
    pointer-events: none;
}

.research-media-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.03);
}

.research-media-main {
    aspect-ratio: 1.72;
}

.research-media-pair .research-media-card {
    aspect-ratio: 1.18;
}

.research-media-card figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border: 1px solid rgba(220, 236, 255, 0.2);
    border-radius: 8px;
    background: rgba(8, 31, 66, 0.62);
    backdrop-filter: blur(12px);
}

.research-media-card figcaption span {
    color: #9bd1ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.research-media-card figcaption strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
}

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

@media (max-width: 640px) {
    .research-band {
        padding: 30px;
    }

    .research-proof-list,
    .research-media-pair {
        grid-template-columns: 1fr;
    }

    .research-media-main,
    .research-media-pair .research-media-card {
        aspect-ratio: 1.45;
    }
}

@media (max-width: 980px) {
    .page-index .hero {
        margin-top: -68px;
        padding-top: 132px;
    }
}

@media (max-width: 640px) {
    .page-index .hero {
        margin-top: -58px;
        padding: 112px 18px 54px;
    }
}

/* Products page: one-piece R&D hero image */
#products-rd,
#materials,
#design-system,
#smart-root-system {
    scroll-margin-top: 124px;
}

.product-rd-image-hero {
    width: 100%;
    margin: 0 0 76px;
    overflow: hidden;
    background: #edf6ff;
    box-shadow: 0 26px 76px rgba(22, 84, 160, 0.12);
}

.product-rd-image-hero img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1983 / 793;
    object-fit: contain;
    object-position: center;
}

.page-products .product-depth-showcase {
    margin-top: 0;
}

@media (max-width: 700px) {
    .product-rd-image-hero {
        width: min(100% - 28px, 1180px);
        margin: 18px auto 46px;
        border: 1px solid rgba(199, 218, 239, 0.86);
        border-radius: 8px;
    }

    .product-rd-image-hero img {
        height: auto;
        object-fit: contain;
    }
}

/* Design system page: OrthoMind long-form layout from PSD reference */
.page-design-system {
    --eyebrow-icon: "⌬";
    --eyebrow-icon-url: var(--ui-icon-product);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 166, 226, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #eef7fb 46%, #f8fbff 100%);
}

.orthomind-hero,
.orthomind-overview,
.orthomind-values,
.orthomind-application {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.orthomind-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
    align-items: center;
    min-height: 620px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.94) 34%, rgba(248, 252, 255, 0.44) 58%, rgba(248, 252, 255, 0.1) 100%),
        #eaf5ff;
}

.orthomind-hero::before {
    content: "";
    position: absolute;
    inset: auto auto 46px 0;
    width: min(520px, 48vw);
    height: 160px;
    pointer-events: none;
    background:
        repeating-linear-gradient(170deg, rgba(25, 103, 188, 0.18) 0 1px, transparent 1px 10px);
    opacity: 0.34;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
}

.orthomind-hero-copy {
    position: relative;
    z-index: 2;
    padding: 96px 0 96px 20px;
}

.orthomind-hero h1 {
    margin-bottom: 14px;
    color: #082b58;
    font-size: clamp(58px, 7.2vw, 106px);
    font-weight: 400;
    line-height: 0.95;
}

.orthomind-kicker {
    max-width: 460px;
    color: #123d70;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 600;
    line-height: 1.38;
}

.orthomind-hero-copy p:last-child {
    max-width: 500px;
    color: #526e86;
    font-size: 16px;
}

.orthomind-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.orthomind-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.orthomind-overview {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 72px;
    align-items: center;
    padding: 108px 0 76px;
}

.orthomind-section-copy,
.orthomind-center-heading {
    position: relative;
}

.orthomind-watermark {
    position: absolute;
    z-index: 0;
    top: -46px;
    left: 0;
    color: rgba(35, 103, 171, 0.07);
    font-size: clamp(74px, 10vw, 146px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.orthomind-section-copy > *:not(.orthomind-watermark),
.orthomind-center-heading > *:not(.orthomind-watermark) {
    position: relative;
    z-index: 1;
}

.orthomind-section-copy h2,
.orthomind-center-heading h2 {
    color: #092a52;
}

.orthomind-section-copy p:not(.eyebrow) {
    color: #4f667c;
    font-size: 15px;
    line-height: 2;
}

.orthomind-overview-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(159, 197, 222, 0.72);
    border-radius: 8px;
    background: #071a33;
    box-shadow: 0 30px 80px rgba(26, 83, 137, 0.18);
}

.orthomind-overview-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.orthomind-values {
    padding: 72px 0 98px;
}

.orthomind-center-heading {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.orthomind-center-heading .orthomind-watermark {
    left: 50%;
    transform: translateX(-50%);
}

.orthomind-center-heading p:not(.eyebrow) {
    color: #5d7488;
}

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

.orthomind-value-grid article {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    padding: 18px 18px 24px;
    border: 1px solid rgba(190, 212, 230, 0.95);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
    box-shadow: 0 22px 60px rgba(32, 76, 122, 0.09);
}

.orthomind-value-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 6px;
    object-fit: cover;
}

.orthomind-value-grid span {
    display: inline-block;
    margin-bottom: 8px;
    color: #0d65c3;
    font-size: 20px;
    font-weight: 900;
}

.orthomind-value-grid h3 {
    color: #092a52;
    font-size: 24px;
}

.orthomind-value-grid p {
    margin: 0;
    color: #5e7286;
    font-size: 14px;
    line-height: 1.9;
}

.orthomind-application {
    padding: 72px 0 112px;
}

.orthomind-application-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 38px auto 48px;
    border: 1px solid rgba(190, 212, 230, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 72px rgba(32, 76, 122, 0.08);
}

.orthomind-application-row article {
    display: grid;
    min-height: 172px;
    place-items: center;
    gap: 12px;
    padding: 16px 12px;
}

.orthomind-application-row article + article {
    border-left: 1px solid rgba(190, 212, 230, 0.82);
}

.orthomind-application-row span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(35, 103, 171, 0.22);
    border-radius: 6px;
    background: #eef8fb;
    color: #0d65c3;
    font-weight: 900;
}

.orthomind-application-row strong {
    color: #092a52;
}

.orthomind-application-icon {
    display: block;
    width: min(133px, 88%);
    height: auto;
    object-fit: contain;
}

.orthomind-application-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.orthomind-application-detail {
    display: grid;
    gap: 26px;
}

.orthomind-application-detail p {
    margin: 0;
    color: #435b72;
    font-size: 15px;
    line-height: 1.95;
}

.orthomind-application-detail img {
    display: block;
    width: 100%;
    aspect-ratio: 1920 / 1240;
    border: 1px solid rgba(190, 212, 230, 0.95);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 28px 80px rgba(32, 76, 122, 0.1);
}

@media (max-width: 980px) {
    .orthomind-hero {
        grid-template-columns: 1fr;
        min-height: 560px;
    }

    .orthomind-hero-copy {
        padding: 78px 20px;
    }

    .orthomind-hero-media img {
        object-position: 68% center;
        opacity: 0.82;
    }

    .orthomind-overview,
    .orthomind-value-grid {
        grid-template-columns: 1fr;
    }

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

    .orthomind-application-row article + article {
        border-left: 0;
    }

    .orthomind-application-row article {
        border-top: 1px solid rgba(190, 212, 230, 0.82);
    }

    .orthomind-application-row article:nth-child(-n + 2) {
        border-top: 0;
    }
}

@media (max-width: 620px) {
    .orthomind-hero,
    .orthomind-overview,
    .orthomind-values,
    .orthomind-application {
        width: min(100% - 28px, 1180px);
    }

    .orthomind-hero {
        min-height: 510px;
        margin-top: 16px;
        border-radius: 8px;
    }

    .orthomind-hero h1 {
        font-size: 52px;
    }

    .orthomind-kicker {
        font-size: 22px;
    }

    .orthomind-overview,
    .orthomind-values,
    .orthomind-application {
        padding-top: 62px;
        padding-bottom: 64px;
    }

    .orthomind-watermark {
        max-width: 100%;
        overflow: hidden;
        font-size: 64px;
    }

    .orthomind-value-grid article {
        min-height: 0;
    }

    .orthomind-application-row {
        grid-template-columns: 1fr;
    }

    .orthomind-application-row article:nth-child(-n + 2) {
        border-top: 1px solid rgba(190, 212, 230, 0.82);
    }

    .orthomind-application-row article:first-child {
        border-top: 0;
    }
}

/* Technology exploration detail pages */
.page-materials,
.page-smart-root-system {
    background:
        radial-gradient(circle at 0 8%, rgba(205, 234, 247, 0.78), transparent 32%),
        linear-gradient(180deg, #f8fcff 0%, #ffffff 42%, #f5fbff 100%);
}

.tech-explore-hero {
    position: relative;
    display: grid;
    width: min(100%, 100%);
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: #edf7ff;
}

.tech-explore-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(248, 253, 255, 0.98) 0%, rgba(248, 253, 255, 0.88) 30%, rgba(248, 253, 255, 0.24) 58%, rgba(248, 253, 255, 0.04) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(214, 235, 248, 0.28));
    pointer-events: none;
}

.material-tech-hero::before {
    background:
        linear-gradient(90deg, rgba(5, 28, 54, 0.9) 0%, rgba(14, 57, 92, 0.72) 28%, rgba(13, 65, 102, 0.25) 58%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 56, 114, 0.14), rgba(0, 106, 198, 0.12));
}

.tech-hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
}

.tech-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.material-tech-hero .tech-hero-visual img {
    object-position: 62% center;
}

.smart-root-hero .tech-hero-visual img {
    object-position: 72% center;
}

.tech-hero-copy {
    position: relative;
    z-index: 2;
    width: min(100% - 56px, 1240px);
    margin: 0 auto;
    padding: 116px 0 96px;
}

.tech-hero-copy > * {
    max-width: 640px;
}

.tech-hero-copy h1 {
    margin: 14px 0 0;
    color: #0d2e56;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.8vw, 88px);
    line-height: 1.04;
    letter-spacing: 0;
}

.material-tech-hero .tech-hero-copy h1,
.material-tech-hero .tech-hero-kicker,
.material-tech-hero .tech-hero-copy > p:not(.eyebrow) {
    color: #f5fbff;
}

.tech-hero-kicker {
    margin: 22px 0 0;
    color: #155fbd;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1.38;
}

.tech-hero-copy > p:not(.eyebrow):not(.tech-hero-kicker) {
    margin-top: 22px;
    color: #395a79;
    font-size: 16px;
    line-height: 1.95;
}

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

.tech-hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid rgba(43, 134, 219, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #0e5fb5;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(35, 95, 145, 0.12);
}

.material-tech-hero .tech-hero-tags span {
    border-color: rgba(147, 213, 255, 0.42);
    background: rgba(17, 106, 191, 0.44);
    color: #ffffff;
    box-shadow: none;
}

.tech-centered-copy {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.tech-centered-copy h2,
.tech-split-copy h2,
.tech-dark-end h2 {
    margin: 12px 0 0;
    color: #0b2d57;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    letter-spacing: 0;
}

.tech-centered-copy p:not(.eyebrow),
.tech-split-copy p:not(.eyebrow) {
    margin: 18px 0 0;
    color: #48677f;
    font-size: 16px;
    line-height: 1.95;
}

.tech-split-copy {
    position: relative;
    z-index: 1;
}

.tech-proof-band {
    padding-top: 92px;
    padding-bottom: 96px;
}

.tech-proof-visual {
    width: min(100%, 860px);
    margin: 42px auto 0;
    overflow: hidden;
    border: 1px solid rgba(186, 215, 233, 0.95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(32, 83, 127, 0.12);
}

.tech-proof-visual img,
.tech-feature-visual img,
.smart-positioning figure img,
.material-performance-layout figure img,
.tech-card-grid img,
.material-upgrade-list img {
    display: block;
    width: 100%;
}

.material-upgrade-section {
    padding-top: 84px;
    padding-bottom: 96px;
}

.material-upgrade-list {
    display: grid;
    gap: 24px;
    width: min(100%, 960px);
    margin: 48px auto 0;
}

.material-upgrade-list article {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    min-height: 188px;
    padding: 18px;
    border: 1px solid rgba(180, 211, 233, 0.86);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.92));
    box-shadow: 0 18px 48px rgba(23, 78, 128, 0.1);
}

.material-upgrade-list article:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 160px;
}

.material-upgrade-list article:nth-child(even) img {
    order: 2;
}

.material-upgrade-list img {
    width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    object-fit: cover;
}

.material-upgrade-list span,
.tech-number-heading span {
    color: #0c74d0;
    font-size: 18px;
    font-weight: 900;
}

.material-upgrade-list h3,
.tech-card-grid h4 {
    margin: 8px 0 0;
    color: #0d2e56;
    font-size: 22px;
    line-height: 1.35;
}

.material-upgrade-list p,
.tech-card-grid p,
.tech-metric-list span {
    margin: 10px 0 0;
    color: #536f84;
    font-size: 15px;
    line-height: 1.8;
}

.material-performance-section,
.smart-overview,
.smart-positioning,
.smart-capability {
    position: relative;
    padding-top: 92px;
    padding-bottom: 96px;
    border-top: 1px solid rgba(200, 224, 238, 0.82);
}

.material-performance-layout,
.smart-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 54px;
    align-items: center;
}

.material-performance-layout {
    margin-top: 38px;
}

.material-performance-layout figure,
.tech-feature-visual,
.smart-positioning figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(184, 214, 233, 0.92);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(31, 86, 128, 0.13);
}

.material-performance-layout figure img,
.tech-feature-visual img,
.smart-positioning figure img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

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

.tech-metric-list article {
    display: grid;
    gap: 4px;
    padding: 20px 22px;
    border: 1px solid rgba(188, 216, 233, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
}

.tech-metric-list strong {
    color: #0b3770;
    font-size: 20px;
}

.tech-dark-end {
    width: min(100% - 56px, 1240px);
    margin: 0 auto 92px;
    padding: 68px 72px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 80% 15%, rgba(88, 164, 255, 0.38), transparent 32%),
        linear-gradient(135deg, #082442 0%, #0d4f9b 54%, #177bd4 100%);
    color: #fff;
    overflow: hidden;
}

.tech-dark-end h2 {
    max-width: 760px;
    color: #fff;
}

.tech-dark-end p:not(.eyebrow) {
    max-width: 850px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.95;
}

.tech-watermark {
    position: absolute;
    inset: auto auto -20px 0;
    z-index: -1;
    max-width: 100%;
    overflow: hidden;
    color: rgba(32, 92, 148, 0.06);
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 138px);
    font-weight: 900;
    line-height: 0.9;
    white-space: nowrap;
    pointer-events: none;
}

.smart-overview .tech-watermark {
    top: -38px;
    bottom: auto;
}

.smart-positioning {
    text-align: center;
}

.smart-positioning figure {
    width: min(100%, 980px);
    margin: 44px auto 0;
}

.smart-capability {
    padding-bottom: 52px;
}

.smart-capability-block {
    width: min(100%, 1040px);
    margin: 54px auto 0;
}

.tech-number-heading {
    margin-bottom: 24px;
}

.tech-number-heading h3 {
    display: inline;
    margin: 0 0 0 10px;
    color: #0a315f;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.7vw, 40px);
    line-height: 1.2;
}

.tech-number-heading p {
    max-width: 900px;
    margin: 12px 0 0;
    color: #506b82;
    line-height: 1.9;
}

.tech-card-grid {
    display: grid;
    gap: 20px;
}

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

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

.tech-card-grid article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 214, 233, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(21, 76, 128, 0.1);
}

.tech-card-grid img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.tech-card-grid h4,
.tech-card-grid p {
    padding-right: 22px;
    padding-left: 22px;
}

.tech-card-grid p {
    padding-bottom: 22px;
}

@media (max-width: 980px) {
    .tech-explore-hero {
        min-height: 560px;
    }

    .tech-hero-copy {
        width: min(100% - 36px, 1240px);
        padding-top: 84px;
        padding-bottom: 72px;
    }

    .material-performance-layout,
    .smart-overview,
    .tech-card-grid.three,
    .tech-card-grid.two {
        grid-template-columns: 1fr;
    }

    .material-upgrade-list article,
    .material-upgrade-list article:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .material-upgrade-list article:nth-child(even) img {
        order: 0;
    }

    .material-upgrade-list img {
        width: min(100%, 240px);
        height: auto;
        aspect-ratio: 1 / 1;
        justify-self: center;
    }
}

@media (max-width: 620px) {
    .tech-explore-hero {
        min-height: 520px;
    }

    .tech-explore-hero::before,
    .material-tech-hero::before {
        background:
            linear-gradient(180deg, rgba(247, 252, 255, 0.95) 0%, rgba(247, 252, 255, 0.76) 45%, rgba(247, 252, 255, 0.3) 100%);
    }

    .material-tech-hero .tech-hero-copy h1,
    .material-tech-hero .tech-hero-kicker,
    .material-tech-hero .tech-hero-copy > p:not(.eyebrow) {
        color: #0d2e56;
    }

    .material-tech-hero .tech-hero-tags span {
        background: rgba(255, 255, 255, 0.76);
        color: #0e5fb5;
    }

    .tech-hero-copy h1 {
        font-size: 42px;
    }

    .tech-hero-kicker {
        font-size: 22px;
    }

    .tech-proof-band,
    .material-upgrade-section,
    .material-performance-section,
    .smart-overview,
    .smart-positioning,
    .smart-capability {
        padding-top: 64px;
        padding-bottom: 66px;
    }

    .tech-dark-end {
        width: min(100% - 28px, 1240px);
        margin-bottom: 64px;
        padding: 46px 24px;
    }

    .material-upgrade-list h3,
    .tech-metric-list strong {
        font-size: 19px;
    }
}

/* Cases page hero: product-reference style image placement */
.page-cases .handoff-case-hero {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    min-height: clamp(500px, 41vw, 660px);
    margin: 0;
    align-items: center;
    padding: 86px 0 92px;
    background: #eff8ff;
    isolation: isolate;
}

.page-cases .handoff-case-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(247, 252, 255, 0.98) 0%, rgba(247, 252, 255, 0.94) 31%, rgba(247, 252, 255, 0.43) 55%, rgba(247, 252, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(223, 241, 255, 0.34));
}

.case-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
}

.page-cases .case-hero-copy {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.page-cases .handoff-case-hero h1,
.page-cases .handoff-case-hero p:not(.eyebrow) {
    max-width: 560px;
}

.page-cases .handoff-case-hero h1 {
    color: #0d315f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page-cases .handoff-case-hero p:not(.eyebrow) {
    color: #315a78;
}

.page-cases .handoff-case-list {
    padding-top: 78px;
}

@media (max-width: 860px) {
    .page-cases .handoff-case-hero {
        min-height: 520px;
        align-items: flex-start;
        padding-top: 72px;
    }

    .case-hero-bg {
        object-position: 60% center;
    }
}

@media (max-width: 620px) {
    .page-cases .handoff-case-hero {
        min-height: 560px;
        padding: 58px 0 68px;
    }

    .page-cases .handoff-case-hero::before {
        background:
            linear-gradient(180deg, rgba(247, 252, 255, 0.98) 0%, rgba(247, 252, 255, 0.9) 45%, rgba(247, 252, 255, 0.2) 100%);
    }

    .case-hero-bg {
        object-position: 62% center;
    }

    .page-cases .handoff-case-list {
        padding-top: 54px;
    }
}

/* Homepage cases: projected preview from the case center page */
.home-case-projection {
    position: relative;
    overflow: hidden;
    border-top: 0;
    background:
        linear-gradient(180deg, rgba(239, 248, 255, 0.74), rgba(255, 255, 255, 0.96)),
        radial-gradient(circle at 78% 18%, rgba(31, 110, 212, 0.12), transparent 34%);
}

.home-case-head {
    display: flex;
    gap: 28px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 34px;
}

.home-case-head .section-heading {
    margin-bottom: 0;
}

.home-case-head .button {
    flex: 0 0 auto;
}

.home-case-projection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.home-case-projection-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(196, 218, 234, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96) inset,
        0 28px 72px rgba(20, 78, 137, 0.13);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-case-projection-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 110, 212, 0.34);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96) inset,
        0 34px 86px rgba(20, 78, 137, 0.17);
}

.home-case-projection-card img {
    display: block;
    width: 100%;
    height: min(426px, 74vw);
    aspect-ratio: 576 / 426;
    object-fit: cover;
    object-position: center;
    background: #f2f8fc;
}

.home-case-projection-card > div {
    display: grid;
    gap: 13px;
    padding: 26px 28px 30px;
}

.home-case-projection-card h3 {
    margin: 0;
    color: #0d315f;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.16;
    letter-spacing: 0;
}

.home-case-projection-card p:not(.tag-row),
.home-case-projection-card li {
    color: #526f86;
    line-height: 1.78;
}

.home-case-projection-card ul {
    display: grid;
    gap: 7px;
    margin: 2px 0 0;
    padding-left: 18px;
}

@media (max-width: 900px) {
    .home-case-head {
        display: grid;
        gap: 18px;
        align-items: start;
    }

    .home-case-head .button {
        width: fit-content;
    }

    .home-case-projection-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .home-case-projection-card > div {
        padding: 22px;
    }
}

/* Qualifications hero: image-backed first screen with text overlay */
.page-qualifications .qualification-site1-hero {
    display: flex;
    min-height: clamp(620px, 50vw, 780px);
    align-items: center;
    padding: 92px max(24px, calc((100vw - 1180px) / 2)) 96px;
    background:
        linear-gradient(90deg, rgba(247, 252, 255, 0.98) 0%, rgba(247, 252, 255, 0.9) 32%, rgba(247, 252, 255, 0.22) 58%, rgba(247, 252, 255, 0.06) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(232, 243, 255, 0.34)),
        url("../images/qualifications/qualification-hero-certificates.png") center / cover no-repeat;
}

.page-qualifications .qualification-site1-hero::before,
.page-qualifications .qualification-site1-hero::after {
    content: none;
}

.page-qualifications .qualification-site1-inner {
    width: min(620px, 100%);
    max-width: 620px;
}

.page-qualifications .qualification-site1-hero h1 {
    max-width: 620px;
    color: #0d315f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.page-qualifications .qualification-site1-hero p:not(.eyebrow) {
    max-width: 600px;
    color: #315a78;
}

.page-qualifications .qualification-hero-meta span {
    border-color: rgba(31, 110, 212, 0.24);
    background: rgba(255, 255, 255, 0.76);
    color: #0f4ea8;
    backdrop-filter: blur(10px);
}

.page-qualifications .qualification-site1-section {
    padding-top: 66px;
}

@media (max-width: 860px) {
    .page-qualifications .qualification-site1-hero {
        min-height: 560px;
        align-items: flex-start;
        padding-top: 74px;
        background-position: 62% center;
    }
}

@media (max-width: 620px) {
    .page-qualifications .qualification-site1-hero {
        min-height: 590px;
        padding: 56px 20px 64px;
        background:
            linear-gradient(180deg, rgba(247, 252, 255, 0.98) 0%, rgba(247, 252, 255, 0.84) 48%, rgba(247, 252, 255, 0.2) 100%),
            url("../images/qualifications/qualification-hero-certificates.png") 64% center / cover no-repeat;
    }
}

/* Materials page PSD recreation below the preserved hero */
.page-materials main {
    background:
        radial-gradient(circle at 16% 18%, rgba(72, 196, 214, 0.13), transparent 28%),
        radial-gradient(circle at 84% 62%, rgba(22, 98, 204, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fcff 0%, #ffffff 42%, #f2f8ff 100%);
    overflow: hidden;
}

.material-psd-proof,
.material-psd-upgrade,
.material-psd-adaptive,
.material-psd-durability {
    position: relative;
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
    isolation: isolate;
}

.material-psd-proof::before,
.material-psd-upgrade::before,
.material-psd-adaptive::before,
.material-psd-durability::before {
    content: "";
    position: absolute;
    inset: 6% -12% auto;
    height: 280px;
    background:
        linear-gradient(90deg, rgba(22, 98, 204, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 98, 204, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle, #000 0%, transparent 68%);
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}

.material-psd-heading {
    display: grid;
    justify-items: center;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.material-psd-heading span {
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f65c9, #58d7e8);
    box-shadow: 0 0 22px rgba(44, 166, 234, 0.36);
}

.material-psd-heading h2 {
    margin: 0;
    color: #0b2f61;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 900;
}

.material-psd-heading p {
    max-width: 640px;
    margin: 0;
    color: #496b8a;
    font-size: 17px;
    line-height: 1.9;
}

.material-psd-heading.compact {
    margin-bottom: 34px;
}

.material-psd-proof {
    padding: clamp(76px, 9vw, 124px) 0 70px;
}

.material-certificate-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: min(540px, 92%);
    min-height: 430px;
    margin: 0 auto;
}

.material-certificate-stage::before {
    content: "";
    position: absolute;
    inset: 10px 0;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 25%, rgba(214, 236, 255, 0.7) 26% 28%, transparent 29%),
        conic-gradient(from 45deg, transparent 0 18%, rgba(68, 179, 236, 0.32) 18% 20%, transparent 20% 44%, rgba(18, 96, 210, 0.24) 44% 46%, transparent 46% 100%);
    filter: drop-shadow(0 32px 55px rgba(39, 114, 190, 0.15));
    transform: rotate(-8deg);
}

.material-certificate-stage::after {
    content: "";
    position: absolute;
    inset: 12% 15%;
    border: 1px solid rgba(44, 150, 225, 0.24);
    border-radius: 50%;
    transform: rotate(18deg);
}

.material-certificate-stage img {
    position: relative;
    z-index: 1;
    width: min(300px, 72%);
    max-height: 390px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    box-shadow:
        0 34px 68px rgba(13, 55, 102, 0.18),
        0 0 0 1px rgba(44, 150, 225, 0.18);
}

.material-bg-visual {
    position: relative;
    z-index: 1;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.material-img-certificate {
    background-image: url("../images/materials/material-certificate-proof.jpg");
}

.material-img-rebound {
    background-image: url("../images/materials/material-upgrade-clean-01.jpg");
}

.material-img-tear {
    background-image: url("../images/materials/material-upgrade-clean-02.jpg");
}

.material-img-layer-lock {
    background-image: url("../images/materials/material-upgrade-clean-03.jpg");
}

.material-img-corrosion {
    background-image: url("../images/materials/material-upgrade-clean-04.jpg");
}

.material-img-matte {
    background-image: url("../images/materials/material-upgrade-clean-05.jpg");
}

.material-img-balance {
    background-image: url("../images/materials/material-upgrade-clean-06.jpg");
}

.material-img-adaptive {
    background-image: url("../images/materials/material-adaptive-clear.jpg");
}

.material-img-triple-layer {
    background-image: url("../images/materials/material-triple-layer.jpg");
}

.material-img-layered {
    background-image: url("../images/materials/material-layered-structure.jpg");
}

.material-img-layer-model {
    background-image: url("../images/materials/material-layer-model-lab-20260705.png");
}

.material-certificate-visual {
    width: min(300px, 72%);
    aspect-ratio: 639 / 900;
    max-height: 390px;
    border-radius: 6px;
    background-color: #fff;
    background-size: contain;
    box-shadow:
        0 34px 68px rgba(13, 55, 102, 0.18),
        0 0 0 1px rgba(44, 150, 225, 0.18);
}

.material-psd-upgrade {
    padding: 72px 0 74px;
}

.material-psd-upgrade-list {
    display: grid;
    gap: 22px;
}

.material-psd-upgrade-card {
    position: relative;
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    min-height: 214px;
    padding: 24px 38px 24px 24px;
    border: 1px solid rgba(45, 143, 218, 0.25);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.82)),
        linear-gradient(90deg, rgba(38, 132, 220, 0.08), transparent);
    box-shadow: 0 22px 50px rgba(26, 87, 157, 0.09);
}

.material-psd-upgrade-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(88, 196, 232, 0.16);
    border-radius: 6px;
    pointer-events: none;
}

.material-psd-upgrade-card::after {
    content: "";
    position: absolute;
    left: 112px;
    bottom: -30px;
    width: 2px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18, 102, 209, 0.4), rgba(88, 215, 232, 0));
}

.material-psd-upgrade-card:last-child::after {
    content: none;
}

.material-psd-upgrade-card.reverse {
    grid-template-columns: minmax(0, 1fr) 178px;
    padding: 24px 24px 24px 38px;
}

.material-psd-upgrade-card.reverse img {
    order: 2;
}

.material-psd-upgrade-card.reverse .material-upgrade-visual {
    order: 2;
}

.material-psd-upgrade-card.reverse::after {
    left: auto;
    right: 112px;
}

.material-psd-upgrade-card img {
    width: 154px;
    aspect-ratio: 1;
    justify-self: center;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 32px rgba(16, 77, 142, 0.14);
}

.material-upgrade-visual {
    width: 154px;
    aspect-ratio: 1;
    justify-self: center;
    border-radius: 8px;
    background-color: #062858;
    background-size: contain;
    box-shadow: 0 18px 32px rgba(16, 77, 142, 0.14);
}

.material-psd-upgrade-card em {
    display: block;
    margin-bottom: 10px;
    color: #0d7ce3;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
}

.material-psd-upgrade-card h3 {
    margin: 0 0 12px;
    color: #092a55;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.25;
}

.material-psd-upgrade-card p {
    max-width: 660px;
    margin: 0;
    color: #4f6f8d;
    font-size: 16px;
    line-height: 1.85;
}

.material-psd-adaptive {
    padding: clamp(62px, 7vw, 86px) clamp(22px, 4vw, 64px) clamp(86px, 9vw, 126px);
}

.material-adaptive-poster {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(109, 178, 225, 0.3);
    border-radius: 18px;
    background:
        radial-gradient(circle at 42% 34%, rgba(107, 217, 232, 0.16), transparent 22%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.9) 52%, rgba(255, 255, 255, 0.96));
    box-shadow: 0 36px 92px rgba(33, 104, 170, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.material-adaptive-poster::before {
    content: "";
    position: absolute;
    inset: auto auto -22% -18%;
    width: 58%;
    height: 58%;
    background:
        repeating-radial-gradient(ellipse at 20% 80%, rgba(70, 174, 232, 0.13) 0 2px, transparent 3px 13px);
    opacity: 0.7;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

.material-adaptive-poster::after {
    content: "";
    position: relative;
    display: block;
    width: 52%;
    height: 300px;
    margin: -300px -8% 0 auto;
    pointer-events: none;
    background:
        repeating-radial-gradient(ellipse at 100% 50%, rgba(75, 164, 223, 0.12) 0 2px, transparent 3px 14px);
    opacity: 0.58;
}

.material-adaptive-chip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 26px;
    width: min(640px, 100%);
    margin: 28px auto 0;
    padding: 18px 34px;
    border: 1px solid rgba(91, 169, 224, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(28, 99, 169, 0.08);
}

.material-adaptive-chip-visual {
    position: relative;
    width: 170px;
    height: 96px;
    justify-self: center;
    background: #fff url("../images/materials/material-adaptive-layer-sheet-wx-20260706.png") center / contain no-repeat;
    filter: none;
    box-shadow: none;
}

.material-adaptive-chip-visual::before,
.material-adaptive-chip-visual::after {
    content: none;
    display: none;
}

.material-adaptive-chip strong {
    display: block;
    margin-bottom: 6px;
    color: #0b3b78;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 900;
}

.material-adaptive-chip span {
    color: #547190;
    font-size: 15px;
    line-height: 1.75;
}

.material-adaptive-stage {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    min-height: clamp(420px, 48vw, 570px);
    margin: clamp(42px, 6vw, 72px) auto 0;
}

.material-adaptive-main-figure {
    margin: 0;
    display: flex;
    justify-content: center;
}

.material-adaptive-main-figure img {
    display: block;
    width: min(620px, 82%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(61, 154, 206, 0.18));
}

.material-adaptive-callout {
    position: absolute;
    max-width: 226px;
    color: #0a3671;
    text-align: left;
}

.material-adaptive-callout strong {
    display: block;
    color: #0b3b78;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1.12;
}

.material-adaptive-callout strong::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin: 7px 0 8px;
    background: linear-gradient(90deg, #0b3b78, rgba(54, 172, 225, 0.18));
}

.material-adaptive-callout p {
    margin: 0;
    color: #5d7694;
    font-size: 15px;
    line-height: 1.7;
}

.adaptive-callout-left {
    left: 5%;
    top: 18%;
}

.adaptive-callout-right {
    right: 4%;
    top: 34%;
}

.adaptive-callout-center {
    left: 42%;
    bottom: 2%;
}

.material-adaptive-subheading {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    margin: clamp(72px, 8vw, 104px) auto 0;
    text-align: center;
}

.material-adaptive-subheading span {
    display: block;
    width: 78px;
    height: 3px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, #0d3e79, #2ba9e2);
}

.material-adaptive-subheading h2 {
    margin: 0;
    color: #092f63;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: 0;
}

.material-adaptive-durability {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(18px, 5vw, 70px);
    width: min(920px, 100%);
    margin: clamp(24px, 4vw, 42px) auto 0;
    align-items: start;
}

.material-durability-cutout,
.material-durability-caption {
    margin: 0;
}

.material-durability-cutout img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(63, 160, 210, 0.16));
}

.material-durability-cutout-left {
    width: min(430px, 100%);
    max-width: 430px;
    justify-self: end;
}

.material-durability-cutout-right {
    width: min(560px, 100%);
    max-width: 560px;
    justify-self: start;
    margin-top: 250px;
}

.material-durability-caption {
    max-width: 270px;
    color: #0b3b78;
}

.material-durability-caption-left {
    grid-column: 1;
    margin: -68px 0 0 42px;
}

.material-durability-caption-right {
    grid-column: 2;
    margin: -78px 0 0 70px;
}

.material-durability-caption strong {
    display: block;
    margin-bottom: 8px;
    color: #092f63;
    font-size: clamp(22px, 2.2vw, 31px);
    font-weight: 900;
    line-height: 1.15;
}

.material-durability-caption p {
    margin: 0;
    color: #536f8d;
    font-size: 15px;
    line-height: 1.72;
}

.material-psd-final {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    align-items: center;
    gap: 42px;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 92px;
    padding: clamp(42px, 5vw, 68px);
    overflow: hidden;
    border-radius: 14px;
    background:
        radial-gradient(circle at 84% 22%, rgba(104, 194, 255, 0.28), transparent 34%),
        linear-gradient(135deg, #061f4a 0%, #0a4aa3 47%, #1d83d9 100%);
    color: #fff;
    box-shadow: 0 36px 76px rgba(8, 49, 112, 0.2);
}

.material-psd-final::before {
    content: "";
    position: absolute;
    inset: auto -10% -54% 30%;
    height: 260px;
    background:
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px 12px);
    opacity: 0.35;
    transform: rotate(-8deg);
}

.material-psd-final h2 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 900;
}

.material-psd-final p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(235, 248, 255, 0.86);
    font-size: 16px;
    line-height: 1.9;
}

.material-psd-final .eyebrow {
    color: #a6efff;
}

.material-psd-final figure {
    position: relative;
    z-index: 1;
    margin: 0;
}

.material-psd-final img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
}

.material-final-visual {
    width: 100%;
    min-height: 360px;
    border-radius: 12px;
    background-size: contain;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
}

/* Blend white-background material visuals into one continuous poster tone. */
.material-adaptive-poster {
    background:
        radial-gradient(circle at 50% 28%, rgba(229, 250, 255, 0.62) 0 22%, rgba(252, 254, 255, 0.96) 50%, #ffffff 74%),
        radial-gradient(circle at 13% 71%, rgba(218, 244, 255, 0.22), transparent 38%),
        radial-gradient(circle at 88% 78%, rgba(224, 246, 255, 0.2), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fafdff 48%, #ffffff 100%);
    box-shadow: 0 34px 88px rgba(32, 107, 174, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.94);
}

.material-adaptive-poster::before {
    inset: 3% auto auto -12%;
    width: 66%;
    height: 72%;
    background:
        repeating-radial-gradient(ellipse at 18% 52%, rgba(72, 178, 232, 0.09) 0 1px, transparent 2px 12px);
    opacity: 0.34;
}

.material-adaptive-poster::after {
    width: 70%;
    height: 380px;
    margin: -330px -14% 0 auto;
    background:
        repeating-radial-gradient(ellipse at 100% 54%, rgba(71, 167, 226, 0.08) 0 1px, transparent 2px 13px);
    opacity: 0.32;
}

.material-adaptive-main-figure img,
.material-durability-cutout img {
    mix-blend-mode: normal;
    filter: saturate(1.04) contrast(0.99) brightness(1.02) drop-shadow(0 24px 34px rgba(63, 160, 210, 0.12));
}

@media (max-width: 920px) {
    .material-psd-upgrade-card,
    .material-psd-upgrade-card.reverse {
        grid-template-columns: 136px minmax(0, 1fr);
        padding: 22px;
    }

    .material-psd-upgrade-card.reverse img,
    .material-psd-upgrade-card.reverse .material-upgrade-visual {
        order: 0;
    }

    .material-psd-upgrade-card img,
    .material-upgrade-visual {
        width: 122px;
    }

    .material-adaptive-stage,
    .material-psd-final {
        grid-template-columns: 1fr;
    }

    .material-adaptive-stage li::before {
        content: none;
    }

    .material-durability-gallery,
    .material-durability-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .material-psd-proof,
    .material-psd-upgrade,
    .material-psd-adaptive,
    .material-psd-durability,
    .material-psd-final {
        width: min(100% - 28px, 1120px);
    }

    .material-psd-proof {
        padding-top: 58px;
    }

    .material-certificate-stage {
        min-height: 330px;
    }

    .material-certificate-stage img,
    .material-certificate-visual {
        width: min(230px, 78%);
    }

    .material-psd-heading h2,
    .material-psd-final h2 {
        font-size: 34px;
    }

    .material-psd-upgrade-card,
    .material-psd-upgrade-card.reverse {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .material-psd-upgrade-card::after {
        content: none;
    }

    .material-psd-upgrade-card img,
    .material-upgrade-visual {
        width: min(210px, 100%);
        justify-self: start;
    }

    .material-adaptive-stage {
        padding: 24px;
    }

    .material-adaptive-visual,
    .material-final-visual {
        min-height: 260px;
    }

    .material-adaptive-stage ul {
        gap: 18px;
    }
}

@media (max-width: 920px) {
    .material-adaptive-poster {
        padding-inline: clamp(18px, 5vw, 34px);
    }

    .material-adaptive-poster .material-adaptive-chip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .material-adaptive-poster .material-adaptive-stage {
        display: grid;
        gap: 16px;
        min-height: auto;
        padding: 0;
    }

    .material-adaptive-poster .material-adaptive-main-figure img {
        width: min(680px, 100%);
    }

    .material-adaptive-poster .material-adaptive-callout {
        position: static;
        max-width: none;
        text-align: center;
    }

    .material-adaptive-poster .material-adaptive-callout strong::after {
        margin-inline: auto;
    }

    .material-adaptive-poster .material-adaptive-durability {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .material-adaptive-poster .material-durability-cutout-left,
    .material-adaptive-poster .material-durability-cutout-right {
        justify-self: center;
        max-width: min(620px, 100%);
        margin-top: 0;
    }

    .material-adaptive-poster .material-durability-caption-left,
    .material-adaptive-poster .material-durability-caption-right {
        grid-column: auto;
        max-width: 520px;
        margin: -14px auto 32px;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .material-adaptive-poster {
        border-radius: 14px;
        padding-top: 48px;
        padding-bottom: 70px;
    }

    .material-adaptive-poster::after {
        width: 80%;
        height: 220px;
        margin-top: -220px;
    }

    .material-adaptive-poster .material-adaptive-chip {
        gap: 14px;
        padding: 16px;
    }

    .material-adaptive-poster .material-adaptive-chip-visual {
        width: 118px;
        height: 70px;
    }

    .material-adaptive-poster .material-adaptive-stage {
        margin-top: 36px;
    }

    .material-adaptive-poster .material-adaptive-main-figure img {
        width: 100%;
    }

    .material-adaptive-poster .material-adaptive-callout strong,
    .material-adaptive-poster .material-adaptive-subheading h2,
    .material-adaptive-poster .material-durability-caption strong {
        font-size: 28px;
    }

    .material-adaptive-poster .material-adaptive-subheading {
        margin-top: 54px;
    }

    .material-adaptive-poster .material-durability-caption p {
        font-size: 14px;
    }
}
