:root {
    --blue: #1261c3;
    --deep: #092d5c;
    --text: #092247;
    --muted: #5e718c;
    --line: #cfe1f5;
    --soft: #f4f9ff;
    --orange: #ff7417;
    --bg: #f5f8fd;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-weight: 700;
    background: #fff;
}


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

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

.container {
    width: min(1188px, calc(100% - 72px));
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #d8e6f5;
    box-shadow: 0 2px 14px rgba(20, 87, 158, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    display: block;
    height: 56px;
    width: auto;
}


.global-nav {
    display: flex;
    align-items: center;
    gap: 43px;
    font-size: 14px;
    min-width: 0;
}

.global-nav a {
    position: relative;
    padding: 32px 0 30px;
}

.global-nav a.active {
    color: #006bdd;
}

.global-nav a.active::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    content: "";
    background: #006bdd;
    border-radius: 2px;
}

.hero {
    padding: 56px 0 26px;
    background: radial-gradient(circle at 78% 22%, #dff1ff 0, rgba(223, 241, 255, 0) 34%), linear-gradient(180deg, #f6fbff, #edf7ff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 455px 1fr;
    align-items: center;
    gap: 44px;
}

.eyebrow {
    display: flex;
    flex-wrap: nowrap;
    gap: .25em;
    margin: 0 0 20px;
    color: #1263c4;
    font-size: 22px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.eyebrow::before {
    content: "◆";
    margin-right: 8px;
    font-size: 20px;
    flex-shrink: 0;
}

.eyebrow span {
    white-space: nowrap;
}

h1 {
    margin: 0 0 23px;
    color: #092a5a;
    font-size: 54px;
    line-height: 1.2;
    letter-spacing: .06em;
}

.hero-lead {
    margin: 0 0 28px;
    color: #071e3d;
    font-size: 20px;
    line-height: 1.7;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 382px;
    min-height: 62px;
    padding: 0 30px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    background: linear-gradient(180deg, #ff8625, #ff650e);
    border-radius: 31px;
    box-shadow: 0 10px 18px rgba(235, 101, 16, .25);
}

.primary-cta::before {
    flex: 0 0 auto;
    content: "⌕";
    font-size: 28px;
    line-height: 1;
}

.primary-cta span {
    margin-left: 8px;
    font-size: 17px;
    white-space: nowrap;
}

.hero-art img {
    display: block;
    width: 100%;
    max-width: 590px;
    margin-left: auto;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(33, 91, 150, .12);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 14px 0 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px 20px;
    background: #fff;
    border: 1px solid #80b9ee;
    border-radius: 10px;
    box-shadow: 0 9px 24px rgba(31, 93, 155, .06);
    transition: box-shadow .18s, transform .18s;
}

.feature-card:hover {
    box-shadow: 0 14px 32px rgba(31, 93, 155, .13);
    transform: translateY(-2px);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 0;
    line-height: 1;
    background: linear-gradient(135deg, #1976dc, #0750ad);
    border-radius: 12px;
}

.feature-icon::before {
    font-size: 26px;
    line-height: 1;
}

.feature-icon.yen::before {
    content: "¥";
}

.feature-icon.speed::before {
    content: "◷";
    font-size: 28px;
}

.feature-icon.shield::before {
    content: "✓";
    font-size: 28px;
}

.feature-icon.support::before {
    content: "☎";
    font-size: 24px;
}

.feature-card strong {
    display: block;
    color: #0961c8;
    font-size: 18px;
    margin-top: 2px;
}

.feature-card small {
    display: block;
    color: #08264f;
    font-size: 13px;
    line-height: 1.65;
}

.compare-panel,
.info-card {
    background: #fff;
    border: 1px solid #d4e5f6;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(33, 91, 150, .08);
}

.consult-panel {
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #07366d, #0c64bc);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(13, 77, 143, .18);
}

.section-label {
    margin: 0 0 12px;
    color: #1672d8;
    font-size: 14px;
    letter-spacing: .08em;
}

.consult-copy h2,
.consult-copy p {
    color: #fff;
}

.consult-copy h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.45;
}

.consult-copy p:not(.section-label) {
    margin: 0 0 22px;
    color: #e7f3ff;
    font-size: 15px;
    line-height: 1.9;
}

.consult-copy .section-label {
    color: #9bd2ff;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: #07366d;
    background: #fff;
    border-radius: 23px;
}

.consult-points {
    display: grid;
    gap: 12px;
}

.consult-points div {
    padding: 18px 20px;
    background: rgba(255, 255, 255, .96);
    border-radius: 8px;
}

.consult-points strong,
.consult-points span {
    display: block;
}

.consult-points strong {
    color: #07366d;
    font-size: 18px;
}

.consult-points span {
    margin-top: 6px;
    color: #405a78;
    font-size: 13px;
    line-height: 1.6;
}

.compare-panel {
    padding: 24px 18px 22px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 22px;
}

.section-head h2,
.info-card h2 {
    margin: 0;
    color: #064d9f;
    font-size: 22px;
}

.section-head a {
    color: #0060bd;
    font-size: 14px;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 930px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #d4e1ee;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

.compare-table th,
.compare-table td {
    height: 50px;
    padding: 9px 12px;
    border-right: 1px solid #d4e1ee;
    border-bottom: 1px solid #d4e1ee;
    background: #fff;
}

.compare-table thead th {
    height: 82px;
}

.compare-table tbody th {
    width: 160px;
    text-align: left;
    background: var(--bg);
    border-bottom-color: #b8cfe3;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}

.server-logo {
    margin-bottom: 4px;
    font-size: 19px;
    line-height: 1;
}

.server-logo.xserver,
.server-logo.heteml {
    color: #071d38;
}

.server-logo.cpi {
    color: #1a6e3c;
}

.server-logo.lolipop {
    color: #ff3b1f;
}

.server-logo.sakura {
    color: #df5d92;
    font-size: 14px;
}

.compare-table small {
    color: #0e54a5;
    font-size: 11px;
}

.stars {
    color: #ffb300;
    letter-spacing: 1px;
}

.price {
    color: #0664c8;
    font-size: 18px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 38px;
    padding: 0 12px;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
}

.site-button.blue { background: #0969d3; }
.site-button.green { background: #1a6e3c; }
.site-button.orange { background: #ff4c1f; }
.site-button.pink { background: #df6a9d; }
.site-button.navy { background: #073e84; }

.note {
    margin: 12px 4px 0;
    color: #71849b;
    font-size: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.55fr .98fr 1fr;
    gap: 16px;
    padding: 18px 0 26px;
}

.info-card {
    padding: 22px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.purpose-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 116px;
    padding: 18px;
    border: 1px solid #d4e1ee;
    border-radius: 8px;
    background: #fff;
}

.purpose-item span {
    grid-row: span 2;
    color: #2177d7;
    font-size: 32px;
}

.purpose-item strong {
    font-size: 16px;
    line-height: 1.55;
}

.purpose-item small {
    align-self: end;
    color: #0067ca;
    font-size: 12px;
}

.about img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin: 20px 0 10px;
    border-radius: 7px;
}

.about p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}

.about a {
    display: block;
    margin-top: 10px;
    color: #0069d2;
    text-align: right;
}

.links {
    display: flex;
    flex-direction: column;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 12px;
    color: #0758b1;
    border: 1px solid #d4e1ee;
    border-bottom: 0;
    font-size: 14px;
}

.links a:first-of-type {
    margin-top: 20px;
    border-radius: 7px 7px 0 0;
}

.links a:last-child {
    border-bottom: 1px solid #d4e1ee;
    border-radius: 0 0 7px 7px;
}

.recommend {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1.4fr 1fr auto;
    align-items: center;
    min-height: 124px;
    margin-bottom: 50px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ffbf3b;
    border-radius: 8px;
}

.recommend > * {
    padding: 0 24px;
}

.recommend-lead {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding: 22px 24px;
    background: linear-gradient(90deg, #fff7d8, #fff0b7);
}

.recommend-lead span {
    color: #f2c148;
    font-size: 48px;
}

.recommend-logo {
    color: #071d38;
    font-size: 30px;
}

.recommend-logo small {
    display: block;
    margin-top: 8px;
    color: #0b4a94;
    font-size: 14px;
}

.recommend ul {
    margin: 0;
    padding-left: 24px;
    color: #0a3b78;
    font-size: 14px;
    line-height: 2;
}

.recommend li::marker {
    color: #23b360;
}

.recommend-price {
    border-left: 1px solid #f1c78a;
    font-size: 16px;
    white-space: nowrap;
}

.recommend-price b {
    color: #ff4b19;
    font-size: 32px;
}

.primary-cta.small {
    min-width: 0;
    min-height: 46px;
    padding: 0 22px;
    font-size: 15px;
    border-radius: 7px;
    white-space: nowrap;
}

.primary-cta.small::before {
    display: none;
}

.recommend .primary-cta.small {
    margin: 0 20px;
    padding: 0 20px;
}

.footer-directory {
    padding: 70px 0 66px;
    background: #fff;
}

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

.footer-column {
    min-width: 0;
    min-height: 300px;
    padding-right: 32px;
    border-right: 1px solid #d8e4f2;
}

.footer-column:last-child {
    border-right: 0;
}

.footer-column h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.35;
    white-space: nowrap;
}

.footer-column h2 span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #146dce;
    border-radius: 50%;
}

.footer-column a {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    font-size: 16px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.footer-column a span {
    flex: 0 0 auto;
    color: #7b8ca1;
    font-size: 24px;
}

.newsletter {
    display: grid;
    grid-template-columns: 1.4fr 1.45fr 250px;
    gap: 14px;
    align-items: center;
    margin-top: 44px;
    padding: 32px;
    border: 1px solid #2377d2;
    border-radius: 10px;
}

.newsletter-title {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 18px;
}

.newsletter-title span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    background: #e7f2ff;
    border-radius: 50%;
}

.newsletter-title strong {
    font-size: 22px;
}

.newsletter-title small {
    color: #213e62;
    font-size: 15px;
    line-height: 1.65;
}

.newsletter input,
.newsletter button {
    height: 62px;
    border-radius: 8px;
    font: inherit;
}

.newsletter input {
    width: 100%;
    padding: 0 24px;
    color: #6b7f99;
    background: #fff;
    border: 1px solid #cfddec;
    font-size: 18px;
}

.newsletter button {
    color: #fff;
    background: linear-gradient(180deg, #1685e4, #075fc2);
    border: 0;
    font-size: 18px;
    cursor: pointer;
}

.newsletter p {
    grid-column: 2 / 4;
    margin: 0;
    color: #6b7f99;
    font-size: 13px;
}

.footer-main {
    /* background / color は各子要素で管理 */
}

.footer-brand-row {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 30px;
    padding: 50px 0;
    color: #06214a;
    background: #fff;
}

.footer-brand p,
.footer-promise span {
    color: #2d5a82;
    font-size: 13px;
    line-height: 1.9;
}

.footer-promise {
    padding-left: 28px;
    border-left: 1px dashed rgba(6, 33, 74, .22);
}

.promise-icon {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    color: #1680ee;
}

.footer-promise strong {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
}

.shield-icon {
    width: 36px;
    height: 42px;
    background: linear-gradient(180deg, #78c0ff, #2177d7);
    clip-path: polygon(50% 0, 88% 14%, 82% 68%, 50% 100%, 18% 68%, 12% 14%);
    box-shadow: 0 8px 18px rgba(54, 150, 255, .22);
}

.shield-icon::after {
    position: absolute;
    top: 10px;
    left: 11px;
    width: 14px;
    height: 8px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    content: "";
    transform: rotate(-45deg);
}

.search-icon::before {
    position: absolute;
    top: 5px;
    left: 4px;
    width: 22px;
    height: 22px;
    border: 5px solid currentColor;
    border-radius: 50%;
    content: "";
}

.search-icon::after {
    position: absolute;
    right: 5px;
    bottom: 6px;
    width: 18px;
    height: 5px;
    background: currentColor;
    border-radius: 3px;
    content: "";
    transform: rotate(45deg);
}

.source-icon::before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 25px;
    height: 22px;
    border: 5px solid currentColor;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    content: "";
}

.source-icon::after {
    position: absolute;
    right: 2px;
    bottom: 5px;
    width: 12px;
    height: 18px;
    background: currentColor;
    border-radius: 3px;
    box-shadow: -25px 0 0 currentColor;
    content: "";
}

.footer-bottom {
    padding: 26px 0 32px;
    color: var(--text);
    text-align: center;
    background: #fff;
    border-top: 1px solid #d8e6f5;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 30px;
    margin-bottom: 22px;
}

.footer-bottom a + a {
    position: relative;
}

.footer-bottom a + a::before {
    position: absolute;
    left: -16px;
    color: var(--line);
    content: "|";
}

.footer-bottom p {
    margin: 0;
}

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

.support-hero {
    padding: 64px 0;
    background: radial-gradient(circle at 78% 22%, #dff1ff 0, rgba(223, 241, 255, 0) 34%), linear-gradient(180deg, #f6fbff, #edf7ff);
}

.page-hero {
    padding: 58px 0 50px;
    background: radial-gradient(circle at 82% 20%, #dff1ff 0, rgba(223, 241, 255, 0) 34%), linear-gradient(180deg, #f6fbff, #edf7ff);
}

.page-hero h1 {
    max-width: 100%;
}

.page-hero .hero-lead {
    max-width: 100%;
}

.page-section {
    margin-top: 28px;
    margin-bottom: 34px;
}

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

.detail-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #d4e5f6;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(33, 91, 150, .08);
}

.detail-card h2 {
    margin: 0 0 12px;
    color: #064d9f;
    font-size: 24px;
}

.detail-card p {
    margin: 0 0 18px;
    color: #36506e;
    font-size: 14px;
    line-height: 1.8;
}

.detail-card dl {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 8px 12px;
    margin: 0 0 18px;
    font-size: 14px;
}

.detail-card dt {
    color: #5e718c;
}

.detail-card dd {
    margin: 0;
}

.text-link {
    color: #0961c8;
}

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

.faq-list h2 {
    margin: 24px 0 4px;
    padding-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1f5d9b;
    letter-spacing: .04em;
    border-bottom: 1px solid #d4e5f6;
}

.faq-list h2:first-child {
    margin-top: 0;
}

.faq-list details {
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #d4e5f6;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(33, 91, 150, .06);
}

.faq-list summary {
    color: #07366d;
    cursor: pointer;
    font-size: 18px;
}

.faq-list p {
    margin: 12px 0 0;
    color: #36506e;
    line-height: 1.8;
}

.content-panel {
    padding: 34px;
    background: #fff;
    border: 1px solid #d4e5f6;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(33, 91, 150, .08);
}

.content-panel h2 {
    margin: 28px 0 12px;
    color: #07366d;
    font-size: 24px;
}

.content-panel h2:first-child {
    margin-top: 0;
}

.content-panel p {
    margin: 0 0 16px;
    color: #36506e;
    line-height: 1.9;
}

.content-panel ul {
    margin: 0 0 20px;
    padding-left: 1.4em;
    color: #36506e;
    line-height: 1.9;
}

.content-panel ul li {
    margin-bottom: 8px;
}

.info-dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    margin: 24px 0 0;
    border: 1px solid #d4e5f6;
    border-radius: 8px;
    overflow: hidden;
}

.info-dl dt,
.info-dl dd {
    margin: 0;
    padding: 14px 18px;
    border-bottom: 1px solid #d4e5f6;
}

.info-dl dt {
    color: #07366d;
    background: var(--bg);
}

.info-dl dd {
    color: #36506e;
}

.info-dl dt:last-of-type,
.info-dl dd:last-of-type {
    border-bottom: 0;
}

.contact-panel {
    display: block;
    max-width: 860px;
}

.contact-panel > div {
    margin-bottom: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form button[type="submit"] {
    justify-self: center;
    margin-top: 8px;
}

.contact-form label {
    display: block;
    color: #07366d;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    color: #092247;
    font: inherit;
    font-weight: 600;
    background: #fff;
    border: 1px solid #cfddec;
    border-radius: 7px;
}

.required {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    margin-left: 8px;
    padding: 0 7px;
    color: #fff;
    background: #ff7417;
    border-radius: 10px;
    font-size: 11px;
}

.form-error {
    margin: -6px 0 4px;
    color: #c2410c;
    font-size: 13px;
}

.form-complete {
    padding: 24px;
    background: var(--bg);
    border: 1px solid #d4e5f6;
    border-radius: 8px;
}

.form-complete strong {
    display: block;
    margin-bottom: 14px;
    color: #07366d;
    font-size: 20px;
}

.form-complete dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px 12px;
    margin: 0 0 16px;
    color: #36506e;
}

.form-complete dt {
    color: #07366d;
}

.form-complete dd {
    margin: 0;
}

.support-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
    gap: 46px;
    align-items: center;
}

.support-card,
.support-section,
.support-contact {
    background: #fff;
    border: 1px solid #d4e5f6;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(33, 91, 150, .08);
}

.support-card {
    min-width: 0;
    padding: 32px;
}

.support-visual {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 22px;
    border-radius: 8px;
}

.support-card strong {
    display: block;
    margin-bottom: 16px;
    color: #064d9f;
    font-size: 24px;
}

.support-card ul,
.support-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-card li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid #e3edf8;
    line-height: 1.6;
}

.support-card li:last-child {
    border-bottom: 0;
}

.support-card li::before {
    position: absolute;
    left: 0;
    color: #16a34a;
    content: "✓";
}

.support-section {
    margin: 28px auto;
    padding: 34px;
}

.support-section h2,
.support-contact h2 {
    margin: 0 0 20px;
    color: #07366d;
    font-size: 30px;
    line-height: 1.45;
}

.support-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.support-values div {
    padding: 22px;
    background: var(--bg);
    border: 1px solid #d4e5f6;
    border-radius: 8px;
}

.support-values strong {
    display: block;
    margin-bottom: 10px;
    color: #0961c8;
    font-size: 18px;
}

.support-values p,
.support-contact p {
    margin: 0;
    color: #36506e;
    font-size: 15px;
    line-height: 1.8;
}

.support-steps {
    display: grid;
    gap: 12px;
    counter-reset: step;
}

.support-steps li {
    display: grid;
    grid-template-columns: 54px auto 1fr;
    align-items: center;
    min-height: 76px;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid #d4e5f6;
    border-radius: 8px;
    counter-increment: step;
}

.support-steps li::before {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    content: counter(step);
    background: #1261c3;
    border-radius: 50%;
}

.support-steps strong {
    padding-right: 20px;
    color: #07366d;
    font-size: 18px;
    white-space: nowrap;
}

.support-steps span {
    color: #405a78;
    font-size: 14px;
    line-height: 1.7;
}

.support-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 34px;
    align-items: center;
    margin: 34px auto 92px;
    padding: 34px;
    border-color: #ffbf3b;
}

.support-contact .primary-cta {
    justify-self: end;
    width: 100%;
    min-width: 0;
    max-width: 340px;
    padding: 0 24px;
    white-space: nowrap;
}

.support-contact.contact-panel {
    display: block;
    max-width: 860px;
}

.support-contact.contact-panel > div {
    margin-bottom: 26px;
}

.support-contact.contact-panel .contact-form,
.support-contact.contact-panel .form-complete {
    max-width: none;
}

@media (max-width: 980px) {
    .container {
        width: min(100% - 28px, 720px);
    }

    .header-inner,
    .hero-grid,
    .section-head {
        display: block;
    }

    .site-header {
        padding: 16px 0;
    }

    .global-nav {
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-top: 16px;
        overflow: visible;
        white-space: normal;
    }

    .global-nav a {
        padding: 8px 0;
    }

    .global-nav a.active::after {
        bottom: 4px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-art img {
        margin: 28px auto 0;
    }

    .feature-row,
    .consult-panel,
    .info-grid,
    .card-grid,
    .footer-columns,
    .footer-brand-row,
    .newsletter,
    .recommend,
    .support-hero-grid,
    .support-values,
    .support-contact {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 76px 1fr;
    }

    .compare-panel {
        padding: 22px 14px;
    }

    .section-head {
        padding: 0 6px 18px;
    }

    .table-wrap {
        margin: 0 -2px;
        padding-bottom: 8px;
    }

    .compare-table {
        min-width: 820px;
        font-size: 13px;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 10px;
    }

    .compare-table tbody th {
        position: sticky;
        left: 0;
        z-index: 1;
        width: 128px;
        min-width: 118px;
    }

    .compare-table thead th:first-child {
        min-width: 118px;
    }

    .compare-table thead th:not(:first-child),
    .compare-table tbody td {
        min-width: 132px;
    }

    .footer-column {
        min-height: 0;
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid #d8e4f2;
    }

    .footer-column h2 {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .footer-column a {
        padding: 9px 0;
        font-size: 15px;
    }

    .footer-brand-row {
        gap: 0;
        padding: 38px 0;
    }

    .footer-promise {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 16px;
        padding: 22px 0 0;
        border-top: 1px dashed rgba(255,255,255,.34);
        border-left: 0;
    }

    .footer-promise .promise-icon {
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

    .footer-promise strong {
        margin-top: 0;
    }

    .footer-bottom nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        width: min(100% - 28px, 520px);
        margin: 0 auto 18px;
    }

    .footer-bottom a {
        padding: 8px 10px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 6px;
    }

    .footer-bottom a + a::before {
        display: none;
    }

    .newsletter p {
        grid-column: auto;
    }

    .recommend {
        padding-bottom: 22px;
    }

    .recommend > * {
        padding: 18px 24px;
    }

    .recommend-price {
        border-left: 0;
    }

    .support-steps li {
        grid-template-columns: 48px 1fr;
    }

    .support-steps span {
        grid-column: 2;
    }

    .support-contact {
        gap: 22px;
        margin-bottom: 78px;
    }

    .support-contact .primary-cta {
        justify-self: stretch;
        max-width: none;
    }

    .info-dl,
    .form-complete dl {
        grid-template-columns: 1fr;
    }

    .info-dl dt,
    .info-dl dd,
    .form-complete dt,
    .form-complete dd {
        border-bottom: 1px solid #d4e5f6;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 720px);
    }

    .site-header {
        padding: 14px 0;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        height: 44px;
    }

    .global-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        font-size: 13px;
    }

    .global-nav a {
        padding: 8px 6px;
        text-align: center;
        border: 1px solid #d8e6f5;
        border-radius: 6px;
    }

    .global-nav a.active {
        background: #eaf4ff;
    }

    .global-nav a.active::after {
        display: none;
    }

    .eyebrow,
    .hero-lead {
        font-size: 16px;
    }

    h1 {
        font-size: 35px;
    }

    .primary-cta {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 0 18px;
        font-size: 17px;
    }

    .primary-cta::before {
        font-size: 23px;
    }

    .primary-cta span {
        margin-left: 4px;
        font-size: 14px;
    }

    .primary-cta.small {
        white-space: normal;
        max-width: 100%;
        font-size: 13px;
        padding: 8px 16px;
        min-height: 40px;
        line-height: 1.4;
    }

    .recommend {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .recommend > * {
        padding: 14px 18px;
    }

    .recommend-lead {
        padding: 16px 18px;
    }

    .recommend-logo {
        font-size: 24px;
        padding-top: 18px;
    }

    .recommend ul {
        padding-left: 30px;
    }

    .recommend .primary-cta.small {
        display: flex;
        width: calc(100% - 36px);
        margin: 0 18px 18px;
    }

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

    .feature-card {
        grid-template-columns: 58px 1fr;
        min-height: 104px;
        padding: 18px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .feature-icon::before {
        font-size: 28px;
    }

    .feature-card strong {
        font-size: 18px;
    }

    .footer-directory {
        padding: 42px 0;
    }

    .footer-column h2 span {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .newsletter {
        padding: 22px;
    }

    .newsletter-title {
        grid-template-columns: 56px 1fr;
        gap: 12px;
    }

    .newsletter-title span {
        width: 52px;
        height: 52px;
    }

    .newsletter input,
    .newsletter button {
        height: 54px;
        font-size: 16px;
    }

    .footer-bottom nav {
        grid-template-columns: 1fr;
    }

    .compare-panel {
        padding: 20px 10px;
    }

    .section-head h2,
    .info-card h2 {
        font-size: 20px;
        line-height: 1.45;
    }

    .section-head a {
        display: inline-block;
        margin-top: 8px;
    }

    .support-section,
    .support-contact,
    .support-card {
        padding: 22px;
    }

    .support-contact {
        margin-bottom: 64px;
    }

    .support-steps li {
        grid-template-columns: 42px 1fr;
        padding: 14px;
    }

    .support-steps span {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}
