:root {
    --bg-color: #fcfbfa;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #94a3b8;
    --brand-blue-bg: #f0f7fc;
    --brand-blue-text: #437095;
    --brand-blue-badge-bg: rgba(186, 230, 253, 0.5);
    --brand-blue-badge-text: #0369a1;
    --brand-pink-bg: #fff0f3;
    --brand-pink-text: #c46d81;
    --brand-pink-badge-bg: rgba(fbcfe8, 0.5);
    --brand-pink-badge-text: #be185d;
    --gradient-start: #f0f7fc;
    --gradient-end: #fff0f3;
    --premium-dark: #0f172a;
    --premium-dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-bg: #ffffff;
    --card-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 8px -1px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* コンテナ基本幅 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: #111111;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #000000;
}

.nav-cta-btn {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111111;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #111111;
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    background-color: #111111;
    color: #ffffff;
}

.hero {
    padding-top: 70px;
    padding-bottom: 64px;
    text-align: center;
    max-width: inherit;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 24px;
    border: 1px solid #ccc;
}

.hero-tag-divider {
    color: #cbd5e1;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-title br {
    display: none;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-desc strong {
    color: #111111;
    font-weight: 500;
}

.comparison-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.body-treatment2 h2.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.comparison-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

/* 左パネル：再建 */
.panel-reconstruct {
    background-color: var(--brand-blue-bg);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* 右パネル：ダウンタイムケア */
.panel-downtime {
    background-color: var(--brand-pink-bg);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.panel-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-badge-blue {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue-badge-text);
    background-color: var(--brand-blue-badge-bg);
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.panel-badge-pink {
    font-size: 12px;
    font-weight: 700;
    color: #be185d;
    background-color: rgba(251, 207, 232, 0.5);
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.panel-sub {
    font-size: 11px;
    color: var(--text-light);
}

.panel-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.panel-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* 治療カードリスト */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: start;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

a.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.status-badge-plan {
    font-size: 9px;
    font-weight: 700;
    color: #db2777;
    background-color: #fdf2f8;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 2px;
}

.status-badge-active {
    font-size: 9px;
    font-weight: 700;
    color: #065f46;
    background-color: #d1fae5;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 2px;
}

.card-content-wrap {
    flex: 1;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-banner {
    background: linear-gradient(135deg, #0f2c42 0%, #3d1b28 100%);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15);
}

.benefit-content {
    flex: 1;
}

.benefit-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.7;
}

.benefit-desc strong {
    color: #fbcfe8;
    font-weight: 600;
}

.benefit-aside {
    flex-shrink: 0;
}

.benefit-badge {
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.smartlux-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.smartlux-header {
    text-align: center;
    margin-bottom: 64px;
}

.smartlux-logo-img {
    height: 72px;
    object-fit: contain;
    margin-bottom: 20px;
}

.smartlux-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge-premium-pink {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #db2777;
    background-color: #fdf2f8;
    padding: 4px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.badge-premium-amber {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #b45309;
    background-color: #fef3c7;
    padding: 4px 16px;
    border-radius: 9999px;
}

.body-treatment2 h2.smartlux-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.01em;
    text-align: center;
}

.txt_under {
    text-decoration: underline;
}

.smartlux-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 16px auto 0;
    line-height: 1.8;
}

.gallery-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-light);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-cols: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.gallery-card {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.gallery-card-dark {
    background-color: #0f172a;
    color: #ffffff;
    padding: 16px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.gallery-card-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
}

.img-container {
    width: 100%;
    height: 320px;
    background-color: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-container-dark {
    width: 100%;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img, .gallery-card-dark:hover .gallery-img {
    transform: scale(1.03);
}

.grid-half {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.img-item-half {
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-meta {
    margin-top: 16px;
}

.card-label-purple {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #9333ea;
    background-color: #f3e8ff;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-label-pink {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #db2777;
    background-color: #fdf2f8;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-label-teal {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0d9488;
    background-color: #ccfbf1;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.gallery-card-title {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    margin-top: 6px;
}

.gallery-card-dark .gallery-card-title {
    color: #f8fafc;
}

.gallery-card-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.gallery-card-dark .gallery-card-desc {
    color: #94a3b8;
}

.smartlux-details-split {
    display: grid;
    grid-template-cols: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.visual-diagram-card {
    background: #0f172a;
    color: #ffffff;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.visual-diagram-tag-row {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.diagram-badge-fda {
    font-size: 9px;
    font-weight: 700;
    background-color: #ec4899;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

.diagram-badge-ce {
    font-size: 9px;
    font-weight: 700;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

.diagram-title {
    font-size: 14px;
    font-weight: 700;
    color: #fbcfe8;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.svg-container {
    width: 100%;
    height: 280px;
    background-color: #020617;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.svg-explanation {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid #1e293b;
    border-radius: 6px;
    padding: 10px;
    font-size: 10px;
    color: #cbd5e1;
    line-height: 1.5;
    max-width: 280px;
}

.explanation-text-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.explanation-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.explanation-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 臨床特長グリッド (4点) */
.features-grid-2x2 {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 16px;
}

.feature-item-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.feature-tag {
    font-size: 12px;
    font-weight: 700;
    color: #db2777;
}

.feature-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 4px;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.clinical-adaption-wrap {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.adaption-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.clinical-brand-logo {
    height: 36px;
    object-fit: contain;
    margin-bottom: 8px;
}

.adaption-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.adaption-grid-3cols {
    display: grid;
    grid-template-cols: 1fr 1fr 1fr;
    gap: 24px;
}

.adaption-item-card {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 24px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.adaption-item-card:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.adaption-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.icon-check-circle {
    width: 18px;
    height: 18px;
    color: #2563eb;
    flex-shrink: 0;
}

.adaption-card-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.other-treatments-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.treatments-3cols {
    display: grid;
    grid-template-cols: 1fr 1fr 1fr;
    gap: 24px;
}

.treatment-panel-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.treatment-panel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.treatment-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.badge-status-green {
    font-size: 10px;
    font-weight: 700;
    color: #065f46;
    background-color: #d1fae5;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-status-gray {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    background-color: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-status-pink {
    font-size: 10px;
    font-weight: 700;
    color: #db2777;
    background-color: #fdf2f8;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-category-blue {
    font-size: 11px;
    font-weight: 600;
    color: #1d4ed8;
}

.badge-category-pink {
    font-size: 11px;
    font-weight: 600;
    color: #be185d;
}

.treatment-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.treatment-summary {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.treatment-meta-box {
    background-color: #f8fafc;
    padding: 12px;
    border-radius: 10px;
    font-size: 10.5px;
    color: var(--text-muted);
}

.treatment-meta-box strong {
    color: #0f172a;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.body-treatment2 h2.cta-title {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-line-cta {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #1e293b;
    border: none;
    padding: 14px 32px;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(30, 41, 59, 0.3);
    transition: var(--transition-smooth);
}

.btn-line-cta:hover {
    background-color: #0f172a;
    transform: translateY(-1px);
}

.btn-web-cta {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 14px 32px;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.btn-web-cta:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

/* カスタムアラートボックス */
.custom-alert-box {
    display: none;
    margin: 24px auto 0;
    padding: 16px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    max-width: 380px;
    box-shadow: var(--card-shadow);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* フッター */
.footer {
    background-color: #ffffff;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-cols: 1fr;
        gap: 24px;
    }
    .gallery-grid {
        grid-template-cols: 1fr 1fr;
    }
    .smartlux-details-split {
        grid-template-cols: 1fr;
        gap: 40px;
    }
    .adaption-grid-3cols {
        grid-template-cols: 1fr;
        gap: 16px;
    }
    .treatments-3cols {
        grid-template-cols: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-title br {
        display: inline;
    }
    .hero-desc {
        font-size: 13.5px;
    }
    .benefit-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .benefit-badge {
        width: 71%;
        display: block;
    }
    .gallery-grid {
        grid-template-cols: 1fr;
    }
    .features-grid-2x2 {
        grid-template-cols: 1fr;
    }
    .treatments-3cols {
        grid-template-cols: 1fr;
    }
    .cta-buttons-wrap {
        flex-direction: column;
        padding: 0 16px;
    }
    .btn-line-cta, .btn-web-cta {
        width: 100%;
    }
    .body-treatment2 .section-main h1 {
        line-height: 30px;
    }
    .comparison-section {
        padding: 0px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .panel-reconstruct {
        padding: 30px;
    }
    .panel-title {
        font-size: 16px;
    }
    .menu-card {
        flex-direction: column;
    }
    .panel-badge-pink {
        font-size: 11px;
        text-align: center;
        padding: 4px 11px;
        border-radius: 16px;
    }
    .panel-sub {
        margin-left: 10px;
    }
    .panel-desc {
        margin-bottom: 20px;
    }
    .menu-card {
        gap: 10px;
    }
    .benefit-title {
        font-size: 21px;
        line-height: 34px;
    }
    .smartlux-section {
        padding: 30px 0;
    }
    .body-treatment2 h2.smartlux-title {
        font-size: 20px;
    }
    .svg-container {
        width: 90%;
        padding: 16px 16px 60px 16px;
    }
    .visual-diagram-card {
        padding: 33px 20px 20px 20px;
    }
    .explanation-title {
        font-size: 20px;
    }
    .body-treatment2 h2.section-title {
        font-size: 20px;
    }
    .adaption-main-title {
        line-height: 30px;
    }
    .body-treatment2 h2.cta-title {
        font-size: 20px;
    }
}
@media (min-width: 769px) {
    .comparison-grid,
    .gallery-grid,
    .smartlux-details-split,
    .adaption-grid-3cols,
    .treatments-3cols {
        display: flex;
    }
    .gallery-card {
        width: calc((100% - 10px) / 3);
    }
    .svg-container {
        padding-bottom: 100px;
    }
    .explanation-text-column {
        width: 60%;
    }
    .visual-diagram-card {
        width: 40%;
    }
}