:root {
            --orange: #ff6600;
            --orange-soft: #ff8a35;
            --ink: #050506;
            --panel: rgba(18, 18, 21, 0.78);
            --line: rgba(255, 255, 255, 0.14);
            --muted: rgba(255, 255, 255, 0.68);
            --medical: #20d6c7;
            --light-bg: #f5f7f8;
            --light-text: #121820;
        }
@media (max-width: 768px) {
    .medical-hero {
        background-image: url("../../images/medical/bg1-wap.webp") !important;
    }

    .reliability-risk {
        background-image: url("../../images/medical/bg3-wap.webp") !important;
    }
}

        * { box-sizing: border-box; }

        body.medical-page {
            margin: 0;
            background: var(--ink);
            color: #f5f5f7;
            font-family: var(--font-sans);
            overflow-x: hidden;
        }

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

        .medical-nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 30;
            height: 64px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
            backdrop-filter: blur(18px);
        }

        .medical-nav-inner {
            width: min(1440px, calc(100% - 96px));
            height: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 42px;
        }

        .medical-nav img { height: 34px; width: auto; }

        .medical-nav-links {
            display: flex;
            gap: 36px;
            align-items: center;
            font-size: 14px;
        }

        .medical-nav-links a {
            color: rgba(255, 255, 255, 0.86);
            position: relative;
        }

        .medical-nav-links a.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -22px;
            width: 34px;
            height: 2px;
            background: var(--orange);
            transform: translateX(-50%);
        }

        .medical-nav-cta {
            margin-left: auto;
            padding: 8px 28px;
            border-radius: 999px;
            background: var(--orange);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
        }

        .medical-section {
            position: relative;
            padding: clamp(88px, 9vw, 132px);
        }

        .medical-inner {
            width: min(1440px, calc(100% - 96px));
            margin: 0 auto;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--orange-soft);
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .kicker::before {
            content: "";
            width: 36px;
            height: 1px;
            background: rgba(255, 102, 0, 0.8);
        }

        .section-head {
            max-width: 790px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .section-head .kicker { justify-content: center; }

        .section-head h2,
        .story-copy h2,
        .process-copy h2 {
            margin: 22px 0 0;
            font-size: clamp(34px, 3.4vw, 50px);
            line-height: 1.16;
            letter-spacing: 0.04em;
        }

        .section-head p,
        .story-copy p,
        .process-copy p {
            margin: 22px 0 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.95;
            letter-spacing: 0.035em;
        }

        .medical-hero {
            min-height: 760px;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 126px 0 62px;
            background: #f6f8fb url("../../images/medical/bg1.webp") center center / cover no-repeat;
        }

        .medical-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(90deg, rgba(247, 249, 252, 0.18) 0%, rgba(247, 249, 252, 0) 48%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: min(1440px, calc(100% - 96px));
            margin: 0 auto;
            top: -170px;
            left: auto;
            right: auto;
            bottom: auto;
            transform: none;
            text-align: left;
        }

        .hero-copy {
            width: min(650px, 48%);
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 30px;
            color: #ff6600;
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-kicker::before {
            content: "";
            width: 32px;
            height: 2px;
            background: #ff6600;
        }

        .hero-title {
            position: static;
            transform: none;
            max-width: 650px;
            margin: 30px 0 0;
            color: #252b35;
            font-size: clamp(48px, 3.95vw, 66px);
            line-height: 1.23;
            font-weight: 800;
            letter-spacing: 0;
            text-shadow: none;
        }

        .hero-title span { display: block; }
        .hero-title em { color: var(--orange); font-style: normal; }

        .hero-sub {
            max-width: 570px;
            margin: 24px 0 0;
            color: #efefef;
            font-size: clamp(15px, 1.08vw, 18px);
            line-height: 2;
            letter-spacing: 0.01em;
        }

        .hero-metrics {
            display: flex;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            width: 650px;
            max-width: 100%;
            margin-top: 40px;
        }

        .metric-card {
            min-width: 0;
            flex: 1 1 0;
            min-height: 60px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 50px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .metric-card:first-child {
            padding-left: 0;
        }

        .metric-card + .metric-card {
            border-left: 1px solid #cbd1d8;
        }

        .metric-icon {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid #d3d8df;
            border-radius: 50%;
            color: #313945;
            background: rgba(255, 255, 255, 0.58);
        }

        .metric-icon svg {
            width: 26px;
            height: 26px;
        }

        .metric-copy {
            min-width: 0;
        }

        .metric-card b {
            display: block;
            color: #6d7580;
            font-size: 12px;
            line-height: 1.35;
            font-weight: 400;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .metric-card strong {
            display: block;
            margin-top: 9px;
            color: #252b35;
            font-size: clamp(18px, 1.3vw, 22px);
            line-height: 1.1;
            white-space: nowrap;
        }

        .hero-action {
            width: 220px;
            height: 52px;
            margin-top: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px 0 34px;
            border-radius: 4px;
            background: #ff6600;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            box-shadow: 0 12px 30px rgba(255, 102, 0, 0.18);
            transition: transform 0.25s ease, background-color 0.25s ease;
        }

        .hero-action:hover {
            transform: translateY(-2px);
            background: #f25f00;
        }

        .hero-action svg {
            width: 18px;
            height: 18px;
        }

        .story {
            min-height: 820px;
            height: 100vh;
            padding: clamp(80px, 10vh, 142px) 0 24px;
            overflow: hidden;
            color: #252b35;
            background: #f6f8fb url("../../images/medical/bg2.webp") center center / cover no-repeat;
        }

        .story-grid {
            height: 95%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 28px;
        }

        .story-copy {
            position: relative;
            width: min(570px, 45%);
            max-width: none;
            padding-left: 0;
        }

        .story-copy::before {
            display: none;
        }

        .story .kicker {
            gap: 30px;
            color: #ff6600;
            font-size: 13px;
            letter-spacing: 0.08em;
        }

        .story .kicker::before {
            width: 32px;
            height: 2px;
            background: #ff6600;
        }

        .story .story-copy h2 {
            margin: 28px 0 0;
            color: #252b35;
            font-size: clamp(44px, 3.45vw, 50px);
            line-height: 1.25;
            font-weight: 800;
            letter-spacing: 0;
        }

        .story .story-copy h2 span {
            display: block;
        }

        .story .story-copy h2 em {
            color: #ff6600;
            font-style: normal;
        }

        .story .story-copy > p {
            max-width: 500px;
            margin: 20px 0 0;
            color: #626a76;
            font-size: clamp(14px, 1vw, 17px);
            line-height: 1.95;
            letter-spacing: 0.01em;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            width: min(570px, 45%);
            gap: 0;
            align-items: stretch;
        }

        .pain-card,
        .adv-card,
        .case-card,
        .module-card,
        .faq-card,
        .article-card {
            border-radius: 8px;
            border: 1px solid var(--line);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018) 52%),
                var(--panel);
            box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
        }

        .pain-card {
            min-height: 126px;
            padding: 18px 18px 18px 0;
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr);
            grid-template-rows: auto 1fr;
            column-gap: 16px;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            transition: none;
        }

        .pain-card:nth-child(even) {
            padding-left: 28px;
            border-left: 1px solid #dfe3e8;
        }

        .pain-card:nth-child(n + 3) {
            padding-top: 20px;
            border-top: 1px solid #dfe3e8;
        }

        .pain-card:nth-child(4) {
            border-left: 1px solid #dfe3e8;
        }

        .pain-card:hover,
        .adv-card:hover,
        .module-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 102, 0, 0.35);
        }

        .pain-card:hover {
            transform: none;
            border-color: #dfe3e8;
        }

        .card-index {
            grid-column: 1 / -1;
            color: #c3c7cc;
            font-size: 30px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 0;
        }

        .pain-icon {
            width: 52px;
            height: 52px;
            margin-top: 12px;
            display: grid;
            place-items: center;
            border: 1px solid #d3d8df;
            border-radius: 50%;
            color: #303844;
            background: rgba(255, 255, 255, 0.66);
        }

        .pain-icon svg {
            width: 27px;
            height: 27px;
        }

        .pain-copy {
            min-width: 0;
            padding-top: 11px;
        }

        .pain-card h3,
        .adv-card h3,
        .case-card h3,
        .module-card h3,
        .faq-card h3 {
            margin: 0;
            color: #fff;
            font-size: 22px;
            line-height: 1.35;
            letter-spacing: 0.06em;
        }

        .story .pain-card h3 {
            color: #252b35;
            font-size: 15px;
            line-height: 1.4;
            letter-spacing: 0;
        }

        .pain-card p,
        .adv-card p,
        .case-card p,
        .module-card p,
        .faq-card p,
        .article-card p {
            margin: 16px 0 0;
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.9;
            letter-spacing: 0.035em;
        }

        .story .pain-card p {
            margin: 7px 0 0;
            color: #7b828c;
            font-size: 12px;
            line-height: 1.55;
            letter-spacing: 0;
        }

        .story-values {
            min-height: 88px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            align-items: center;
            border: 1px solid rgba(203, 209, 217, 0.8);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(14px);
            box-shadow: 0 14px 40px rgba(56, 68, 82, 0.06);
        }

        .story-value {
            min-width: 0;
            padding: 0 28px;
            display: grid;
            grid-template-columns: 48px minmax(0, 1fr);
            gap: 16px;
            align-items: center;
            position: relative;
        }

        .story-value + .story-value::before {
            content: "";
            position: absolute;
            left: -12px;
            top: 56%;
            width: 24px;
            height: 8px;
            border-top: 1px solid #aeb5bd;
            transform: translateY(-50%);
        }

        .story-value + .story-value::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            width: 7px;
            height: 7px;
            border-top: 1px solid #aeb5bd;
            border-right: 1px solid #aeb5bd;
            transform: translateY(-54%) rotate(45deg);
        }

        .story-value-icon {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border: 1px solid #d6dbe1;
            border-radius: 50%;
            color: #303844;
            background: #fff;
        }

        .story-value-icon svg {
            width: 26px;
            height: 26px;
        }

        .story-value > div > strong,
        .story-value > div > span {
            display: block;
        }

        .story-value > div > strong {
            color: #3c444e;
            font-size: 14px;
            line-height: 1.35;
        }

        .story-value > div > span {
            margin-top: 5px;
            color: #8a919a;
            font-size: 11px;
            line-height: 1.45;
            white-space: nowrap;
        }

        .reliability-risk {
            min-height: 820px;
            height: 100vh;
            padding: clamp(112px, 14vh, 138px) 0 42px;
            overflow: hidden;
            color: #252b35;
            background: #f7f8fb url("../../images/medical/bg3.webp") center center / cover no-repeat;
        }

        .risk-inner {
            width: min(1440px, calc(100% - 96px));
            height: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(350px, 0.8fr) minmax(500px, 1.25fr) minmax(330px, 0.75fr);
            align-items: center;
        }

        .risk-copy {
            align-self: start;
            padding-top: clamp(38px, 7vh, 72px);
        }

        .risk-kicker {
            color: #ff6600;
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .risk-copy h2 {
            margin: 32px 0 0;
            color: #252b35;
            font-size: clamp(42px, 3.3vw, 50px);
            line-height: 1.48;
            font-weight: 800;
            letter-spacing: 0;
        }

        .risk-copy h2 span {
            display: block;
        }

        .risk-copy h2 em {
            color: #ff6600;
            font-style: normal;
        }

        .risk-copy p {
            max-width: 420px;
            margin: 20px 0 0;
            color: #707782;
            font-size: clamp(14px, 1vw, 16px);
            line-height: 1.95;
        }

        .risk-detail {
            align-self: end;
            margin-bottom: clamp(40px, 7vh, 72px);
        }

        .risk-detail strong,
        .risk-detail span {
            display: block;
        }

        .risk-detail strong {
            color: #ff6600;
            font-size: 15px;
            line-height: 1.4;
        }

        .risk-detail span {
            margin-top: 10px;
            color: #747b84;
            font-size: 13px;
        }

        .risk-list {
            align-self: center;
            margin-left: 8px;
        }

        .risk-item {
            min-height: 164px;
            display: grid;
            grid-template-columns: 82px minmax(0, 1fr);
            gap: 22px;
            align-items: center;
            padding: 22px 0;
        }

        .risk-item + .risk-item {
            border-top: 1px solid #dfe3e8;
        }

        .risk-icon {
            width: 74px;
            height: 74px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(215, 220, 226, 0.75);
            border-radius: 50%;
            color: #3c444e;
            background: rgba(255, 255, 255, 0.7);
            box-shadow:
                0 0 0 12px rgba(255, 255, 255, 0.32),
                0 10px 30px rgba(66, 77, 90, 0.06);
        }

        .risk-icon svg {
            width: 34px;
            height: 34px;
        }

        .risk-item-copy {
            min-width: 0;
        }

        .risk-index {
            display: block;
            color: #ff6600;
            font-size: 40px;
            line-height: 1;
            font-weight: 500;
        }

        .risk-item h3 {
            margin: 10px 0 0;
            color: #252b35;
            font-size: 22px;
            line-height: 1.35;
        }

        .risk-item p {
            margin: 10px 0 0;
            color: #727985;
            font-size: 14px;
            line-height: 1.75;
        }

        .process {
            min-height: 820px;
            height: 100vh;
            padding: clamp(15px, 0vh, 20px) 0 28px;
            overflow: hidden;
            color: #252b35;
            background: #f7f8fb url("../../images/medical/bg4.webp") center center / cover no-repeat;
        }

        .process-inner {
            position: relative;
            height: 100%;
        }

        .process-copy {
            position: relative;
            z-index: 3;
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .process .kicker {
            gap: 22px;
            color: #ff6600;
            font-size: 13px;
            letter-spacing: 0.08em;
        }

        .process .kicker::after {
            content: "";
            width: 32px;
            height: 2px;
            background: #ff6600;
        }

        .process-copy h2 {
            margin: 22px 0 0;
            color: #252b35;
            font-size: clamp(42px, 3.4vw, 58px);
            line-height: 1.25;
            font-weight: 800;
            letter-spacing: 0;
        }

        .process-copy h2 em {
            color: #ff6600;
            font-style: normal;
        }

        .process-copy p {
            margin: 14px auto 0;
            color: #747b85;
            font-size: 15px;
            line-height: 1.75;
        }

        .process-stage {
            position: absolute;
            inset: 164px 0 0;
        }

        .process-orbit {
            position: absolute;
            left: 50%;
            top: 45%;
            width: min(780px, 58vw);
            height: min(390px, 37vw);
            border: 7px solid rgba(223, 226, 231, 0.68);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .process-orbit::before {
            content: "";
            position: absolute;
            inset: 30px 90px;
            border: 1px solid rgba(222, 226, 231, 0.85);
            border-radius: 50%;
        }

        .process-orbit-dot {
            position: absolute;
            width: 13px;
            height: 13px;
            border: 4px solid rgba(255, 102, 0, 0.24);
            border-radius: 50%;
            background: #ff6600;
            box-sizing: content-box;
        }

        .process-orbit-dot:nth-child(1) { left: 24px; top: 25%; }
        .process-orbit-dot:nth-child(2) { right: 134px; top: 7%; }
        .process-orbit-dot:nth-child(3) { left: 15%; bottom: 32px; }
        .process-orbit-dot:nth-child(4) { right: 12%; bottom: 45px; }

        .process-list {
            position: absolute;
            inset: 0;
        }

        .process-step {
            position: absolute;
            width: 310px;
            min-height: 110px;
            display: grid;
            grid-template-columns: 112px minmax(0, 1fr);
            align-items: center;
            gap: 20px;
            color: #252b35;
        }

        .process-step:nth-child(1) { left: 72px; top: 12%; }
        .process-step:nth-child(2) { right: 72px; top: 12%; }
        .process-step:nth-child(3) { right: 12px; top: 55%; }
        .process-step:nth-child(4) {
            left: 50%;
            bottom:40px;
            width: 280px;
            display: block;
            text-align: center;
            transform: translateX(-50%);
        }
        .process-step:nth-child(5) { left: 18px; top: 55%; }

        .process-step:nth-child(1),
        .process-step:nth-child(5) {
            grid-template-columns: minmax(0, 1fr) 112px;
            text-align: left;
        }

        .process-step:nth-child(1) .process-node,
        .process-step:nth-child(5) .process-node {
            order: 2;
        }

        .process-node {
            width: 108px;
            height: 108px;
            display: grid;
            place-items: center;
            border: 1px solid #d9dde3;
            border-radius: 50%;
            color: #252d38;
            background: rgba(255, 255, 255, 0.92);
            box-shadow:
                0 0 0 13px rgba(247, 248, 250, 0.84),
                0 12px 34px rgba(69, 79, 91, 0.08);
        }

        .process-node svg {
            width: 50px;
            height: 50px;
        }

        .process-step:nth-child(4) .process-node {
            margin: 0 auto 20px;
        }

        .process-step > div > span {
            display: block;
            margin: 0 0 6px;
            color: #ff6600;
            font-size: 22px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: 0;
        }

        .process-step strong {
            display: block;
            color: #252b35;
            font-size: 21px;
            line-height: 1.35;
            letter-spacing: 0;
        }

        .process-step p {
            margin: 8px 0 0;
            color: #747b85;
            font-size: 13px;
            line-height: 1.6;
        }

        .advantage {
            min-height: 820px;
            height: 100vh;
            padding: clamp(112px, 13vh, 132px) 0 38px;
            overflow: hidden;
            color: #252b35;
            background: #f5f7fa url("../../images/medical/bg5.webp") center center / cover no-repeat;
        }

        .equipment-advantage-inner {
            height: 100%;
            display: flex;
            align-items: flex-start;
        }

        .equipment-advantage-copy {
            width: min(520px, 38%);
        }

        .equipment-advantage .kicker {
            gap: 28px;
            color: #ff6600;
            font-size: 13px;
            letter-spacing: 0.08em;
        }

        .equipment-advantage .kicker::before {
            width: 32px;
            height: 2px;
            background: #ff6600;
        }

        .equipment-advantage-copy h2 {
            margin: 34px 0 0;
            color: #252b35;
            font-size: clamp(42px, 3.25vw, 50px);
            line-height: 1.28;
            font-weight: 800;
            letter-spacing: 0;
        }

        .equipment-advantage-copy h2 span {
            display: block;
        }

        .equipment-advantage-copy h2 em {
            color: #ff6600;
            font-style: normal;
        }

        .equipment-advantage-copy > p {
            margin: 22px 0 0;
            color: #626a76;
            font-size: clamp(14px, 1vw, 16px);
            line-height: 1.9;
        }

        .capability-list {
            margin-top: 30px;
            display: grid;
            gap: 10px;
        }

        .capability-card {
            min-height: 88px;
            padding: 14px 22px 14px 16px;
            display: grid;
            grid-template-columns: 54px 50px minmax(0, 1fr);
            gap: 16px;
            align-items: center;
            border: 1px solid rgba(220, 224, 230, 0.72);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 12px 32px rgba(64, 75, 89, 0.05);
            backdrop-filter: blur(12px);
        }

        .capability-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border: 1px solid #d7dce2;
            border-radius: 50%;
            color: #303844;
            background: #fff;
        }

        .capability-icon svg {
            width: 30px;
            height: 30px;
        }

        .capability-index {
            color: #252b35;
            font-size: 28px;
            line-height: 1;
            font-weight: 600;
        }

        .capability-card h3 {
            margin: 0;
            color: #252b35;
            font-size: 17px;
            line-height: 1.4;
        }

        .capability-card p {
            margin: 5px 0 0;
            color: #737b85;
            font-size: 12px;
            line-height: 1.55;
        }

        .validation {
            min-height: 860px;
            height: 100vh;
            padding: 0;
            overflow: hidden;
            color: #111b2a;
            background: #f8f8fa;
        }

        .validation-grid {
            position: relative;
            width: min(1440px, calc(100% - 96px));
            height: 100%;
            margin: 0 auto;
        }

        .validation-intro {
            position: absolute;
            z-index: 4;
            top: 17%;
            left: 5.6%;
            width: 30%;
        }

        .validation-intro .kicker {
            color: #101b2b;
            letter-spacing: 0.08em;
        }

        .validation-intro .kicker::before {
            display: none;
        }

        .validation-intro h2 {
            margin: 30px 0 0;
            color: #111b2a;
            font-size: clamp(48px, 4vw, 50px);
            line-height: 1.08;
            letter-spacing: 0.02em;
        }

        .validation-intro h2 em {
            color: var(--orange);
            font-style: normal;
        }

        .validation-rule {
            position: relative;
            width: 58px;
            height: 2px;
            margin-top: 34px;
            background: var(--orange);
        }

        .validation-rule::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -8px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--orange);
            transform: translateY(-50%);
        }

        .validation-intro p {
            max-width: 410px;
            margin: 30px 0 0;
            color: #465064;
            font-size: 16px;
            line-height: 1.9;
            letter-spacing: 0.015em;
        }

        .validation-visual {
            position: absolute;
            z-index: 1;
            margin: 0;
            overflow: hidden;
            background: #06182b;
        }

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

        .validation-visual--brain {
            top: 2%;
            right: 2%;
            width: 38%;
            height: 54%;
        }

        .validation-visual--brain img {
            object-position: 52% center;
        }

        .validation-visual--heart {
            left: 1%;
            bottom: 1%;
            width: 46%;
            height: 43%;
        }

        .validation-visual--heart img {
            object-position: center 48%;
        }

        .report-card {
            position: absolute;
            z-index: 4;
            width: 27%;
            color: #111b2a;
        }

        .report-card--primary {
            top: 14%;
            left: 37%;
            width: 20%;
        }

        .report-card--secondary {
            left: 49%;
            bottom: 3%;
            width: 30%;
        }

        .report-label {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--orange);
            font-size: 18px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .report-label::after {
            content: "";
            flex: 1;
            min-width: 72px;
            max-width: 138px;
            height: 1px;
            background: linear-gradient(90deg, var(--orange) 0 72%, transparent 72%);
            box-shadow: 3px 0 0 -1px var(--orange);
        }

        .report-card h3 {
            margin: 20px 0 0;
            color: #111b2a;
            font-size: clamp(24px, 2vw, 34px);
            line-height: 1.25;
            letter-spacing: 0.015em;
        }

        .report-card h3 strong {
            display: block;
            margin-top: 4px;
            color: var(--orange);
            font-size: 1.22em;
        }

        .report-summary {
            margin: 12px 0 18px;
            color: #303b4e;
            font-size: 15px;
            line-height: 1.6;
        }

        .report-table {
            overflow: hidden;
            border: 1px solid #c7ccd5;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.5);
        }

        .report-row {
            min-height: 50px;
            display: grid;
            grid-template-columns: 86px minmax(0, 1fr);
            align-items: center;
            padding: 0;
            border-bottom: 1px solid #d3d7de;
            color: #303b4e;
            font-size: 14px;
            line-height: 1.45;
        }

        .report-row:last-child {
            border-bottom: 0;
        }

        .report-row b {
            align-self: stretch;
            display: grid;
            place-items: center;
            border-right: 1px solid #d3d7de;
            color: var(--orange);
            font-weight: 700;
        }

        .report-row span {
            padding: 10px 18px;
        }

        .equipment {
            min-height: 920px;
            padding: 82px 0 70px;
            color: #111b2a;
            background: #f8f8fa;
        }

        .equipment .section-head {
            max-width: 900px;
            margin-bottom: 34px;
        }

        .equipment .section-head .kicker {
            gap: 22px;
            color: var(--orange);
            letter-spacing: 0.24em;
        }

        .equipment .section-head .kicker::after {
            content: "";
            width: 30px;
            height: 1px;
            background: rgba(255, 102, 0, 0.65);
        }

        .equipment .section-head h2 {
            margin-top: 18px;
            color: #151b24;
            font-size: clamp(40px, 3.15vw, 50px);
            line-height: 1.15;
            letter-spacing: 0.035em;
        }

        .equipment .section-head p {
            margin-top: 14px;
            color: #6f747c;
            font-size: 15px;
            line-height: 1.8;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 26px;
            width: 100%;
            max-width: 100%;
        }

        .equipment-card {
            position: relative;
            min-height: 286px;
            display: grid;
            grid-template-columns: 52% 48%;
            border: 1px solid rgba(25, 36, 51, 0.05);
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 14px 42px rgba(32, 45, 63, 0.08);
        }

        .equipment-image {
            height: 100%;
            min-height: 286px;
            overflow: hidden;
            background: #edf1f4;
        }

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

        .equipment-card:nth-child(even) .equipment-image {
            order: 2;
        }

        .equipment-card:first-child .equipment-image img {
            object-position: center 52%;
        }

        .equipment-card:last-child .equipment-image img {
            object-position: center 48%;
        }

        .equipment-body {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 36px 54px;
            overflow: hidden;
        }

        .equipment-body::after {
            content: "";
            position: absolute;
            z-index: -1;
            right: -54px;
            bottom: -82px;
            width: 210px;
            height: 210px;
            border: 1px solid rgba(255, 102, 0, 0.15);
            border-radius: 50%;
            box-shadow:
                0 0 0 38px rgba(255, 102, 0, 0.055),
                0 0 0 76px rgba(255, 102, 0, 0.025);
        }

        .equipment-card:nth-child(even) .equipment-body::after {
            right: auto;
            left: -70px;
            bottom: -86px;
        }

        .equipment-body > span,
        .module-card span,
        .article-card span {
            color: var(--orange);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.15em;
        }

        .equipment-body h3 {
            margin: 14px 0 0;
            color: #151b24;
            font-size: clamp(24px, 1.75vw, 30px);
            line-height: 1.3;
            letter-spacing: 0.025em;
        }

        .equipment-body p {
            max-width: 540px;
            margin: 12px 0 0;
            color: #666d76;
            font-size: 13px;
            line-height: 1.75;
            letter-spacing: 0.015em;
        }

        .equipment-body ul {
            position: relative;
            margin: 18px 0 0;
            padding: 18px 0 0;
            list-style: none;
        }

        .equipment-body ul::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--orange);
        }

        .equipment-body li {
            position: relative;
            margin-top: 8px;
            padding-left: 18px;
            color: #4e5661;
            font-size: 14px;
            line-height: 1.55;
        }

        .equipment-body li::before {
            content: "";
            position: absolute;
            top: 0.7em;
            left: 0;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--orange);
            transform: translateY(-50%);
        }

        .modules {
            min-height: 900px;
            padding: 88px 0 58px;
            color: #151b24;
            background: #f8f8fa url("../../images/medical/bg6.webp") center center / cover no-repeat;
        }

        .modules .section-head {
            max-width: 860px;
            margin-bottom: 44px;
        }

        .modules .section-head .kicker {
            gap: 22px;
            color: var(--orange);
            letter-spacing: 0.24em;
        }

        .modules .section-head .kicker::after {
            content: "";
            width: 30px;
            height: 1px;
            background: rgba(255, 102, 0, 0.65);
        }

        .modules .section-head h2 {
            margin-top: 20px;
            color: #151b24;
            font-size: clamp(42px, 3.35vw, 50px);
            line-height: 1.12;
            letter-spacing: 0.035em;
        }

        .modules .section-head p {
            margin-top: 18px;
            color: #686f78;
            font-size: 15px;
            line-height: 1.8;
        }

        .module-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            width: 100%;
            max-width: 100%;
        }

        .module-card {
            min-width: 0;
            min-height: 470px;
            padding: 32px 34px 22px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(32, 45, 63, 0.05);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 16px 42px rgba(32, 45, 63, 0.08);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }

        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 52px rgba(32, 45, 63, 0.12);
        }

        .module-index {
            color: var(--orange);
            font-size: 42px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.03em;
        }

        .module-index::after {
            content: "";
            display: block;
            width: 28px;
            height: 2px;
            margin-top: 16px;
            background: var(--orange);
        }

        .module-card h3 {
            margin: 16px 0 0;
            color: #151b24;
            font-size: 21px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }

        .module-card > p {
            min-height: 44px;
            margin: 10px 0 0;
            color: #6a717b;
            font-size: 13px;
            line-height: 1.7;
        }

        .module-visual {
            width: 100%;
            min-height: 0;
            aspect-ratio: 5 / 3;
            flex: 0 0 auto;
            margin: 0 auto;
            display: grid;
            place-items: center;
            overflow: hidden;
        }

        .module-visual img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            object-position: center center;
        }

        .module-features {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 6px;
            padding-top: 14px;
            border-top: 1px solid #e7e9ed;
        }

        .module-feature {
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            color: #5f6670;
            font-size: 11px;
            line-height: 1.3;
            text-align: center;
        }

        .module-feature i {
            width: 23px;
            height: 23px;
            flex: 0 0 23px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 102, 0, 0.5);
            border-radius: 50%;
            color: var(--orange);
            font-size: 10px;
            font-style: normal;
            font-weight: 700;
        }

        .module-summary {
            min-height: 70px;
            margin-top: 24px;
            padding: 16px 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border: 1px solid rgba(32, 45, 63, 0.05);
            border-radius: 10px;
            color: #646b74;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 12px 32px rgba(32, 45, 63, 0.07);
            font-size: 14px;
            line-height: 1.7;
            text-align: center;
        }

        .module-summary-icon {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 102, 0, 0.28);
            border-radius: 50%;
            color: var(--orange);
            font-size: 18px;
        }

        .module-summary strong {
            color: var(--orange);
        }

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

        .light-section .section-head h2,
        .light-section .faq-card h3,
        .light-section .article-card h3 {
            color: #111722;
        }

        .light-section .section-head p {
            color: rgba(18, 24, 32, 0.62);
        }

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

        .faq-card,
        .article-card {
            min-height: 190px;
            padding: 30px 32px;
            background: rgba(255, 255, 255, 0.82);
            border-color: rgba(18, 24, 35, 0.1);
            box-shadow: 0 18px 54px rgba(18, 24, 35, 0.08);
        }

        .faq-card h3,
        .article-card h3 {
            font-size: 20px;
        }

        .faq-card p,
        .article-card p {
            color: rgba(18, 24, 32, 0.62);
        }

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

        .cta-wrap {
            padding: 0 0 120px;
            background: var(--light-bg);
        }

        .medical-cta {
            width: min(1280px, calc(100% - 96px));
            min-height: 330px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            display: grid;
            place-items: center;
            text-align: center;
            color: #fff;
            background:
                linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.34)),
                url("../../images/plandetail/cta.webp") center / cover no-repeat,
                #050506;
        }

        .cta-content {
            max-width: 760px;
            padding: 48px;
        }

        .cta-content h2 {
            margin: 18px 0 0;
            font-size: clamp(32px, 3vw, 50px);
            line-height: 1.18;
            letter-spacing: 0.05em;
        }

        .cta-content p {
            margin: 22px 0 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 16px;
            line-height: 1.9;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-top: 30px;
        }

        .btn-primary,
        .btn-ghost {
            min-width: 140px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
        }

        .btn-primary { background: var(--orange); color: #fff; }
        .btn-ghost { border: 1px solid rgba(255,255,255,0.34); color: #fff; }

        .medical-footer {
            padding: 52px 0;
            background: #050506;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .footer-grid {
            width: min(1440px, calc(100% - 96px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr repeat(4, 1fr);
            gap: 36px;
        }

        .footer-grid h3 {
            margin: 0 0 14px;
            color: #fff;
            font-size: 16px;
        }

        .footer-grid p,
        .footer-grid a {
            display: block;
            margin: 9px 0 0;
            color: rgba(255,255,255,0.55);
            font-size: 13px;
            line-height: 1.7;
        }

        @media (max-width: 980px) {
            .medical-nav-inner,
            .medical-inner,
            .hero-content,
            .footer-grid {
                width: min(100% - 48px, 720px);
            }

            .medical-nav-links { display: none; }

            .medical-nav-cta {
                padding: 7px 18px;
                font-size: 13px;
            }

            .medical-hero {
                min-height: 820px;
                height: auto;
                align-items: center;
                padding: 96px 0 62px;
                background-position: 64% center;
            }

            .hero-content {
                top: 0;
                margin-top: 0;
            }

            .hero-copy {
                width: min(610px, 76%);
            }

            .story-grid,
            .process-inner,
            .process-stage,
            .validation-grid,
            .equipment-grid,
            .faq-grid,
            .article-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-metrics {
                width: 610px;
            }

            .pain-grid,
            .adv-grid,
            .module-grid,
            .report-grid {
                grid-template-columns: 1fr;
            }

            .story-copy,
            .process-inner {
                position: static;
            }

            .story {
                height: auto;
                min-height: 920px;
                padding: 110px 0 40px;
                background-position: 60% center;
            }

            .story-copy,
            .pain-grid {
                width: min(610px, 76%);
            }

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

            .story-values {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 24px 0;
                padding: 24px 0;
            }

            .story-value:nth-child(3)::before,
            .story-value:nth-child(3)::after {
                display: none;
            }

            .reliability-risk {
                height: auto;
                min-height: 920px;
                padding: 120px 0 48px;
                background-position: 52% center;
            }

            .risk-inner {
                width: min(100% - 48px, 720px);
                grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 1.1fr);
                align-items: start;
            }

            .risk-copy {
                padding-top: 20px;
            }

            .risk-copy h2 {
                font-size: 42px;
            }

            .risk-detail {
                align-self: end;
                grid-column: 1;
                margin-bottom: 30px;
            }

            .risk-list {
                grid-column: 2;
                grid-row: 1 / span 2;
                margin-left: 18px;
            }

            .risk-item {
                grid-template-columns: 64px minmax(0, 1fr);
                gap: 16px;
            }

            .risk-icon {
                width: 58px;
                height: 58px;
            }

            .risk-icon svg {
                width: 28px;
                height: 28px;
            }

            .risk-index {
                font-size: 32px;
            }

            .risk-item h3 {
                font-size: 18px;
            }

            .process {
                height: auto;
                min-height: 900px;
                padding: 108px 0 34px;
                background-position: center center;
            }

            .process-stage {
                inset: 174px 0 0;
            }

            .process-orbit {
                width: min(590px, 70vw);
                height: min(320px, 40vw);
            }

            .process-step {
                width: 230px;
                grid-template-columns: 78px minmax(0, 1fr);
                gap: 12px;
            }

            .process-step:nth-child(1),
            .process-step:nth-child(5) {
                grid-template-columns: minmax(0, 1fr) 78px;
            }

            .process-step:nth-child(4) {
                width: 230px;
            }

            .process-node {
                width: 76px;
                height: 76px;
                box-shadow: 0 0 0 8px rgba(247, 248, 250, 0.84);
            }

            .process-node svg {
                width: 38px;
                height: 38px;
            }

            .process-step > div > span {
                font-size: 18px;
            }

            .process-step strong {
                font-size: 17px;
            }

            .process-step p {
                font-size: 11px;
            }

            .advantage {
                height: auto;
                min-height: 860px;
                padding: 110px 0 42px;
                background-position: 58% center;
            }

            .equipment-advantage-copy {
                width: min(460px, 58%);
            }

            .validation {
                min-height: 1080px;
                height: auto;
            }

            .validation-grid {
                width: min(100% - 48px, 720px);
                min-height: 1080px;
            }

            .validation-intro {
                top: 8%;
                left: 0;
                width: 45%;
            }

            .validation-intro h2 {
                font-size: 48px;
            }

            .validation-visual--brain {
                width: 51%;
                height: 42%;
            }

            .validation-visual--heart {
                width: 54%;
                height: 38%;
            }

            .report-card--primary {
                top: 10%;
                left: 0;
                width: 45%;
            }

            .report-card--secondary {
                left: 56%;
                right: auto;
                bottom: 5%;
                width: 44%;
            }

            .report-label::after {
                width: 100px;
            }

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

            .equipment-card:nth-child(even) .equipment-image {
                order: 0;
            }

            .equipment-image {
                height: 260px;
                min-height: 260px;
            }

            .module-card {
                min-height: 430px;
                padding: 28px 26px 20px;
            }

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

            .module-card:last-child {
                grid-column: 1 / -1;
                width: calc(50% - 9px);
                justify-self: center;
            }

            .module-summary {
                padding: 16px 24px;
            }

            .medical-cta {
                width: min(100% - 48px, 720px);
            }

            .cta-actions { flex-direction: column; align-items: center; }
        }

        @media (max-width: 560px) {
            .medical-nav-inner,
            .medical-inner,
            .hero-content,
            .footer-grid {
                width: calc(100% - 32px);
            }

            .medical-nav img { height: 28px; }
            .medical-nav-cta { display: none; }

            .medical-hero {
                min-height: 100svh;
                padding: 72px 0 52px;
                background-position: 60% center;
            }

            .medical-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(247, 249, 252, 0.78);
            }

            .hero-copy { width: 100%; }
            .hero-kicker { gap: 16px; font-size: 11px; }
            .hero-title { margin-top: 22px; font-size: 40px; line-height: 1.22; }
            .hero-sub { margin-top: 18px; font-size: 14px; line-height: 1.85; }
            .hero-metrics {
                width: 100%;
                margin-top: 30px;
                display: grid;
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .metric-card,
            .pain-card,
            .adv-card,
            .module-card,
            .faq-card,
            .article-card,
            .equipment-body {
                padding: 24px;
            }
            .light-section .faq-grid {
                width: calc(100vw - 16px);
                margin-left: 50%;
                transform: translateX(-50%);
                gap: 16px;
            }
            .light-section .faq-card {
                padding: 22px 18px;
            }

            .metric-card {
                min-height: 50px;
                padding: 0;
                grid-template-columns: 44px minmax(0, 1fr);
                gap: 12px;
            }

            .metric-card + .metric-card {
                border-left: 0;
            }

            .metric-icon {
                width: 44px;
                height: 44px;
            }

            .hero-action {
                width: 200px;
                height: 48px;
                margin-top: 30px;
            }

            .story {
                min-height: auto;
                padding: 90px 0 32px;
                background-position: 58% center;
            }

            .story::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(247, 249, 252, 0.82);
            }

            .story-grid {
                position: relative;
                z-index: 1;
            }

            .story-copy,
            .pain-grid {
                width: 100%;
            }

            .story-copy h2 {
                margin-top: 22px;
                font-size: 38px;
            }

            .pain-grid {
                grid-template-columns: 1fr;
                margin-top: 6px;
            }

            .story .pain-grid {
                grid-template-columns: 1fr;
            }

            .pain-card,
            .pain-card:nth-child(even),
            .pain-card:nth-child(n + 3) {
                min-height: 112px;
                padding: 18px 0;
                border-left: 0;
                border-top: 1px solid #dfe3e8;
            }

            .pain-grid .pain-card:first-child {
                border-top: 0;
            }

            .story-values {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 12px 0;
            }

            .story-value {
                padding: 12px 22px;
            }

            .story-value + .story-value::before,
            .story-value + .story-value::after {
                display: none;
            }

            .story-value > div > span {
                white-space: normal;
            }

            .reliability-risk {
                min-height: auto;
                padding: 86px 0 42px;
                background-position: 50% top;
                background-size: auto 620px;
                background-repeat: no-repeat;
            }

            .reliability-risk::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(247, 248, 251, 0.15) 0 480px, #f7f8fb 650px);
            }

            .risk-inner {
                position: relative;
                z-index: 1;
                width: calc(100% - 32px);
                display: block;
            }

            .risk-copy {
                padding-top: 0;
            }

            .risk-copy h2 {
                margin-top: 22px;
                font-size: 38px;
                line-height: 1.38;
            }

            .risk-copy p {
                max-width: 100%;
                font-size: 14px;
            }

            .risk-detail {
                margin: 330px 0 28px;
            }

            .risk-list {
                margin-left: 0;
                padding: 0 18px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.76);
            }

            .risk-item {
                min-height: 138px;
                grid-template-columns: 62px minmax(0, 1fr);
                gap: 16px;
                padding: 18px 0;
            }

            .risk-icon {
                width: 56px;
                height: 56px;
                box-shadow: none;
            }

            .risk-index {
                font-size: 30px;
            }

            .risk-item h3 {
                margin-top: 7px;
                font-size: 18px;
            }

            .risk-item p {
                margin-top: 7px;
                font-size: 13px;
            }

            .process {
                min-height: auto;
                padding: 82px 0 48px;
                background-position: center 170px;
                background-size: auto 500px;
                background-repeat: no-repeat;
            }

            .process-copy h2 {
                font-size: 36px;
            }

            .process-copy p {
                font-size: 14px;
            }

            .process-stage {
                position: relative;
                inset: auto;
                margin-top: 330px;
            }

            .process-orbit {
                display: none;
            }

            .process-list {
                position: static;
                display: grid;
                grid-template-columns: 1fr;
                gap: 1px;
                padding: 0 18px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.8);
            }

            .process-step,
            .process-step:nth-child(1),
            .process-step:nth-child(2),
            .process-step:nth-child(3),
            .process-step:nth-child(4),
            .process-step:nth-child(5) {
                position: static;
                width: 100%;
                min-height: 104px;
                display: grid;
                grid-template-columns: 64px minmax(0, 1fr);
                gap: 16px;
                padding: 14px 0;
                text-align: left;
                transform: none;
                border-top: 1px solid #e0e4e9;
            }

            .process-step:first-child {
                border-top: 0;
            }

            .process-step:nth-child(1) .process-node,
            .process-step:nth-child(5) .process-node {
                order: 0;
            }

            .process-step:nth-child(4) .process-node {
                margin: 0;
            }

            .process-node {
                width: 58px;
                height: 58px;
                box-shadow: none;
            }

            .process-node svg {
                width: 30px;
                height: 30px;
            }

            .process-step > div > span {
                font-size: 17px;
            }

            .process-step strong {
                font-size: 17px;
            }

            .process-step p {
                margin-top: 5px;
                font-size: 12px;
            }

            .advantage {
                min-height: auto;
                padding: 84px 0 46px;
                background-position: 62% top;
                background-size: auto 620px;
                background-repeat: no-repeat;
            }

            .advantage::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(247, 249, 252, 0.62) 0 590px, #f5f7fa 760px);
            }

            .equipment-advantage-inner {
                position: relative;
                z-index: 1;
                display: block;
            }

            .equipment-advantage-copy {
                width: 100%;
            }

            .equipment-advantage-copy h2 {
                margin-top: 22px;
                font-size: 38px;
            }

            .equipment-advantage-copy > p {
                font-size: 14px;
            }

            .validation {
                min-height: auto;
                height: auto;
                padding: 76px 0 0;
            }

            .validation-grid {
                width: 100%;
                min-height: 0;
                height: auto;
                display: flex;
                flex-direction: column;
            }

            .validation-intro,
            .report-card,
            .validation-visual {
                position: relative;
                inset: auto;
                width: auto;
            }

            .validation-intro {
                order: 1;
                padding: 0 24px 42px;
            }

            .validation-intro h2 {
                margin-top: 20px;
                font-size: 42px;
            }

            .validation-intro p {
                margin-top: 22px;
                font-size: 14px;
            }

            .validation-rule {
                margin-top: 24px;
            }

            .validation-visual--brain {
                order: 2;
                height: 270px;
            }

            .report-card--primary {
                order: 3;
                padding: 34px 24px 46px;
            }

            .validation-visual--heart {
                order: 4;
                height: 270px;
            }

            .report-card--secondary {
                order: 5;
                padding: 34px 24px 70px;
            }

            .report-label {
                font-size: 16px;
            }

            .report-label::after {
                width: 110px;
            }

            .report-card h3 {
                font-size: 26px;
            }

            .report-row {
                grid-template-columns: 72px minmax(0, 1fr);
                font-size: 13px;
            }

            .capability-list {
                margin-top: 340px;
            }

            .capability-card {
                min-height: 82px;
                grid-template-columns: 50px 42px minmax(0, 1fr);
                gap: 12px;
                padding: 12px 16px;
            }

            .capability-icon {
                width: 48px;
                height: 48px;
            }

            .capability-icon svg {
                width: 27px;
                height: 27px;
            }

            .capability-index {
                font-size: 24px;
            }

            .capability-card h3 {
                font-size: 15px;
            }

            .capability-card p {
                font-size: 11px;
            }

            .modules {
                min-height: auto;
                padding: 78px 0 48px;
                background-position: center top;
            }

            .modules .section-head h2 {
                font-size: 38px;
            }

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

            .module-card,
            .module-card:last-child {
                width: 100%;
                min-height: 440px;
                grid-column: auto;
                padding: 28px 24px 20px;
            }

            .module-index {
                font-size: 36px;
            }

            .module-card h3 {
                font-size: 20px;
            }

            .module-visual {
                min-height: 0;
            }

            .module-feature {
                flex-direction: column;
                font-size: 10px;
            }

            .module-summary {
                align-items: flex-start;
                padding: 16px 18px;
                font-size: 13px;
                text-align: left;
            }

            .equipment-card { min-height: auto; }
            .equipment-image { height: 220px; }
            .medical-cta { width: calc(100% - 32px); }
            .cta-content { padding: 36px 24px; }
        }


#section-footer .footer-layout-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}
#section-footer .footer-main,
#section-footer .footer-bottom,
#section-footer .footer-copyright {
    position: relative;
    z-index: 1;
}
#section-footer .footer-divider {
    margin-top: clamp(24px, 3vh, 36px);
    margin-bottom: clamp(16px, 2vh, 24px);
}
#section-footer .footer-bottom {
    margin-bottom: clamp(12px, 2vh, 24px);
}

        a.article-card { color: inherit; text-decoration: none; }

#section-footer .footer-layout-shell {
    justify-content: flex-start;
    padding-top: clamp(350px, 28vh, 350px);
    padding-bottom: clamp(28px, 4vh, 44px);
}
#section-footer.fullscreen-section {
    min-height: auto !important;
    height: auto !important;
    position: relative;
    z-index: 1;
}
#section-footer .footer-main {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}
#section-footer .footer-logo-wrap {
    display: flex;
    align-items: center;
}
#section-footer .footer-logo {
    height: clamp(34px, 3.2vw, 42px);
    width: auto;
    display: block;
}
#section-footer .footer-brand .section-lead {
    margin: 18px 0 0;
    text-align: left;
    color: rgba(255,255,255,0.58);
    line-height: 1.8;
    max-width: 420px;
}
#section-footer .footer-contact-form {
    margin-top: 18px;
    max-width: 420px;
    display: grid;
    gap: 10px;
}
#section-footer .footer-contact-form input,
#section-footer .footer-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.32);
    color: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
}
#section-footer .footer-contact-form textarea { resize: vertical; min-height: 64px; }
#section-footer .footer-contact-form button {
    width: 124px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #ff6a00;
    cursor: pointer;
}
#section-footer .footer-nav .footer-columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: clamp(20px, 2.5vw, 48px);
    justify-content: start;
}
@media (max-width: 1024px) {
    #section-footer .footer-layout-shell {
        padding-top: clamp(160px, 18vh, 210px);
    }
    #section-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    #section-footer .footer-contact-form {
        max-width: 100%;
    }
    #section-footer .footer-nav .footer-columns {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}
@media (max-width: 768px) {
    #section-footer .footer-layout-shell {
        padding-top: 72px;
    }
    .light-section{padding:20px 10px;}
}

/* Mobile optimization: medical solution layout */
@media (max-width: 768px) {
    body.medical-page .medical-hero {
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0 0 50vh;
        align-items: flex-end;
    }

    body.medical-page .medical-hero::before,
    body.medical-page .medical-hero::after {
        content: none;
        display: none;
        background: none;
    }

    body.medical-page .hero-content {
        top: auto;
        margin: 0 auto;
        transform: none;
    }

    body.medical-page .story .story-copy h2,
    body.medical-page .risk-copy h2,
    body.medical-page .process-copy h2,
    body.medical-page .equipment-advantage-copy h2,
    body.medical-page .validation-intro h2,
    body.medical-page .section-head h2 {
        font-size: 24px !important;
        line-height: 1.3;
        letter-spacing: 0.02em;
    }

    body.medical-page .story .pain-card {
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-rows: auto;
        column-gap: 12px;
        align-items: start;
    }

    body.medical-page .story .pain-icon {
        display: none;
    }

    body.medical-page .story .card-index {
        grid-column: auto;
        font-size: 24px;
        line-height: 1.2;
    }

    body.medical-page .story .pain-copy {
        padding-top: 0;
    }

    body.medical-page .reliability-risk .risk-item-copy {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 10px;
        align-items: baseline;
    }

    body.medical-page .reliability-risk .risk-index {
        display: block;
        font-size: 26px;
    }

    body.medical-page .reliability-risk .risk-item h3 {
        margin: 0;
    }

    body.medical-page .reliability-risk .risk-item p {
        grid-column: 1 / -1;
    }
}
