@charset "UTF-8";

:root {
    --black: #111111;
    --black-soft: #1b1b1b;
    --graphite: #2b2b2b;
    --orange: #f28c00;
    --orange-bright: #ff9f0a;
    --orange-pale: #fff4e4;
    --wine: #8d0b2a;
    --ink: #222222;
    --muted: #686868;
    --line: #dedbd6;
    --off-white: #f7f5f1;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(15, 15, 15, .10);
    --container: 1180px;
    --radius: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #ffd170;
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--black);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow,
.hero__eyebrow {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.4;
}

.button {
    min-height: 54px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.3;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 13px;
}

.button--primary {
    color: var(--black);
    background: var(--orange-bright);
}

.button--primary:hover {
    background: #ffb337;
}

.button--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .65);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(6px);
}

.button--outline:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.button--dark {
    color: var(--white);
    background: var(--black);
}

.button--dark:hover {
    background: var(--wine);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .04);
}

.company-bar {
    color: #e7e7e7;
    background: var(--black);
    font-size: 11px;
    letter-spacing: .03em;
    line-height: 1.2;
}

.company-bar__inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-bar p {
    margin: 0;
}

.company-bar a {
    color: var(--white);
    text-decoration: none;
}

.company-bar strong {
    margin-left: 7px;
    color: var(--orange-bright);
    font-size: 13px;
    letter-spacing: .04em;
}

.header-main {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: flex-end;
    gap: 13px;
    flex: 0 0 auto;
    color: var(--black);
    text-decoration: none;
}

.brand img {
    width: 138px;
    height: auto;
    display: block;
}

.brand span {
    margin-bottom: 6px;
    padding-left: 12px;
    border-left: 1px solid #c7c7c7;
    color: #5d5d5d;
    font-size: 10px;
    letter-spacing: .12em;
    white-space: nowrap;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-self: stretch;
}

.desktop-nav a {
    position: relative;
    padding: 0 14px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: var(--black);
}

.hero__image,
.hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center 55%;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .83) 32%, rgba(8, 8, 8, .35) 65%, rgba(8, 8, 8, .10) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 45%);
}

.hero__content {
    padding-top: 116px;
    padding-bottom: 150px;
}

.hero__eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(45px, 6.2vw, 80px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.2;
}

.hero h1::after {
    content: "";
    width: 72px;
    height: 5px;
    margin-top: 28px;
    display: block;
    background: var(--orange-bright);
}

.hero__lead {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 2;
}

.hero__actions {
    margin-top: 36px;
    display: flex;
    gap: 12px;
}

.hero__facts {
    position: absolute;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    color: var(--black);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
}

.hero__facts div {
    min-width: 170px;
    padding: 20px 28px;
    border-left: 1px solid #dadada;
}

.hero__facts div:first-child {
    border-left: 4px solid var(--orange);
}

.hero__facts strong,
.hero__facts span {
    display: block;
}

.hero__facts strong {
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1.2;
}

.hero__facts span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .05em;
}

.transfer-notice {
    color: var(--white);
    background: var(--wine);
}

.transfer-notice__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.transfer-notice time {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
}

.transfer-notice p {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

.transfer-notice a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.transfer-notice a span {
    color: #ffca62;
    font-size: 18px;
}

.label {
    min-width: 66px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5d4b33;
    border: 1px solid #d9c39f;
    background: #fff6e7;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.label--important {
    color: var(--white);
    border-color: var(--wine);
    background: var(--wine);
}

.transfer-notice .label--important {
    color: var(--wine);
    border-color: var(--white);
    background: var(--white);
}

.section {
    padding: 112px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
    align-items: end;
    gap: 80px;
}

.section-heading h2,
.support h2,
.company h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(35px, 4.4vw, 55px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.35;
}

.section-heading > p:last-child,
.section-heading--split > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 2.05;
}

.section-heading--split > div:last-child p {
    margin: 0 0 1em;
    color: var(--muted);
    font-size: 15px;
    line-height: 2.05;
}

.section-heading--split > div:last-child p:last-child {
    margin-bottom: 0;
}

.section--service {
    background:
        linear-gradient(135deg, rgba(242, 140, 0, .065) 0 16%, transparent 16% 100%),
        var(--off-white);
}

.plan-card {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
    overflow: hidden;
    border-top: 5px solid var(--orange);
    background: var(--white);
    box-shadow: var(--shadow);
}

.plan-card__intro {
    padding: 48px;
    color: var(--white);
    background: var(--black);
}

.plan-card__caption {
    margin: 0 0 8px;
    color: var(--orange-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.plan-card__intro h3 {
    margin: 0;
    font-size: 31px;
    line-height: 1.4;
}

.plan-card__intro > p:not(.plan-card__caption) {
    margin: 14px 0 0;
    color: #cfcfcf;
    font-size: 14px;
}

.plan-card__price {
    margin: 32px 0;
    padding: 26px 0;
    border-top: 1px solid #3e3e3e;
    border-bottom: 1px solid #3e3e3e;
}

.plan-card__price > span,
.plan-card__price strong,
.plan-card__price p {
    display: block;
}

.plan-card__price > span {
    font-size: 12px;
}

.plan-card__price strong {
    margin-top: 2px;
    color: var(--orange-bright);
    font-family: Arial, sans-serif;
    font-size: 45px;
    line-height: 1.25;
}

.plan-card__price small {
    margin-inline: 2px;
    color: var(--white);
    font-family: inherit;
    font-size: 12px;
}

.plan-card__price p {
    margin: 3px 0 0;
    color: #a9a9a9;
    font-size: 11px;
}

.plan-card__intro .button {
    width: 100%;
    color: var(--black);
    background: var(--orange-bright);
}

.plan-card__intro .button:hover {
    background: #ffb337;
}

.plan-card__specs {
    padding: 12px 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.spec {
    min-height: 190px;
    padding: 34px 26px;
    display: flex;
    gap: 22px;
    border-bottom: 1px solid var(--line);
}

.spec:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.spec:nth-last-child(-n+2) {
    border-bottom: 0;
}

.spec__number {
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.spec p,
.spec strong,
.spec small {
    display: block;
}

.spec p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 12px;
}

.spec strong {
    color: var(--black);
    font-size: 27px;
    line-height: 1.35;
}

.spec small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.section--dark {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.section--dark::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -120px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(242, 140, 0, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(242, 140, 0, .035), 0 0 0 160px rgba(242, 140, 0, .025);
}

.section-heading--light {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

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

.section-heading--light > p:last-child {
    max-width: 570px;
    margin-top: 25px;
    color: #bcbcbc;
}

.feature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #444;
}

.feature-card {
    position: relative;
    min-height: 385px;
    padding: 44px 48px;
    overflow: hidden;
    background: var(--black-soft);
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(242, 140, 0, .16);
    border-radius: 50%;
    transition: transform .3s ease;
}

.feature-card:hover::after {
    transform: scale(1.2);
}

.feature-card__number {
    position: absolute;
    top: 28px;
    right: 32px;
    color: #545454;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.feature-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--orange-bright);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.feature-card h3 {
    margin: 25px 0 12px;
    font-size: 25px;
    line-height: 1.5;
}

.feature-card p {
    max-width: 470px;
    margin: 0;
    color: #bcbcbc;
    font-size: 14px;
}

.feature-card ul {
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
}

.feature-card li {
    padding: 5px 10px;
    border: 1px solid #4a4a4a;
    color: #d7d7d7;
    font-size: 11px;
}

.spec-details {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    border: 1px solid #414141;
    background: var(--black-soft);
}

.spec-details summary {
    padding: 20px 56px 20px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
}

.spec-details summary::-webkit-details-marker {
    display: none;
}

.spec-details summary::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 24px;
    color: var(--orange-bright);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.spec-details[open] summary::after {
    content: "−";
}

.spec-table-wrap {
    padding: 0 24px 24px;
    overflow-x: auto;
}

.spec-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.spec-details th,
.spec-details td {
    padding: 14px 16px;
    border: 1px solid #414141;
    text-align: left;
    vertical-align: top;
}

.spec-details th {
    width: 180px;
    color: var(--orange-bright);
    background: #242424;
}

.spec-details td {
    color: #d0d0d0;
}

.source-notes {
    margin: 18px 0 0;
    padding: 0;
    color: #aaa;
    font-size: 11px;
    list-style: none;
}

.section--price {
    background: var(--white);
}

.price-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
}

.price-main,
.price-side article {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .055);
}

.price-main {
    border-top: 5px solid var(--orange);
}

.price-main__heading {
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.price-main__heading p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .07em;
}

.price-main__heading h3 {
    margin: 0;
    color: var(--black);
    font-size: 25px;
}

.price-main__heading > span {
    padding: 6px 11px;
    color: var(--black);
    background: var(--orange-bright);
    font-size: 11px;
    font-weight: 700;
}

.price-list {
    margin: 0;
    padding: 12px 34px 28px;
}

.price-source-note {
    margin: -10px 34px 28px;
    padding: 15px 18px;
    color: var(--wine);
    background: #fff1f3;
    font-size: 11px;
}

.price-list > div {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid var(--line);
}

.price-list > div:last-child {
    border-bottom: 0;
}

.price-list dt {
    font-size: 14px;
    font-weight: 700;
}

.price-list dd {
    margin: 0;
    text-align: right;
}

.price-list strong,
.price-list small {
    display: block;
}

.price-list strong {
    color: var(--black);
    font-size: 23px;
    line-height: 1.35;
}

.price-list small {
    color: var(--muted);
    font-size: 11px;
}

.price-list__accent strong {
    color: var(--wine);
}

.price-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.price-side article {
    padding: 26px 30px;
}

.price-side__label {
    margin: 0;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
}

.price-side h3 {
    margin: 4px 0 17px;
    color: var(--black);
    font-size: 19px;
}

.price-side dl {
    margin: 0;
}

.price-side dl > div {
    padding: 9px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    border-top: 1px dotted #c8c5bf;
    font-size: 12px;
}

.price-side dt {
    color: #555;
}

.price-side dd {
    margin: 0;
    color: var(--black);
    font-weight: 700;
    white-space: nowrap;
}

.price-side article > p:last-child {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.price-note {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.pack-details {
    position: relative;
    margin-top: 24px;
    border: 1px solid var(--line);
    background: var(--white);
}

.pack-details summary {
    padding: 20px 58px 20px 24px;
    cursor: pointer;
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.pack-details summary::-webkit-details-marker {
    display: none;
}

.pack-details summary::after {
    content: "+";
    position: absolute;
    top: 15px;
    right: 24px;
    color: var(--orange);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
}

.pack-details[open] summary::after {
    content: "−";
}

.pack-details__body {
    padding: 26px 30px 30px;
    border-top: 3px solid var(--orange);
    color: #4c4c4c;
    font-size: 13px;
}

.pack-details__body > p {
    margin: 0 0 20px;
}

.pack-details__body h3 {
    margin: 26px 0 10px;
    color: var(--black);
    font-size: 19px;
}

.pack-table-wrap {
    overflow-x: auto;
}

.pack-details table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.pack-details th,
.pack-details td {
    padding: 12px 15px;
    border: 1px solid var(--line);
    text-align: center;
}

.pack-details th {
    background: var(--orange-pale);
}

.pack-details__notes {
    margin: 17px 0 0 !important;
    color: var(--muted);
    font-size: 11px;
}

.section--news {
    background: var(--off-white);
}

.section-heading--news {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: end;
    gap: 70px;
}

.news-list {
    border-top: 2px solid var(--black);
}

.news-item {
    scroll-margin-top: 120px;
    border-bottom: 1px solid #cecac3;
}

.news-item summary {
    position: relative;
    min-height: 86px;
    padding: 22px 60px 22px 12px;
    display: grid;
    grid-template-columns: 105px 82px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    cursor: pointer;
    list-style: none;
}

.news-item summary::-webkit-details-marker {
    display: none;
}

.news-item summary:hover {
    background: rgba(255, 255, 255, .72);
}

.news-item time {
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.news-item summary strong {
    font-size: 14px;
    line-height: 1.6;
}

.news-item__toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
}

.news-item__toggle::before,
.news-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    background: var(--orange);
    transform: translate(-50%, -50%);
}

.news-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.news-item[open] .news-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0);
}

.news-item[open] summary {
    background: var(--white);
}

.news-item__body {
    margin: 0 12px 28px;
    padding: 31px 36px;
    border-top: 3px solid var(--orange);
    color: #3e3e3e;
    background: var(--white);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.news-item__body p {
    margin: 0 0 1.45em;
}

.news-item__body p:last-child {
    margin-bottom: 0;
}

.news-item__body a {
    color: var(--wine);
}

.news-item__center {
    text-align: center;
}

.support {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(0, 0, 0, .96), rgba(22, 22, 22, .94)),
        var(--black);
}

.support::after {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 44vw;
    height: 100%;
    background: linear-gradient(130deg, transparent 0 25%, rgba(242, 140, 0, .82) 25% 45%, rgba(242, 140, 0, .08) 45% 100%);
    transform: skewX(-12deg);
}

.support__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 70px;
}

.support h2 {
    color: var(--white);
    font-size: clamp(34px, 4vw, 50px);
}

.support__copy > p:last-child {
    max-width: 400px;
    margin: 24px 0 0;
    color: #bdbdbd;
    font-size: 14px;
}

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

.contact-card {
    min-height: 150px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    border: 1px solid #464646;
    background: rgba(25, 25, 25, .88);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.contact-card:hover {
    border-color: var(--orange);
    background: rgba(39, 39, 39, .96);
    transform: translateY(-2px);
}

.contact-card--form {
    grid-column: 1 / -1;
    min-height: 112px;
    color: var(--black);
    border-color: var(--orange-bright);
    background: var(--orange-bright);
}

.contact-card--form:hover {
    color: var(--black);
    border-color: #ffc258;
    background: #ffc258;
}

.contact-card span,
.contact-card strong,
.contact-card small {
    display: block;
}

.contact-card > span {
    color: #aaa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
}

.contact-card--form > span,
.contact-card--form small {
    color: #634318;
}

.contact-card strong {
    margin-top: 5px;
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-card small {
    margin-top: 7px;
    color: #8d8d8d;
    font-size: 10px;
}

.company {
    padding: 90px 0;
    background: var(--white);
}

.company__inner {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 80px;
}

.company h2 {
    font-size: clamp(32px, 3.7vw, 46px);
}

.company address {
    padding-left: 40px;
    border-left: 1px solid var(--line);
    font-style: normal;
}

.company address p {
    margin: 0 0 14px;
    color: #555;
    font-size: 14px;
}

.company address p:last-child {
    margin-bottom: 0;
}

.company address strong {
    color: var(--black);
    font-size: 19px;
}

.company address a {
    text-decoration: none;
}

.company address a:hover {
    color: var(--wine);
}

/* 下層ページ */
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(8, 8, 8, .97), rgba(18, 18, 18, .88)),
        url("/assets/hero-datacenter.webp") center 58% / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: -100px;
    right: 5%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 159, 10, .32);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 159, 10, .035), 0 0 0 140px rgba(255, 159, 10, .025);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 360px;
    padding-block: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 70px;
}

.page-hero--compact .page-hero__inner {
    min-height: 270px;
    grid-template-columns: 1fr;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(38px, 4.2vw, 52px);
    line-height: 1.35;
}

.page-hero__inner > p {
    margin: 0;
    color: #cecece;
    font-size: 14px;
    line-height: 2.1;
}

.breadcrumb {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.breadcrumb .container {
    min-height: 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
}

.breadcrumb a {
    color: var(--wine);
}

.page-section {
    background: var(--off-white);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border-top: 5px solid var(--orange);
    background: var(--line);
    box-shadow: var(--shadow);
}

.editorial-grid article {
    position: relative;
    min-height: 330px;
    padding: 45px;
    background: var(--white);
}

.editorial-grid article > span {
    position: absolute;
    top: 31px;
    right: 35px;
    color: #e6e2db;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.editorial-grid h3 {
    position: relative;
    margin: 0 0 22px;
    padding-top: 52px;
    color: var(--black);
    font-size: 25px;
}

.editorial-grid h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--orange-bright);
}

.editorial-grid p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.page-menu-section {
    background: var(--white);
}

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

.page-link-grid a {
    position: relative;
    min-height: 160px;
    padding: 30px 65px 30px 30px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-content: center;
    column-gap: 16px;
    color: var(--black);
    border: 1px solid var(--line);
    background: var(--white);
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.page-link-grid a:hover {
    color: var(--white);
    border-color: var(--black);
    background: var(--black);
    transform: translateY(-2px);
}

.page-link-grid a > span {
    grid-row: 1 / span 2;
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.page-link-grid strong,
.page-link-grid small {
    display: block;
}

.page-link-grid strong {
    font-size: 21px;
}

.page-link-grid small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.page-link-grid a:hover small {
    color: #bdbdbd;
}

.page-link-grid i,
.wide-link i {
    position: absolute;
    top: 50%;
    right: 28px;
    color: var(--orange);
    font-size: 22px;
    font-style: normal;
    transform: translateY(-50%);
}

.page-contact {
    padding: 74px 0;
    color: var(--white);
    border-bottom: 1px solid #333;
    background: var(--black);
}

.page-contact__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

.page-contact h2 {
    margin: 0;
    font-size: 33px;
}

.page-contact p:last-child {
    margin: 12px 0 0;
    color: #aaa;
    font-size: 13px;
}

.content-narrow {
    max-width: 980px;
}

.content-panel {
    margin-bottom: 32px;
    padding: 44px 48px 48px;
    border-top: 5px solid var(--orange);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.content-panel:last-child {
    margin-bottom: 0;
}

.content-panel h2 {
    margin: 0 0 30px;
    color: var(--black);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.5;
}

.content-panel h3 {
    margin: 38px 0 15px;
    padding-left: 16px;
    border-left: 5px solid var(--orange);
    color: var(--black);
    font-size: 21px;
}

.content-panel > p {
    color: #505050;
    font-size: 14px;
}

.data-table-wrap {
    overflow-x: auto;
}

.data-table-wrap--spaced {
    margin-top: 26px;
}

.data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table th,
.data-table td {
    padding: 15px 18px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.data-table th {
    width: 44%;
    color: var(--black);
    background: var(--orange-pale);
}

.data-table td {
    font-weight: 700;
}

.data-table--price td {
    color: var(--wine);
    font-size: 15px;
    text-align: right;
}

.data-table--matrix th,
.data-table--matrix td {
    width: auto;
    text-align: center;
}

.page-notes {
    margin: 20px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 11px;
    list-style: none;
}

.page-notes a {
    color: var(--wine);
}

.package-columns {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border: 1px solid var(--line);
    background: #faf9f7;
}

.package-columns ul {
    margin: 0;
    padding-left: 18px;
    color: #565656;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    line-height: 1.75;
}

.alert-note {
    margin: 20px 0 0 !important;
    padding: 16px 20px;
    color: var(--wine) !important;
    background: #fff0f3;
    font-size: 12px !important;
}

.wide-link {
    position: relative;
    min-height: 115px;
    padding: 26px 70px 26px 30px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    transition: background-color .2s ease;
}

.wide-link:hover {
    background: var(--wine);
}

.wide-link small,
.wide-link strong {
    display: block;
}

.wide-link small {
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.wide-link strong {
    margin-top: 4px;
    font-size: 18px;
}

.news-page {
    padding-top: 70px;
}

.archive-note {
    margin: 0 0 28px;
    padding: 16px 19px;
    color: #5e5549;
    border-left: 4px solid var(--orange);
    background: #fff7eb;
    font-size: 12px;
}

.archive-note a {
    color: var(--wine);
}

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

.support-page-grid a {
    position: relative;
    min-height: 205px;
    padding: 36px 65px 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.support-page-grid a:hover {
    background: var(--wine);
    transform: translateY(-2px);
}

.support-page-grid__form {
    grid-column: 1 / -1;
    color: var(--black) !important;
    background: var(--orange-bright) !important;
}

.support-page-grid a > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.support-page-grid__form > span {
    color: #68491f !important;
}

.support-page-grid small {
    margin-top: 14px;
    color: #a5a5a5;
    font-size: 11px;
}

.support-page-grid__form small {
    color: #68491f;
}

.support-page-grid strong {
    margin-top: 3px;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.support-page-grid i {
    position: absolute;
    top: 50%;
    right: 30px;
    color: var(--orange);
    font-size: 22px;
    font-style: normal;
    transform: translateY(-50%);
}

.support-page-grid__form i {
    color: var(--black);
}

.company-page {
    background: var(--white);
}

.company-card {
    border-top: 5px solid var(--orange);
    box-shadow: var(--shadow);
}

.company-card > div {
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.company-card > div:last-child {
    border-bottom: 0;
}

.company-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.company-card strong,
.company-card address {
    color: var(--black);
    font-size: 15px;
    font-style: normal;
}

.company-card a {
    text-decoration: none;
}

.site-footer {
    padding: 50px 0 22px;
    color: #b7b7b7;
    border-top: 5px solid var(--orange);
    background: var(--black);
}

.footer-main {
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #363636;
}

.brand--footer {
    color: var(--white);
}

.brand--footer img {
    width: 145px;
}

.brand--footer span {
    color: #9f9f9f;
    border-left-color: #555;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 30px;
}

.footer-main nav a {
    font-size: 11px;
    text-decoration: none;
}

.footer-main nav a:hover {
    color: var(--orange-bright);
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--orange-bright);
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .desktop-nav a {
        padding-inline: 9px;
    }

    .desktop-nav a::after {
        right: 9px;
        left: 9px;
    }

    .header-main {
        gap: 18px;
    }

    .brand span {
        display: none;
    }

    .hero__facts {
        right: 24px;
    }

    .section-heading--split {
        gap: 45px;
    }

    .plan-card__intro {
        padding: 40px 34px;
    }

    .plan-card__specs {
        padding-inline: 25px;
    }

    .spec {
        padding-inline: 18px;
    }
}

@media (max-width: 880px) {
    html {
        scroll-padding-top: 75px;
    }

    .company-bar,
    .desktop-nav,
    .header-member {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .header-main {
        height: 72px;
        justify-content: space-between;
    }

    .brand img {
        width: 132px;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu summary {
        width: 44px;
        height: 44px;
        display: grid;
        align-content: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        border: 1px solid #d8d8d8;
        list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu summary span {
        width: 20px;
        height: 2px;
        display: block;
        background: var(--black);
    }

    .mobile-menu nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        padding: 16px 24px 24px;
        display: grid;
        border-top: 1px solid var(--line);
        border-bottom: 4px solid var(--orange);
        background: var(--white);
        box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    }

    .mobile-menu nav a {
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-menu nav a:last-child {
        margin-top: 10px;
        color: var(--white);
        border: 0;
        background: var(--black);
        text-align: center;
    }

    .hero {
        min-height: 665px;
    }

    .hero__content {
        padding-top: 100px;
    }

    .hero__facts {
        right: 24px;
        left: 24px;
    }

    .hero__facts div {
        min-width: 0;
        padding: 17px 20px;
    }

    .transfer-notice__inner {
        padding-block: 16px;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .transfer-notice p {
        min-width: calc(100% - 120px);
    }

    .transfer-notice a {
        margin-left: auto;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading--split,
    .section-heading--news,
    .support__inner,
    .company__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .plan-card__intro {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 40px;
        align-items: end;
    }

    .plan-card__caption,
    .plan-card__intro h3,
    .plan-card__intro > p:not(.plan-card__caption) {
        grid-column: 1;
    }

    .plan-card__price {
        grid-column: 2;
        grid-row: 1 / span 3;
        margin: 0;
        padding: 0 0 0 35px;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 1px solid #3e3e3e;
    }

    .plan-card__intro .button {
        grid-column: 1 / -1;
        margin-top: 27px;
    }

    .feature-card {
        padding-inline: 36px;
    }

    .price-layout {
        grid-template-columns: 1fr;
    }

    .price-side {
        grid-template-columns: repeat(2, 1fr);
    }

    .company address {
        padding-top: 28px;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .footer-main {
        align-items: flex-start;
    }

    .footer-main nav {
        max-width: 420px;
    }

    .page-hero__inner {
        min-height: 320px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-hero--compact .page-hero__inner {
        min-height: 245px;
    }

    .page-hero__inner > p {
        max-width: 650px;
    }

    .page-contact__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-main {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero {
        min-height: 680px;
    }

    .hero__image {
        object-position: 64% center;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .63));
    }

    .hero__content {
        padding-top: 84px;
        padding-bottom: 205px;
    }

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

    .hero__lead {
        font-size: 15px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__facts {
        right: 16px;
        left: 16px;
        grid-template-columns: 1fr;
    }

    .hero__facts div {
        min-height: 51px;
        padding: 8px 15px;
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        border-top: 1px solid #dadada;
        border-left: 4px solid transparent;
    }

    .hero__facts div:first-child {
        border-top: 0;
        border-left: 4px solid var(--orange);
    }

    .hero__facts strong {
        font-size: 20px;
    }

    .hero__facts span {
        margin: 0;
    }

    .transfer-notice__inner {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .transfer-notice p,
    .transfer-notice a {
        grid-column: 1 / -1;
    }

    .transfer-notice a {
        margin: 4px 0 0;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .support h2,
    .company h2 {
        font-size: 34px;
    }

    .section-heading--split > p,
    .section-heading > p:last-child {
        font-size: 14px;
    }

    .plan-card__intro {
        padding: 32px 24px;
        display: block;
    }

    .plan-card__intro h3 {
        font-size: 27px;
    }

    .plan-card__price {
        margin: 26px 0;
        padding: 22px 0;
        border-top: 1px solid #3e3e3e;
        border-bottom: 1px solid #3e3e3e;
        border-left: 0;
    }

    .plan-card__intro .button {
        margin-top: 0;
    }

    .plan-card__specs {
        padding: 8px 22px;
        grid-template-columns: 1fr;
    }

    .spec {
        min-height: 0;
        padding: 24px 4px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .spec:last-child {
        border-bottom: 0 !important;
    }

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

    .feature-card {
        min-height: 0;
        padding: 34px 27px;
    }

    .feature-card__number {
        top: 24px;
        right: 24px;
        font-size: 35px;
    }

    .spec-details th {
        width: 125px;
    }

    .spec-details th,
    .spec-details td {
        padding: 11px 12px;
    }

    .price-main__heading,
    .price-list,
    .price-side article {
        padding-right: 22px;
        padding-left: 22px;
    }

    .price-list > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .price-list dd {
        text-align: left;
    }

    .price-side {
        grid-template-columns: 1fr;
    }

    .news-item summary {
        padding: 20px 44px 20px 4px;
        grid-template-columns: 94px 66px;
        gap: 10px;
    }

    .news-item summary strong {
        grid-column: 1 / -1;
        font-size: 13px;
    }

    .news-item__toggle {
        right: 8px;
    }

    .news-item__body {
        margin-right: 0;
        margin-left: 0;
        padding: 25px 20px;
        font-size: 13px;
    }

    .support {
        padding: 72px 0;
    }

    .support::after {
        right: -190px;
        width: 100vw;
    }

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

    .contact-card--form {
        grid-column: auto;
    }

    .company {
        padding: 70px 0;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main nav {
        justify-content: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .page-hero__inner,
    .page-hero--compact .page-hero__inner {
        min-height: 260px;
        padding-block: 58px;
    }

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

    .editorial-grid,
    .page-link-grid,
    .support-page-grid {
        grid-template-columns: 1fr;
    }

    .editorial-grid article {
        min-height: 0;
        padding: 32px 26px;
    }

    .editorial-grid h3 {
        font-size: 21px;
    }

    .page-link-grid a {
        min-height: 135px;
        padding-left: 23px;
    }

    .content-panel {
        padding: 30px 21px 34px;
    }

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

    .support-page-grid__form {
        grid-column: auto;
    }

    .support-page-grid a {
        min-height: 175px;
        padding-left: 28px;
    }

    .company-card > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .data-table:not(.data-table--matrix) {
        min-width: 0;
        table-layout: fixed;
    }

    .data-table:not(.data-table--matrix) th,
    .data-table:not(.data-table--matrix) td {
        padding: 12px 10px;
        overflow-wrap: anywhere;
    }

    .data-table:not(.data-table--matrix) th {
        width: 58%;
    }

    .data-table--price td {
        font-size: 11px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}

@media print {
    .site-header,
    .hero__actions,
    .transfer-notice,
    .support,
    .site-footer {
        display: none;
    }

    .hero {
        min-height: 0;
        color: var(--black);
        background: var(--white);
    }

    .hero__image,
    .hero__shade,
    .hero__facts {
        display: none;
    }

    .hero__content {
        padding: 20px 0;
    }

    .hero__lead {
        color: var(--ink);
    }

    .section,
    .company {
        padding: 25px 0;
    }

    .news-item[open] .news-item__body {
        display: block;
    }
}

/* 2026-09 白・オレンジ基調リニューアル */
@media screen {
    .site-header {
        border-bottom: 3px solid var(--black);
        background: linear-gradient(115deg, #ed7500 0%, #f99b0b 48%, #ffc83d 78%, #ffe07b 100%);
        box-shadow: 0 5px 22px rgba(105, 55, 0, .16);
    }

    .company-bar {
        color: #4d2900;
        border-bottom: 1px solid rgba(80, 40, 0, .18);
        background: rgba(255, 255, 255, .12);
    }

    .company-bar a,
    .company-bar strong,
    .brand,
    .desktop-nav a {
        color: var(--black);
    }

    .company-bar strong {
        font-weight: 800;
    }

    .brand img {
        mix-blend-mode: multiply;
    }

    .brand span {
        color: #4d2d08;
        border-left-color: rgba(17, 17, 17, .38);
    }

    .desktop-nav a::after {
        background: var(--black);
    }

    .header-member {
        border: 1px solid var(--black);
        box-shadow: 0 5px 14px rgba(65, 31, 0, .14);
    }

    .hero {
        min-height: 590px;
        color: var(--black);
        background: linear-gradient(120deg, var(--white), #fff6e6 72%, #ffd890);
    }

    .hero__image {
        right: 0;
        left: auto;
        width: 59%;
        opacity: .7;
        object-position: center 55%;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 252, 245, .97) 46%, rgba(255, 246, 228, .77) 68%, rgba(242, 140, 0, .18) 100%),
            linear-gradient(0deg, rgba(242, 140, 0, .17), transparent 42%);
    }

    .hero__content {
        padding-top: 91px;
        padding-bottom: 142px;
    }

    .hero__eyebrow {
        color: #b84d00;
    }

    .hero h1 {
        max-width: 760px;
        font-size: clamp(42px, 5.35vw, 68px);
        text-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    }

    .hero h1 > span {
        display: block;
    }

    .hero__title-product {
        font-size: .72em;
        white-space: nowrap;
    }

    .hero__title-product > span {
        display: inline;
    }

    .hero__title-coming {
        margin-top: .15em;
        font-size: .82em;
    }

    .hero__title-expectation {
        margin-top: .2em;
        color: #c75600;
        font-size: .58em;
    }

    .hero__lead {
        max-width: 690px;
        color: #4d4339;
        text-shadow: 0 1px 0 var(--white);
    }

    .hero .button--outline {
        color: var(--black);
        border-color: #d97800;
        background: rgba(255, 255, 255, .86);
    }

    .hero .button--outline:hover {
        border-color: var(--black);
        background: #fff3df;
    }

    .hero__facts {
        border-top: 4px solid var(--orange);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -7px 30px rgba(111, 57, 0, .12);
    }

    .transfer-notice {
        color: var(--white);
        background: linear-gradient(90deg, #c95b00, #ed7900 65%, #f69a13);
    }

    .transfer-notice .label--important {
        color: #9c3c00;
    }

    .service-menu-home,
    .page-menu-section {
        background: var(--white);
    }

    .service-menu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .service-menu-grid a {
        position: relative;
        min-height: 154px;
        padding: 29px 55px 27px 27px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: var(--black);
        border: 1px solid #f2bd73;
        border-top: 5px solid var(--orange);
        background: linear-gradient(145deg, var(--white), #fff8ec);
        box-shadow: 0 8px 24px rgba(124, 67, 0, .07);
        text-decoration: none;
        transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .service-menu-grid a:hover {
        border-color: #d96b00;
        background: #fff1d9;
        box-shadow: 0 12px 28px rgba(124, 67, 0, .12);
        transform: translateY(-3px);
    }

    .service-menu-grid a > span {
        margin-bottom: 9px;
        color: #c85a00;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em;
    }

    .service-menu-grid strong {
        font-size: 20px;
        line-height: 1.45;
    }

    .service-menu-grid small {
        margin-top: 5px;
        color: var(--muted);
        font-size: 11px;
        line-height: 1.6;
    }

    .service-menu-grid i {
        position: absolute;
        top: 50%;
        right: 24px;
        color: #c85a00;
        font-size: 21px;
        font-style: normal;
        transform: translateY(-50%);
    }

    .section--service {
        background:
            linear-gradient(135deg, rgba(242, 140, 0, .08) 0 16%, transparent 16% 100%),
            #fff9ef;
    }

    .plan-card__intro {
        color: var(--black);
        background: linear-gradient(145deg, #ef7900, #ffa71a 64%, #ffc957);
    }

    .plan-card__caption,
    .plan-card__price strong,
    .plan-card__price small,
    .plan-card__intro > p:not(.plan-card__caption) {
        color: var(--black);
    }

    .plan-card__price {
        border-color: rgba(17, 17, 17, .32);
    }

    .plan-card__price p {
        color: #563100;
    }

    .plan-card__intro .button {
        color: var(--white);
        background: var(--black);
    }

    .plan-card__intro .button:hover {
        background: #3b2a18;
    }

    .section--dark {
        color: var(--ink);
        background: #fff7e9;
    }

    .section-heading--light h2,
    .feature-card h3 {
        color: var(--black);
    }

    .section-heading--light > p:last-child,
    .feature-card p {
        color: #615648;
    }

    .feature-grid {
        gap: 14px;
        background: transparent;
    }

    .feature-card {
        border: 1px solid #eed7b6;
        border-top: 4px solid var(--orange);
        background: var(--white);
        box-shadow: 0 10px 28px rgba(110, 63, 0, .06);
    }

    .feature-card__number {
        color: #ead8bd;
    }

    .feature-card li {
        color: #4b4035;
        border-color: #efbd77;
        background: #fff7e9;
    }

    .spec-details {
        color: var(--ink);
        border-color: #edc58c;
        background: var(--white);
    }

    .spec-details th,
    .spec-details td {
        border-color: #ead5b8;
    }

    .spec-details th {
        color: #8e3d00;
        background: var(--orange-pale);
    }

    .spec-details td,
    .source-notes {
        color: #51483e;
    }

    .section--news {
        background: #fffaf3;
    }

    .news-list {
        border-top-color: var(--orange);
    }

    .faq-home,
    .faq-page {
        background: #fff6e8;
    }

    .faq-category-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .faq-category-grid a {
        min-height: 92px;
        padding: 20px 23px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: var(--black);
        border: 1px solid #efc281;
        border-left: 5px solid var(--orange);
        background: var(--white);
        text-decoration: none;
        transition: background-color .2s ease, transform .2s ease;
    }

    .faq-category-grid a:hover {
        background: #ffebcc;
        transform: translateY(-2px);
    }

    .faq-category-grid a span {
        color: #c55500;
        font-size: 20px;
    }

    .faq-home__all {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #a84400;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
    }

    .faq-category-grid--page {
        margin-bottom: 72px;
    }

    .faq-group {
        scroll-margin-top: 120px;
        margin-bottom: 76px;
    }

    .faq-group:last-child {
        margin-bottom: 0;
    }

    .faq-group .section-heading {
        margin-bottom: 25px;
    }

    .faq-group .section-heading h2 {
        font-size: clamp(27px, 3.2vw, 39px);
    }

    .faq-item {
        position: relative;
        margin-bottom: 10px;
        border: 1px solid #edd4b0;
        border-left: 5px solid var(--orange);
        background: var(--white);
        box-shadow: 0 6px 18px rgba(106, 61, 0, .04);
    }

    .faq-item summary {
        position: relative;
        padding: 21px 58px 21px 24px;
        cursor: pointer;
        color: var(--black);
        font-size: 15px;
        font-weight: 800;
        line-height: 1.65;
        list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::before {
        content: "Q";
        margin-right: 12px;
        color: #c95500;
        font-family: Arial, sans-serif;
        font-size: 17px;
    }

    .faq-item summary::after {
        content: "+";
        position: absolute;
        top: 50%;
        right: 24px;
        color: #bd4d00;
        font-size: 25px;
        font-weight: 400;
        transform: translateY(-50%);
    }

    .faq-item[open] summary::after {
        content: "−";
    }

    .faq-item[open] summary {
        background: #fff5e5;
    }

    .faq-answer {
        padding: 25px 28px 28px;
        border-top: 1px solid #efd8b8;
        color: #4d463f;
        font-size: 14px;
    }

    .faq-answer p {
        margin: 0 0 1.35em;
    }

    .faq-answer p:last-child {
        margin-bottom: 0;
    }

    .faq-answer a {
        color: #a74200;
        font-weight: 700;
    }

    .faq-code {
        max-width: 100%;
        margin: 20px 0;
        padding: 20px;
        overflow-x: auto;
        border: 1px solid #e5c89e;
        background: #fffaf3;
        font-size: 11px;
        line-height: 1.7;
        white-space: pre-wrap;
    }

    .faq-note {
        text-align: right;
    }

    .support {
        color: var(--black);
        background: linear-gradient(115deg, #ee7700, #ffa415 62%, #ffd364);
    }

    .support::after {
        background: linear-gradient(130deg, transparent 0 25%, rgba(255, 255, 255, .33) 25% 45%, rgba(255, 255, 255, .07) 45% 100%);
    }

    .support h2,
    .support__copy > p:last-child {
        color: var(--black);
    }

    .support .eyebrow {
        color: #7f3200;
    }

    .contact-card,
    .contact-card--form {
        color: var(--black);
        border-color: rgba(85, 39, 0, .32);
        background: rgba(255, 255, 255, .94);
    }

    .contact-card:hover,
    .contact-card--form:hover {
        color: var(--black);
        border-color: var(--black);
        background: var(--white);
    }

    .contact-card > span,
    .contact-card small,
    .contact-card--form > span,
    .contact-card--form small {
        color: #754314;
    }

    .page-hero {
        color: var(--black);
        background: linear-gradient(115deg, #e96f00 0%, #f89408 48%, #ffb52b 74%, #ffd769 100%);
    }

    .page-hero::after {
        border-color: rgba(255, 255, 255, .34);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, .055), 0 0 0 140px rgba(255, 255, 255, .035);
    }

    .page-hero .eyebrow,
    .page-hero__inner > p {
        color: #472300;
    }

    .page-section {
        background: #fffaf3;
    }

    .page-link-grid a:hover {
        color: var(--black);
        border-color: var(--orange);
        background: #ffedcf;
    }

    .page-link-grid a:hover small {
        color: #5f5142;
    }

    .page-contact {
        color: var(--black);
        border-bottom-color: #d56a00;
        background: linear-gradient(100deg, #ef7800, #ffa514 70%, #ffc74c);
    }

    .page-contact p:last-child {
        color: #573100;
    }

    .wide-link {
        color: var(--black);
        border: 1px solid #dd7900;
        background: linear-gradient(100deg, #ff9c0c, #ffc04a);
    }

    .wide-link:hover {
        background: #ffcc68;
    }

    .wide-link small {
        color: #803400;
    }

    .support-page-grid a,
    .support-page-grid__form {
        color: var(--black) !important;
        border: 1px solid #e9b367;
        border-top: 5px solid var(--orange);
        background: linear-gradient(145deg, var(--white), #fff6e8) !important;
    }

    .support-page-grid a:hover {
        color: var(--black);
        background: #ffebca !important;
    }

    .support-page-grid a > span,
    .support-page-grid__form > span,
    .support-page-grid small,
    .support-page-grid__form small {
        color: #734111 !important;
    }

    .infrastructure-visuals {
        background: var(--white);
    }

    .infrastructure-gallery {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 275px;
        gap: 14px;
    }

    .infrastructure-gallery figure {
        position: relative;
        grid-column: span 5;
        margin: 0;
        overflow: hidden;
        border: 1px solid #eccb9d;
        background: #fff7eb;
    }

    .infrastructure-gallery__wide {
        grid-column: span 7 !important;
        grid-row: span 2;
    }

    .infrastructure-gallery figure:last-child {
        grid-column: 1 / -1;
        height: 330px;
    }

    .infrastructure-gallery img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .infrastructure-gallery figure:hover img {
        transform: scale(1.025);
    }

    .infrastructure-gallery figcaption {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 21px 24px;
        color: var(--black);
        background: linear-gradient(0deg, rgba(255, 255, 255, .98), rgba(255, 249, 238, .9) 74%, transparent);
    }

    .infrastructure-gallery figcaption strong,
    .infrastructure-gallery figcaption span {
        display: block;
    }

    .infrastructure-gallery figcaption strong {
        font-size: 18px;
    }

    .infrastructure-gallery figcaption span {
        margin-top: 3px;
        color: #68533b;
        font-size: 11px;
    }

    .option-service-section {
        background: #fff6e7;
    }

    .option-service-lead {
        margin-bottom: 26px;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        overflow: hidden;
        border: 1px solid #eac18a;
        background: var(--white);
        box-shadow: 0 14px 36px rgba(113, 62, 0, .08);
    }

    .option-service-lead > img {
        width: 100%;
        height: 100%;
        min-height: 440px;
        display: block;
        object-fit: cover;
    }

    .option-service-lead > div {
        padding: 55px 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .option-service-lead h2,
    .options-promo h2 {
        margin: 0;
        color: var(--black);
        font-size: clamp(31px, 3.6vw, 45px);
        line-height: 1.45;
    }

    .option-service-lead > div > p:not(.eyebrow) {
        margin: 22px 0 28px;
        color: #605244;
        font-size: 14px;
    }

    .option-service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .option-service-grid article {
        padding: 28px;
        border: 1px solid #e8c18b;
        border-top: 5px solid var(--orange);
        background: var(--white);
        box-shadow: 0 8px 22px rgba(113, 62, 0, .05);
    }

    .option-service-grid article > span {
        color: #b94a00;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .16em;
    }

    .option-service-grid h3 {
        margin: 7px 0 19px;
        color: var(--black);
        font-size: 19px;
        line-height: 1.5;
    }

    .option-service-grid dl {
        margin: 0;
    }

    .option-service-grid dl > div {
        padding: 12px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        border-top: 1px dotted #d7b88d;
        font-size: 11px;
    }

    .option-service-grid dt {
        color: #5b5148;
    }

    .option-service-grid dd {
        margin: 0;
        color: #9c3c00;
        font-weight: 800;
        text-align: right;
        white-space: nowrap;
    }

    .option-service-grid article > p {
        margin: 8px 0 0;
        color: #665746;
        font-size: 11px;
    }

    .option-service-grid__ssl {
        grid-column: span 2;
    }

    .option-service-grid__ssl dl {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 26px;
    }

    .options-promo {
        background: var(--white);
    }

    .options-promo__inner {
        display: grid;
        grid-template-columns: 1.08fr .92fr;
        overflow: hidden;
        border: 1px solid #e6be87;
        background: #fff7e9;
        box-shadow: var(--shadow);
    }

    .options-promo__inner > img {
        width: 100%;
        height: 100%;
        min-height: 480px;
        display: block;
        object-fit: cover;
    }

    .options-promo__inner > div {
        padding: 48px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .options-promo ul {
        width: 100%;
        margin: 24px 0 28px;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 20px;
        list-style: none;
    }

    .options-promo li {
        position: relative;
        padding: 7px 0 7px 18px;
        border-bottom: 1px dotted #d9b884;
        color: #524536;
        font-size: 12px;
    }

    .options-promo li::before {
        content: "";
        position: absolute;
        top: 17px;
        left: 2px;
        width: 7px;
        height: 7px;
        background: var(--orange);
    }

    .content-panel__image {
        width: 100%;
        height: 330px;
        margin-bottom: 30px;
        display: block;
        object-fit: cover;
        border: 1px solid #edd1a8;
    }

    .site-footer {
        color: #4f4438;
        border-top: 5px solid var(--orange);
        background: linear-gradient(115deg, #fff, #fff6e7 58%, #ffe5b6);
    }

    .footer-main {
        border-bottom-color: #dfc8a9;
    }

    .brand--footer,
    .footer-main nav a {
        color: var(--black);
    }

    .brand--footer span {
        color: #5c4c3c;
        border-left-color: #c9ab83;
    }

    .footer-main nav a:hover,
    .footer-bottom a {
        color: #b34800;
    }
}

@media screen and (max-width: 1120px) {
    .desktop-nav a {
        padding-inline: 7px;
        font-size: 12px;
    }

    .desktop-nav a::after {
        right: 7px;
        left: 7px;
    }

    .header-main {
        gap: 13px;
    }

    .service-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-service-lead,
    .options-promo__inner {
        grid-template-columns: 1fr;
    }

    .option-service-lead > img,
    .options-promo__inner > img {
        min-height: 0;
        height: 420px;
    }
}

@media screen and (max-width: 880px) {
    .mobile-menu summary {
        border-color: rgba(17, 17, 17, .5);
        background: rgba(255, 255, 255, .42);
    }

    .mobile-menu nav {
        border-top-color: #dd7900;
        background: var(--white);
    }

    .hero__image {
        width: 72%;
        opacity: .38;
    }

    .hero__shade {
        background: linear-gradient(90deg, #fff 0%, rgba(255, 252, 245, .96) 55%, rgba(255, 231, 188, .66));
    }

    .infrastructure-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 290px;
    }

    .infrastructure-gallery figure,
    .infrastructure-gallery__wide,
    .infrastructure-gallery figure:last-child {
        grid-column: auto !important;
        grid-row: auto;
        height: auto;
    }

    .option-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .hero {
        min-height: 700px;
    }

    .hero__image {
        width: 100%;
        opacity: .2;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 247, 233, .88));
    }

    .hero h1 {
        font-size: clamp(37px, 11.6vw, 50px);
    }

    .hero__title-product {
        white-space: normal;
    }

    .hero__title-product > span {
        display: block;
    }

    .service-menu-grid,
    .faq-category-grid,
    .infrastructure-gallery,
    .option-service-grid {
        grid-template-columns: 1fr;
    }

    .service-menu-grid a {
        min-height: 132px;
    }

    .faq-category-grid--page {
        margin-bottom: 55px;
    }

    .faq-group {
        margin-bottom: 58px;
    }

    .faq-item summary {
        padding: 18px 48px 18px 17px;
        font-size: 14px;
    }

    .faq-item summary::before {
        margin-right: 7px;
    }

    .faq-item summary::after {
        right: 17px;
    }

    .faq-answer {
        padding: 22px 18px 24px;
        font-size: 13px;
    }

    .infrastructure-gallery {
        grid-auto-rows: 280px;
    }

    .option-service-lead > img,
    .options-promo__inner > img {
        height: 300px;
    }

    .option-service-lead > div,
    .options-promo__inner > div {
        padding: 34px 24px;
    }

    .option-service-grid__ssl {
        grid-column: auto;
    }

    .option-service-grid__ssl dl,
    .options-promo ul {
        grid-template-columns: 1fr;
    }

    .option-service-grid dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .option-service-grid dd {
        text-align: left;
        white-space: normal;
    }

    .content-panel__image {
        height: 230px;
    }
}
