@charset "UTF-8";

:root {
    --red: #c1121f;
    --red-dark: #8a0d15;
    --red-deep: #600810;
    --red-light: #d8323d;
    --gold: #b89150;
    --gold-light: #cfac6f;
    --bg: #ffffff;
    --bg-soft: #faf5f3;
    --text: #2c2622;
    --text-light: #6c635d;
    --line: #ece3df;
    --shadow: 0 10px 30px rgba(96, 8, 16, 0.08);
    --req: #b3261e;
}

body {
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 12px rgba(96, 8, 16, 0.05);
}
.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    height: 88px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}
.brand-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-mark {
    font-family: "Noto Serif JP", serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
}
.brand-name {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.14em;
    margin-top: 2px;
}
.global-nav {
    margin-left: auto;
}
.global-nav ul {
    display: flex;
    gap: 4px;
}
.global-nav a {
    display: block;
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 4px;
    transition: color .2s, background .2s;
}
.global-nav a:hover {
    color: var(--red);
    background: var(--bg-soft);
}
.global-nav a.is-current {
    color: var(--red);
    font-weight: 700;
}
.header-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    padding-left: 20px;
    border-left: 1px solid var(--line);
}
.header-tel-label {
    font-size: 10px;
    color: var(--text-light);
}
.header-tel-num {
    font-family: "Noto Serif JP", serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.04em;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    text-align: center;
}
.btn-primary {
    background: #fff;
    color: var(--red);
}
.btn-primary:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}
.btn-red {
    background: var(--red);
    color: #fff;
}
.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 18, 31, 0.32);
}
.btn-gold {
    background: var(--gold);
    color: #fff;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 145, 80, 0.35);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(118deg, var(--red-deep) 0%, var(--red-dark) 42%, var(--red) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}
.hero-sub {
    font-size: 16px;
    letter-spacing: 0.14em;
    color: #ffd9b0;
    font-weight: 500;
    margin-bottom: 18px;
}
.hero-sub .accent { color: #ffe6c2; font-weight: 700; }
.hero-title {
    font-family: "Noto Serif JP", serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
}
.hero-lead {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 38px;
    max-width: 620px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Section common ===== */
.section-label,
.intro-label {
    font-size: 13px;
    letter-spacing: 0.24em;
    color: var(--gold);
    font-weight: 700;
    text-align: center;
}
.section-title,
.intro-title {
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--red-dark);
    text-align: center;
    margin-top: 10px;
    letter-spacing: 0.06em;
}

/* ===== Intro ===== */
.intro {
    padding: 88px 0 64px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    margin-top: 40px;
}
.intro-grid .intro-label,
.intro-grid .intro-title { text-align: left; }
.intro-text {
    margin-top: 22px;
    color: var(--text-light);
    font-size: 15.5px;
    line-height: 2.15;
}
.intro-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.intro-photo img { width: 100%; display: block; }

/* ===== Services ===== */
.services {
    padding: 64px 0 96px;
    background: var(--bg-soft);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 32px 26px 30px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #f0d2cf;
}
.service-ico {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.service-ico svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; }
.service-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--red-dark);
}
.service-name::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 12px 0;
}
.service-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
}

/* ===== Monitoring band ===== */
.monitor {
    position: relative;
    background: linear-gradient(115deg, var(--red-dark) 0%, var(--red-deep) 100%);
    color: #fff;
    padding: 80px 0;
}
.monitor-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.monitor .m-label {
    font-size: 13px;
    letter-spacing: 0.24em;
    color: var(--gold-light);
    font-weight: 700;
}
.monitor .m-title {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 10px;
    line-height: 1.5;
}
.monitor .m-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.86);
}
.monitor-points {
    display: grid;
    gap: 16px;
}
.m-point {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 20px 24px;
}
.m-point .mp-ttl {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.m-point .mp-ttl::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
    flex-shrink: 0;
}
.m-point .mp-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 6px;
    line-height: 1.85;
}

/* ===== Eco feature ===== */
.eco {
    padding: 88px 0;
}
.eco-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 44px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.eco-photo {
    text-align: center;
}
.eco-photo img {
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.eco-body .eco-name {
    font-family: "Noto Serif JP", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.04em;
}
.eco-body .eco-name::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 14px 0;
}
.eco-body p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 2.1;
}
.eco-figures {
    display: flex;
    gap: 28px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.eco-fig {
    text-align: center;
}
.eco-fig .ef-num {
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.eco-fig .ef-num small { font-size: 16px; }
.eco-fig .ef-cap {
    font-size: 12.5px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ===== CTA ===== */
.cta {
    background: var(--red);
    color: #fff;
    padding: 56px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-title {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.cta-lead {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-size: 15px;
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cta-tel {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.cta-tel-label {
    font-size: 11px;
    color: #ffe2c6;
    letter-spacing: 0.08em;
}
.cta-tel-num {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--red-deep);
    color: rgba(255, 255, 255, 0.82);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 56px;
    padding-bottom: 40px;
}
.footer-mark {
    font-family: "Noto Serif JP", serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}
.footer-name {
    font-size: 14px;
    margin-top: 6px;
}
.footer-addr {
    font-size: 13px;
    line-height: 1.9;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 36px;
}
.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    transition: color .2s;
}
.footer-nav a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 24px;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-pp {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-pp:hover { color: var(--gold-light); }
.copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Sub-page head banner ===== */
.page-head {
    position: relative;
    background: linear-gradient(115deg, var(--red-dark) 0%, var(--red) 100%);
    color: #fff;
    text-align: center;
    padding: 72px 24px;
    overflow: hidden;
}
.page-head::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
}
.page-head-inner {
    position: relative;
    z-index: 1;
}
.page-head .page-en {
    font-size: 13px;
    letter-spacing: 0.24em;
    color: #ffe2c6;
    font-weight: 700;
}
.page-head .page-ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ===== Breadcrumb ===== */
.crumb {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.crumb ol {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-light);
}
.crumb a:hover { color: var(--red); }
.crumb li + li::before { content: "›"; margin-right: 8px; color: #c9bdb6; }

/* ===== Generic page section ===== */
.page-section {
    padding: 80px 0;
}
.page-section.alt {
    background: var(--bg-soft);
}
.lead-text {
    max-width: 840px;
    margin: 0 auto 8px;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    line-height: 2.1;
}
.block-title {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}
.block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 5px;
    height: 1.2em;
    background: var(--gold);
    border-radius: 2px;
}
.prose {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 2.1;
    color: var(--text);
}
.prose + .prose { margin-top: 16px; }
.prose .small { font-size: 13px; color: var(--text-light); }

/* ===== Cards (3 columns) ===== */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

/* ===== Greeting ===== */
.greeting-card {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 52px 56px;
    box-shadow: var(--shadow);
}
.greeting-card p {
    font-size: 15.5px;
    line-height: 2.2;
    color: var(--text);
}
.greeting-card p + p { margin-top: 20px; }
.greeting-sign {
    text-align: right;
    margin-top: 32px;
}
.greeting-sign .gs-role { font-size: 13px; color: var(--text-light); }
.greeting-sign .gs-name {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ===== Fee structure ===== */
.fee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 44px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.fee-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.fee-card .fc-head {
    background: var(--red);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 16px 24px;
    text-align: center;
}
.fee-card.is-three .fc-head { background: var(--red-dark); }
.fee-card .fc-body { padding: 24px 26px 28px; }
.fee-item { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.fee-item:last-child { border-bottom: none; }
.fee-item .fi-ttl {
    font-weight: 700;
    color: var(--red-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fee-item .fi-ttl .mark {
    background: var(--bg-soft);
    color: var(--red);
    border: 1px solid #f0d2cf;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
}
.fee-item .fi-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 6px;
}

/* ===== Alert (emergency steps) ===== */
.alert-box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #f0cfcc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.alert-head {
    background: var(--red-deep);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert-head .tag {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
    color: var(--red-deep);
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}
.alert-steps {
    counter-reset: step;
    padding: 28px 32px 8px;
}
.alert-steps li {
    position: relative;
    padding: 0 0 24px 56px;
    counter-increment: step;
}
.alert-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 18px;
}
.alert-steps .step-ttl {
    font-size: 18px;
    font-weight: 700;
    color: var(--red-dark);
    line-height: 1.5;
    padding-top: 5px;
}
.alert-steps .step-desc {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 6px;
}
.alert-steps .step-desc .em {
    color: var(--red);
    font-weight: 700;
}

/* ===== Notice ===== */
.notice {
    max-width: 960px;
    margin: 48px auto 0;
    background: var(--bg-soft);
    border-left: 5px solid var(--gold);
    border-radius: 6px;
    padding: 26px 30px;
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}
.notice.is-warn { border-left-color: var(--red); }
.notice strong { color: var(--red-dark); }

/* ===== Company overview table ===== */
.overview-table {
    max-width: 940px;
    margin: 52px auto 0;
    border-top: 1px solid var(--line);
}
.overview-row {
    display: flex;
    gap: 28px;
    padding: 22px 10px;
    border-bottom: 1px solid var(--line);
}
.overview-row dt {
    width: 170px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--red-dark);
    position: relative;
    padding-left: 16px;
}
.overview-row dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 4px;
    height: 1.05em;
    background: var(--gold);
}
.overview-row dd {
    color: var(--text);
    line-height: 1.95;
    flex: 1;
}
/* two-company split cell */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.split .co-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    display: block;
    margin-bottom: 2px;
}

/* ===== Link card (inquiry / reserve) ===== */
.link-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 52px 44px;
    text-align: center;
    box-shadow: var(--shadow);
}
.link-card .lc-ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.04em;
}
.link-card .lc-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
    margin: 18px auto 32px;
    max-width: 540px;
}
.link-card .btn {
    min-width: 280px;
}
.link-card .lc-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
}
.tel-inline {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
}
.tel-inline .ti-label { font-size: 12px; color: var(--text-light); }
.tel-inline .ti-num {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
}

/* contact two cards */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 940px;
    margin: 0 auto;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 38px 34px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
}
.contact-card.is-emg { border-top-color: var(--red); }
.contact-card .cc-en { font-size: 12px; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; }
.contact-card.is-emg .cc-en { color: var(--red); }
.contact-card .cc-ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--red-dark);
    margin: 6px 0 12px;
}
.contact-card .cc-text { font-size: 14px; color: var(--text-light); line-height: 1.9; flex: 1; }
.contact-card .cc-num {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--red);
    margin: 14px 0 4px;
}
.contact-card .btn { margin-top: 18px; }

/* ===== Responsive ===== */
@media screen and (max-width: 900px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-3 { grid-template-columns: repeat(2, 1fr); }
    .header-tel { display: none; }
    .hero-title { font-size: 38px; }
    .intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .monitor-inner { grid-template-columns: 1fr; gap: 32px; }
    .eco-inner { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
    .eco-body .eco-name::after { margin-left: auto; margin-right: auto; }
    .eco-figures { justify-content: center; }
    .fee-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 600px) {
    .header-inner {
        height: auto;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 16px;
    }
    .brand { width: 100%; justify-content: center; }
    .global-nav { margin-left: 0; width: 100%; }
    .global-nav ul { flex-wrap: wrap; justify-content: center; gap: 2px; }
    .global-nav a { padding: 6px 9px; font-size: 12.5px; }
    .container { padding: 0 18px; }

    .hero { min-height: 440px; }
    .hero-title { font-size: 27px; }
    .hero-lead { font-size: 14px; }
    .hero-actions .btn { flex: 1; padding: 14px 14px; font-size: 14px; }

    .intro { padding: 56px 0 44px; }
    .intro-title, .section-title { font-size: 24px; }

    .services { padding: 48px 0 64px; }
    .service-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
    .cards-3 { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }

    .monitor { padding: 56px 0; }
    .monitor .m-title { font-size: 24px; }

    .eco { padding: 56px 0; }

    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-title { font-size: 22px; }
    .cta-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 18px; }
    .cta-actions .btn { width: 100%; }

    .page-head { padding: 48px 18px; }
    .page-head .page-ttl { font-size: 26px; }
    .page-section { padding: 52px 0; }
    .lead-text { text-align: left; font-size: 15px; }
    .greeting-card { padding: 32px 22px; }
    .alert-head { font-size: 18px; padding: 14px 18px; }
    .alert-steps { padding: 22px 18px 4px; }
    .alert-steps li { padding-left: 48px; }
    .overview-row { flex-direction: column; gap: 6px; padding: 18px 6px; }
    .overview-row dt { width: auto; }
    .split { grid-template-columns: 1fr; gap: 10px; }
    .link-card { padding: 36px 22px; }
    .link-card .btn { min-width: 0; width: 100%; }

    .footer-inner { flex-direction: column; gap: 28px; padding-top: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
